Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 91 for Fermat (0.14 sec)

  1. guava/src/com/google/common/util/concurrent/AbstractFuture.java

      static final boolean GENERATE_CANCELLATION_CAUSES;
    
      static {
        // System.getProperty may throw if the security policy does not permit access.
        boolean generateCancellationCauses;
        try {
          generateCancellationCauses =
              Boolean.parseBoolean(
                  System.getProperty("guava.concurrent.generate_cancellation_cause", "false"));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  2. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

    }
    
    // ParamKind is a tuple of Group Kind and Version.
    // +structType=atomic
    message ParamKind {
      // APIVersion is the API group version the resources belong to.
      // In format of "group/version".
      // Required.
      optional string apiVersion = 1;
    
      // Kind is the API kind the resources belong to.
      // Required.
      optional string kind = 2;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  3. pkg/proxy/iptables/proxier.go

    	serviceHealthServer healthcheck.ServiceHealthServer
    	healthzServer       *healthcheck.ProxierHealthServer
    
    	// Since converting probabilities (floats) to strings is expensive
    	// and we are using only probabilities in the format of 1/n, we are
    	// precomputing some number of those and cache for future reuse.
    	precomputedProbabilities []string
    
    	// The following buffers are used to reuse memory and avoid allocations
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  4. pkg/kubelet/pod_workers_test.go

    	f.statusLock.Lock()
    	defer f.statusLock.Unlock()
    	return f.terminatingStaticPods[podFullname]
    }
    
    type TestingInterface interface {
    	Errorf(format string, args ...interface{})
    }
    
    func newPodWithPhase(uid, name string, phase v1.PodPhase) *v1.Pod {
    	pod := newNamedPod(uid, "ns", name, false)
    	pod.Status.Phase = phase
    	return pod
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  5. pkg/scheduler/internal/queue/scheduling_queue.go

    	cond sync.Cond
    
    	// inFlightPods holds the UID of all pods which have been popped out for which Done
    	// hasn't been called yet - in other words, all pods that are currently being
    	// processed (being scheduled, in permit, or in the binding cycle).
    	//
    	// The values in the map are the entry of each pod in the inFlightEvents list.
    	// The value of that entry is the *v1.Pod at the time that scheduling of that
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  6. src/crypto/x509/x509.go

    		if _, err := asn1.Unmarshal(derBytes, &pkcs1PublicKey{}); err == nil {
    			return nil, errors.New("x509: failed to parse public key (use ParsePKCS1PublicKey instead for this key format)")
    		}
    		return nil, err
    	} else if len(rest) != 0 {
    		return nil, errors.New("x509: trailing data after ASN.1 of public-key")
    	}
    	return parsePublicKey(&pki)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  7. src/runtime/map.go

    // isEmpty reports whether the given tophash array entry represents an empty bucket entry.
    func isEmpty(x uint8) bool {
    	return x <= emptyOne
    }
    
    // A header for a Go map.
    type hmap struct {
    	// Note: the format of the hmap is also encoded in cmd/compile/internal/reflectdata/reflect.go.
    	// Make sure this stays in sync with the compiler's definition.
    	count     int // # live cells == size of map.  Must be first (used by len() builtin)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/admissionregistration/v1/types.go

    }
    
    // ParamKind is a tuple of Group Kind and Version.
    // +structType=atomic
    type ParamKind struct {
    	// APIVersion is the API group version the resources belong to.
    	// In format of "group/version".
    	// Required.
    	APIVersion string `json:"apiVersion,omitempty" protobuf:"bytes,1,rep,name=apiVersion"`
    
    	// Kind is the API kind the resources belong to.
    	// Required.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  9. src/crypto/tls/handshake_client_test.go

    	// *ecdsa.PrivateKey which is the private key for the reference server.
    	key any
    	// extensions, if not nil, contains a list of extension data to be returned
    	// from the ServerHello. The data should be in standard TLS format with
    	// a 2-byte uint16 type, 2-byte data length, followed by the extension data.
    	extensions [][]byte
    	// validate, if not nil, is a function that will be called with the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/rewrite.go

    }
    
    func rotateRight64(v, rotate int64) int64 {
    	return int64(bits.RotateLeft64(uint64(v), int(-rotate)))
    }
    
    // encodes the lsb and width for arm(64) bitfield ops into the expected auxInt format.
    func armBFAuxInt(lsb, width int64) arm64BitField {
    	if lsb < 0 || lsb > 63 {
    		panic("ARM(64) bit field lsb constant out of range")
    	}
    	if width < 1 || lsb+width > 64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
Back to top