Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 59 of 59 for comp (0.08 sec)

  1. hack/lib/etcd.sh

          url="https://github.com/etcd-io/etcd/releases/download/v${ETCD_VERSION}/${download_file}"
          kube::util::download_file "${url}" "${download_file}"
          unzip -o "${download_file}"
          ln -fns "etcd-v${ETCD_VERSION}-${os}-${arch}" etcd
          rm "${download_file}"
        elif [[ ${os} == "linux" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  2. src/crypto/ecdsa/ecdsa_legacy.go

    		return false
    	}
    	r, s := new(big.Int).SetBytes(rBytes), new(big.Int).SetBytes(sBytes)
    
    	c := pub.Curve
    	N := c.Params().N
    
    	if r.Sign() <= 0 || s.Sign() <= 0 {
    		return false
    	}
    	if r.Cmp(N) >= 0 || s.Cmp(N) >= 0 {
    		return false
    	}
    
    	// SEC 1, Version 2.0, Section 4.1.4
    	e := hashToInt(hash, c)
    	w := new(big.Int).ModInverse(s, N)
    
    	u1 := e.Mul(e, w)
    	u1.Mod(u1, N)
    	u2 := w.Mul(r, w)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. src/net/http/routing_tree_test.go

    			"",
    		},
    		{
    			"host",
    			hostTree, "", "/foo/bar",
    			"POST",
    		},
    		{
    			"host2",
    			hostTree, "a.com", "/foo/bar",
    			"GET,HEAD,POST",
    		},
    		{
    			"host3",
    			hostTree, "b.com", "/bar",
    			"PUT",
    		},
    		{
    			// This case shouldn't come up because we only call matchingMethods
    			// when there was no match, but we include it for completeness.
    			"empty",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:43:24 UTC 2024
    - 7K bytes
    - Viewed (0)
  4. common/Makefile.common.mk

    # WARNING: DO NOT EDIT, THIS FILE IS PROBABLY A COPY
    #
    # The original version of this file is located in the https://github.com/istio/common-files repo.
    # If you're looking at this file in a different repo and want to make a change, please go to the
    # common-files repo, make the change there and check it in. Then come back to this repo and run
    # "make update-common".
    
    # Copyright Istio Authors
    #
    # Licensed under the Apache License, Version 2.0 (the "License");
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 14:37:27 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/request/list_work_estimator.go

    	default:
    		estimatedObjectsToBeProcessed = 2 * limit
    	}
    
    	// for now, our rough estimate is to allocate one seat to each 100 obejcts that
    	// will be processed by the list request.
    	// we will come up with a different formula for the transformation function and/or
    	// fine tune this number in future iteratons.
    	seats := uint64(math.Ceil(float64(estimatedObjectsToBeProcessed) / e.config.ObjectsPerSeat))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 7K bytes
    - Viewed (0)
  6. src/internal/dag/parse.go

    // license that can be found in the LICENSE file.
    
    // Package dag implements a language for expressing directed acyclic
    // graphs.
    //
    // The general syntax of a rule is:
    //
    //	a, b < c, d;
    //
    // which means c and d come after a and b in the partial order
    // (that is, there are edges from c and d to a and b),
    // but doesn't provide a relative order between a vs b or c vs d.
    //
    // The rules can chain together, as in:
    //
    //	e < f, g < h;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  7. src/net/interface.go

    // An ipv6ZoneCache represents a cache holding partial network
    // interface information. It is used for reducing the cost of IPv6
    // addressing scope zone resolution.
    //
    // Multiple names sharing the index are managed by first-come
    // first-served basis for consistency.
    type ipv6ZoneCache struct {
    	sync.RWMutex                // guard the following
    	lastFetched  time.Time      // last time routing information was fetched
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/remove_unused_arguments.cc

    struct RemoveUnusedArgumentsPass
        : public impl::RemoveUnusedArgumentsPassBase<RemoveUnusedArgumentsPass> {
      void runOnOperation() override;
    };
    
    // Return a bitvector that marks all return values that always come from
    // the same value.
    llvm::BitVector GetInvariantReturns(Region* region, int number_of_results) {
      llvm::BitVector invariant(number_of_results, true);
      std::vector<Value> used_argument(number_of_results, nullptr);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  9. pkg/controller/bootstrap/bootstrapsigner.go

    	secretNamespace    string
    
    	// syncQueue handles synchronizing updates to the ConfigMap.  We'll only ever
    	// have one item (Named <ConfigMapName>) in this queue. We are using it
    	// serializes and collapses updates as they can come from both the ConfigMap
    	// and Secrets controllers.
    	syncQueue workqueue.TypedRateLimitingInterface[string]
    
    	secretLister corelisters.SecretLister
    	secretSynced cache.InformerSynced
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top