Examples of release()


Examples of com.eviware.soapui.impl.wsdl.teststeps.WsdlTestStep.release()

    newStepConfig.set( stepConfig );
    WsdlTestStep testStep = createTestStepFromConfig( newStepConfig );

    if( !ensureUniqueName( testStep ) )
    {
      testStep.release();
      getConfig().getTestStepList().remove( newStepConfig );
      return null;
    }

    if( clearIds )
View Full Code Here

Examples of com.eviware.soapui.model.project.Project.release()

      {
        fireProjectRemoved( project );
      }
      finally
      {
        project.release();
      }
    }

    try
    {
View Full Code Here

Examples of com.eviware.soapui.security.ui.SecurityConfigurationDialog.release()

        if( !dialog.configure() )
        {
          securityScan.copyConfig( backupScanConfig );
        }

        dialog.release();
      }
    }
    else
    {
      if( securityTestTree.isExpanded( TreePathUtils.getPath( node ) ) )
View Full Code Here

Examples of com.eviware.x.form.XFormDialog.release()

      if( StringUtils.hasContent( result ) )
        testStepResult.setResult( result );

      testStepResult.setUrls( ( ( XFormOptionsField )dialog.getFormField( Form.URLS ) ).getOptions() );

      dialog.release();
    }

    testStepResult.stopTimer();
    return testStepResult;
  }
View Full Code Here

Examples of com.extjs.gxt.ui.client.fx.Draggable.release()

   * @param column the column
   */
  public void remove(Portlet portlet, int column) {
    Draggable d = portlet.getData("gxt.draggable");
    if (d != null) {
      d.release();
    }
    portlet.setData("gxt.draggable", null);

    getItem(column).remove(portlet);
  }
View Full Code Here

Examples of com.extjs.gxt.ui.client.widget.SplitBar.release()

    component.setData("collapseBtn", null);
    component.setData("collapse", null);

    SplitBar splitBar = component.getData("splitBar");
    if (splitBar != null) {
      splitBar.release();
      component.setData("splitBar", null);
    }
  }

  private void applyLayout(BoxComponent component, Rectangle box) {
View Full Code Here

Examples of com.facebook.presto.hive.shaded.org.codehaus.jackson.util.ByteArrayBuilder.release()

        throws IOException, JsonGenerationException, JsonMappingException
    {       
        ByteArrayBuilder bb = new ByteArrayBuilder(_jsonFactory._getBufferRecycler());
        _configAndWriteValue(_jsonFactory.createJsonGenerator(bb, JsonEncoding.UTF8), value);
        byte[] result = bb.toByteArray();
        bb.release();
        return result;
    }

    /*
    /**********************************************************
 
View Full Code Here

Examples of com.facebook.presto.jdbc.internal.jackson.core.util.ByteArrayBuilder.release()

            throw e;
        } catch (IOException e) { // shouldn't really happen, but is declared as possibility so:
            throw JsonMappingException.fromUnexpectedIOE(e);
        }
        byte[] result = bb.toByteArray();
        bb.release();
        return result;
    }

    /*
    /**********************************************************
 
View Full Code Here

Examples of com.facebook.presto.jdbc.internal.jetty.io.ByteBufferPool.release()

            LOG.debug(x);
            failAndClose(x);
        }
        finally
        {
            bufferPool.release(buffer);
        }
    }

    private void parse(ByteBuffer buffer)
    {
View Full Code Here

Examples of com.facebook.presto.jdbc.internal.netty.channel.socket.nio.SocketSendBufferPool.SendBuffer.release()

                        }
                    }

                    if (buf.finished()) {
                        // Successful write - proceed to the next message.
                        buf.release();
                        channel.currentWriteEvent = null;
                        channel.currentWriteBuffer = null;
                        // Mark the event object for garbage collection.
                        //noinspection UnusedAssignment
                        evt = null;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.