Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 213 for chains (0.1 sec)

  1. cmd/kube-apiserver/app/server.go

    	kubeAPIServer, err := config.KubeAPIs.New(apiExtensionsServer.GenericAPIServer)
    	if err != nil {
    		return nil, err
    	}
    
    	// aggregator comes last in the chain
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 17:44:20 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. src/crypto/internal/nistec/p256.go

    	table[0].Set(q)
    	for i := 1; i < 15; i += 2 {
    		table[i].Double(table[i/2])
    		table[i+1].Add(table[i], q)
    	}
    
    	// Instead of doing the classic double-and-add chain, we do it with a
    	// four-bit window: we double four times, and then add [0-15]P.
    	t := NewP256Point()
    	p.Set(NewP256Point())
    	for i, byte := range scalar {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/Ordering.java

       * status and second by priority, you might use {@code byStatus.compound(byPriority)}. For a
       * compound ordering with three or more components, simply chain multiple calls to this method.
       *
       * <p>An ordering produced by this method, or a chain of calls to this method, is equivalent to
       * one created using {@link Ordering#compound(Iterable)} on the same component comparators.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/ProblemsProgressEventConsumer.java

                } else if (location instanceof FileLocation) { // generic class must be after the subclasses in the if-elseif chain.
                    FileLocation fileLocation = (FileLocation) location;
                    return new org.gradle.internal.build.event.types.DefaultFileLocation(fileLocation.getPath());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 12K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/CompactHashSet.java

       * part of the smeared hash of the element not covered by the hashtable mask, whereas the low bits
       * are the "next" pointer (pointing to the next entry in the bucket chain), which will always be
       * less than or equal to the hashtable mask.
       *
       * <pre>
       * hash  = aaaaaaaa
       * mask  = 00000fff
       * next  = 00000bbb
       * entry = aaaaabbb
       * </pre>
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 24K bytes
    - Viewed (0)
  6. pkg/proxy/metrics/metrics.go

    // DescribeWithStability implements the metrics.StableCollector interface.
    func (n *nfacctMetricCollector) DescribeWithStability(ch chan<- *metrics.Desc) {
    	ch <- n.description
    }
    
    // CollectWithStability implements the metrics.StableCollector interface.
    func (n *nfacctMetricCollector) CollectWithStability(ch chan<- metrics.Metric) {
    	if n.client != nil {
    		counter, err := n.client.Get(n.counter)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  7. src/crypto/internal/bigmod/nat.go

    	// Next we need to get from R to 2^(_W * n) R mod m (aka from one to R in
    	// the Montgomery domain, meaning we can use Montgomery multiplication now).
    	// We could do that by doubling _W * n times, or with a square-and-double
    	// chain log2(_W * n) long. Turns out the fastest thing is to start out with
    	// doublings, and switch to square-and-double once the exponent is large
    	// enough to justify the cost of the multiplications.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 24K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/CompactHashSet.java

       * part of the smeared hash of the element not covered by the hashtable mask, whereas the low bits
       * are the "next" pointer (pointing to the next entry in the bucket chain), which will always be
       * less than or equal to the hashtable mask.
       *
       * <pre>
       * hash  = aaaaaaaa
       * mask  = 00000fff
       * next  = 00000bbb
       * entry = aaaaabbb
       * </pre>
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  9. pkg/kubeapiserver/options/authorization.go

    	fs.StringVar(&o.AuthorizationConfigurationFile, authorizationConfigFlag, o.AuthorizationConfigurationFile, ""+
    		"File with Authorization Configuration to configure the authorizer chain."+
    		"Note: This feature is in Alpha since v1.29."+
    		"--feature-gate=StructuredAuthorizationConfiguration=true feature flag needs to be set to true for enabling the functionality."+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 14 23:09:15 UTC 2024
    - 12K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/admissionregistration/v1beta1/generated.proto

      // Acceptable values are: Unknown, None, Some, NoneOnDryRun
      // Webhooks with side effects MUST implement a reconciliation system, since a request may be
      // rejected by a future step in the admission chain and the side effects therefore need to be undone.
      // Requests with the dryRun attribute will be auto-rejected if they match a webhook with
      // sideEffects == Unknown or Some. Defaults to Unknown.
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 22.6K bytes
    - Viewed (0)
Back to top