Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for doProcess (0.1 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/sftp/SFTPServer.groovy

            TestSftpSubsystem(ChannelSession channel, SftpSubsystemConfigurator configurator) {
                super(channel, configurator)
            }
    
            @Override
            protected void doProcess(Buffer buffer, int length, int type, int id) throws IOException {
                int originalBufferPosition = buffer.rpos()
    
                int pos = buffer.rpos()
                def command = commandMessage(buffer, type)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    	// at the same time high enough to start listing before we process
    	// the whole page.
    	chanSize := 2 * workersNumber
    	if chanSize < 256 {
    		chanSize = 256
    	}
    	toProcess := make(chan runtime.Object, chanSize)
    	errs := make(chan error, workersNumber+1)
    	workersExited := make(chan struct{})
    
    	wg.Add(workersNumber)
    	for i := 0; i < workersNumber; i++ {
    		go func() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
Back to top