Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,000 for pending_ (1.69 sec)

  1. src/net/rpc/jsonrpc/server.go

    	// We assign uint64 sequence numbers to incoming requests
    	// but save the original request ID in the pending map.
    	// When rpc responds, we use the sequence number in
    	// the response to find the original request ID.
    	mutex   sync.Mutex // protects seq, pending
    	seq     uint64
    	pending map[uint64]*json.RawMessage
    }
    
    // NewServerCodec returns a new [rpc.ServerCodec] using JSON-RPC on conn.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/ContinuousBuildGateIntegrationTest.groovy

            outputFile.text == "start"
    
            when:
            // Gradle has detected the changes to inputFile
            def pending = server.expectAndBlock("pending")
            // Make some file system changes to inputFile
            inputFile.text = "changed"
            pending.waitForAllPendingCalls()
            pending.releaseAll()
            and:
            // command the gate keeper to open the gate and shutdown
            command.releaseAll()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  3. src/net/http/roundtrip_js.go

    		})
    		defer failure.Release()
    		r.arrayPromise.Call("then", success, failure)
    		select {
    		case b := <-bCh:
    			r.pending = b
    		case err := <-errCh:
    			return 0, err
    		}
    	}
    	if len(r.pending) == 0 {
    		return 0, io.EOF
    	}
    	n = copy(p, r.pending)
    	r.pending = r.pending[n:]
    	return n, nil
    }
    
    func (r *arrayReader) Close() error {
    	if r.err == nil {
    		r.err = errClosed
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  4. cmd/bucket-replication-utils.go

    }
    
    // VersionPurgeStatusType represents status of a versioned delete or permanent delete w.r.t bucket replication
    type VersionPurgeStatusType string
    
    const (
    	// Pending - versioned delete replication is pending.
    	Pending VersionPurgeStatusType = "PENDING"
    
    	// Complete - versioned delete replication is now complete, erase version on disk.
    	Complete VersionPurgeStatusType = "COMPLETE"
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  5. cmd/bucket-replication_test.go

    			// 1: Pending replication
    			name: "existing object replication on object in Pending replication status",
    			info: ObjectInfo{
    				Size:                      100,
    				ReplicationStatusInternal: "arn1:PENDING;",
    				ReplicationStatus:         replication.Pending,
    				VersionID:                 "a3348c34-c352-4498-82f0-1098e8b34df9",
    			},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Sep 16 09:28:06 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  6. src/runtime/rwmutex.go

    	rLock      mutex    // protects readers, readerPass, writer
    	readers    muintptr // list of pending readers
    	readerPass uint32   // number of pending readers to skip readers list
    
    	wLock  mutex    // serializes writers
    	writer muintptr // pending writer waiting for completing readers
    
    	readerCount atomic.Int32 // number of pending readers
    	readerWait  atomic.Int32 // number of departing readers
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:29:04 UTC 2024
    - 5K bytes
    - Viewed (0)
  7. src/net/rpc/client.go

    		return
    	}
    	seq := client.seq
    	client.seq++
    	client.pending[seq] = call
    	client.mutex.Unlock()
    
    	// Encode and send the request.
    	client.request.Seq = seq
    	client.request.ServiceMethod = call.ServiceMethod
    	err := client.codec.WriteRequest(&client.request, call.Args)
    	if err != nil {
    		client.mutex.Lock()
    		call = client.pending[seq]
    		delete(client.pending, seq)
    		client.mutex.Unlock()
    		if call != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 9K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/classloader/TransformErrorHandlerTest.groovy

            new ClassNotFoundException("class not found") || ClassNotFoundException | null
            new IOException("I/O")                        || RuntimeException       | exception
        }
    
        def "rethrows the pending throwable if the scope exits normally"() {
            given:
            TransformErrorHandler handler = handler()
            def className = "some/Class"
    
            when:
            handler.enterClassLoadingScope(className)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/Console.java

        // TODO(ew): Consider whether this belongs in BuildProgressArea or here
        StyledLabel getStatusBar();
    
        /**
         * Flushes any pending updates. Updates may or may not be buffered, and this method should be called to finish rendering and pending updates, such as updating the status bar.
         */
        void flush();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. internal/grid/muxclient.go

    		return false
    	}
    }
    
    func (m *muxClient) close() {
    	if debugPrint {
    		fmt.Println("closing outgoing mux", m.MuxID)
    	}
    	if !m.respMu.TryLock() {
    		// Cancel before locking - will unblock any pending sends.
    		if m.cancelFn != nil {
    			m.cancelFn(context.Canceled)
    		}
    		// Wait for senders to release.
    		m.respMu.Lock()
    	}
    
    	defer m.respMu.Unlock()
    	m.closeLocked()
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 15.9K bytes
    - Viewed (0)
Back to top