Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 71 for getg (0.07 sec)

  1. guava/src/com/google/common/collect/CompactHashSet.java

        int hashTableBits = Integer.SIZE - Integer.numberOfLeadingZeros(mask);
        metadata =
            CompactHashing.maskCombine(metadata, hashTableBits, CompactHashing.HASH_TABLE_BITS_MASK);
      }
    
      /** Gets the hash table mask using the stored number of hash table bits. */
      private int hashTableMask() {
        return (1 << (metadata & CompactHashing.HASH_TABLE_BITS_MASK)) - 1;
      }
    
      void incrementModCount() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  2. src/encoding/gob/encode.go

    // To send an interface, we send a string identifying the concrete type, followed
    // by the type identifier (which might require defining that type right now), followed
    // by the concrete value. A nil value gets sent as the empty string for the name,
    // followed by no value.
    func (enc *Encoder) encodeInterface(b *encBuffer, iv reflect.Value) {
    	// Gobs can encode nil interface values but not typed interface
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 19K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/internal/changedetection/rules/OverlappingOutputsIntegrationTest.groovy

            localStateDirTaskOutput.assertExists()
            // Task was loaded from cache, so local state was removed
            localStateDirTaskState.assertDoesNotExist()
            // FIXME This gets removed because of the local state has been removed
            fileTaskOutput.assertDoesNotExist()
            result.assertTasksSkipped(fileTask, localStateDirTask)
        }
    
        private void cleanBuildDir() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 20:54:14 UTC 2024
    - 30K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AbstractIntegrationSpec.groovy

        }
    
        def disableProblemsApiCheck() {
            enableProblemsApiCheck = false
        }
    
        def isProblemsApiCheckEnabled() {
            enableProblemsApiCheck
        }
    
        /**
         * Gets all problems collected by the Problems API.
         *
         * @return The list of collected problems
         * @throws IllegalStateException if the Problems API check is not enabled
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  5. src/crypto/tls/handshake_client_tls13.go

    // resends hs.hello, and reads the new ServerHello into hs.serverHello.
    func (hs *clientHandshakeStateTLS13) processHelloRetryRequest() error {
    	c := hs.c
    
    	// The first ClientHello gets double-hashed into the transcript upon a
    	// HelloRetryRequest. (The idea is that the server might offload transcript
    	// storage to the client in the cookie.) See RFC 8446, Section 4.4.1.
    	chHash := hs.transcript.Sum(nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  6. src/net/textproto/reader.go

    	}
    	return nil
    }
    
    var nl = []byte("\n")
    
    // upcomingHeaderKeys returns an approximation of the number of keys
    // that will be in this header. If it gets confused, it returns 0.
    func (r *Reader) upcomingHeaderKeys() (n int) {
    	// Try to determine the 'hint' size.
    	r.R.Peek(1) // force a buffer load if empty
    	s := r.R.Buffered()
    	if s == 0 {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/deploymentcontroller.go

    	reader kclient.Reader[T]
    }
    type getter interface {
    	Get(name, namespace string) controllers.Object
    }
    
    func NewUntypedWrapper[T controllers.ComparableObject](c kclient.Client[T]) getter {
    	return UntypedWrapper[T]{c}
    }
    
    func (u UntypedWrapper[T]) Get(name, namespace string) controllers.Object {
    	// DO NOT return u.reader.Get directly, or we run into issues with https://go.dev/tour/methods/12
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  8. src/crypto/tls/handshake_server_tls13.go

    	hs.sentDummyCCS = true
    
    	return hs.c.writeChangeCipherRecord()
    }
    
    func (hs *serverHandshakeStateTLS13) doHelloRetryRequest(selectedGroup CurveID) (*keyShare, error) {
    	c := hs.c
    
    	// The first ClientHello gets double-hashed into the transcript upon a
    	// HelloRetryRequest. See RFC 8446, Section 4.4.1.
    	if err := transcriptMsg(hs.clientHello, hs.transcript); err != nil {
    		return nil, err
    	}
    	chHash := hs.transcript.Sum(nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache.go

    	upperBoundCapacity int
    
    	// lower bound of capacity since event cache has a dynamic size.
    	lowerBoundCapacity int
    
    	// keyFunc is used to get a key in the underlying storage for a given object.
    	keyFunc func(runtime.Object) (string, error)
    
    	// getAttrsFunc is used to get labels and fields of an object.
    	getAttrsFunc func(runtime.Object) (labels.Set, fields.Set, error)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 10:20:57 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  10. src/math/big/float.go

    	if debugFloat {
    		validateBinaryOperands(x, y)
    	}
    
    	// mantissa length in words for desired result precision + 1
    	// (at least one extra bit so we get the rounding bit after
    	// the division)
    	n := int(z.prec/_W) + 1
    
    	// compute adjusted x.mant such that we get enough result precision
    	xadj := x.mant
    	if d := n - len(x.mant) + len(y.mant); d > 0 {
    		// d extra words needed => add d "0 digits" to x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 44.5K bytes
    - Viewed (0)
Back to top