Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 240 for prepending (0.26 sec)

  1. src/vendor/golang.org/x/net/http/httpproxy/proxy.go

    	if proxy == "" {
    		return nil, nil
    	}
    
    	proxyURL, err := url.Parse(proxy)
    	if err != nil || proxyURL.Scheme == "" || proxyURL.Host == "" {
    		// proxy was bogus. Try prepending "http://" to it and
    		// see if that parses correctly. If not, we fall
    		// through and complain about the original one.
    		if proxyURL, err := url.Parse("http://" + proxy); err == nil {
    			return proxyURL, nil
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. pkg/controller/job/indexed_job_utils_test.go

    				{"5", v1.PodPending},
    				{"0", v1.PodRunning},
    				{"3", v1.PodPending},
    				{"0", v1.PodRunning},
    				{"3", v1.PodRunning},
    				{"0", v1.PodPending},
    				{"6", v1.PodRunning},
    				{"6", v1.PodPending},
    			},
    			wantRm: []indexPhase{
    				{"0", v1.PodPending},
    				{"0", v1.PodRunning},
    				{"3", v1.PodPending},
    				{"6", v1.PodRunning},
    				{"6", v1.PodPending},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize.cc

          if (!preceding_op) continue;
    
          // Check whether the preceding op is a quantized composite function.
          if (llvm::isa<TF::PartitionedCallOp>(preceding_op)) {
            auto call_op = llvm::cast<TF::PartitionedCallOp>(preceding_op);
            if (!IsCompositeFunction(call_op)) continue;
            return true;
          }
    
          // Check if the preceding op is a quantized same-scale op.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 05:52:39 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  4. cmd/erasure-metadata-utils.go

    	}
    	return max, maxErr
    }
    
    // reduceQuorumErrs behaves like reduceErrs by only for returning
    // values of maximally occurring errors validated against a generic
    // quorum number that can be read or write quorum depending on usage.
    func reduceQuorumErrs(ctx context.Context, errs []error, ignoredErrs []error, quorum int, quorumErr error) error {
    	if contextCanceled(ctx) {
    		return context.Canceled
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  5. pkg/controller/podgc/gc_controller_test.go

    				{name: "c3", phase: v1.PodPending, nodeName: "worker-2"},
    				{name: "d3", phase: v1.PodRunning, nodeName: "worker-2"},
    				{name: "e3", phase: v1.PodUnknown, nodeName: "worker-2"},
    
    				// pods a4, b4, c4, d4 and e4 are on node worker-3
    				{name: "a4", nodeName: "worker-3"},
    				{name: "b4", deletionTimeStamp: &metav1.Time{}, nodeName: "worker-3"},
    				{name: "c4", phase: v1.PodPending, nodeName: "worker-3"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 08:16:48 UTC 2024
    - 29K bytes
    - Viewed (0)
  6. pkg/controller/controller_utils_test.go

    					Spec:       v1.PodSpec{NodeName: ""},
    					Status:     v1.PodStatus{Phase: v1.PodPending},
    				},
    				{
    					ObjectMeta: metav1.ObjectMeta{Name: "scheduledButPending"},
    					Spec:       v1.PodSpec{NodeName: "bar"},
    					Status:     v1.PodStatus{Phase: v1.PodPending},
    				},
    				{
    					ObjectMeta: metav1.ObjectMeta{Name: "unknownPhase"},
    					Spec:       v1.PodSpec{NodeName: "foo"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/internal/passes/tpu_sharding_identification_pass.cc

      // Iterate through results of `cluster_func`. For output ops, look for
      // TPUPartitionedOutput ops.
      //
      // Iterate through operands of the terminator. If the preceding op is
      // XlaShardingOp, then the provided sharding configuration is added to the
      // tf_device.ClusterFunc as an attribute and the function as a result
      // attribute.
      for (auto result_and_retval :
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 02:01:13 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ProgressEvents.groovy

        }
    
        /**
         * Returns the operation with the given display name. Fails when there is not exactly one such operation.
         *
         * @param displayNames candidate display names (may be different depending on the Gradle version under test)
         */
        Operation operation(String... displayNames) {
            def candidates = operations(displayNames)
            if (candidates.empty) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 13:50:05 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/DefaultNamedDomainObjectCollection.java

                    return Cast.uncheckedCast(provider);
                }
                return null;
            }
    
            @Override
            public void putPending(String name, ProviderInternal<? extends T> provider) {
                delegate.putPending(name, provider);
            }
    
            @Override
            public void removePending(String name) {
                delegate.removePending(name);
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 16:54:51 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  10. pkg/registry/core/pod/storage/eviction_test.go

    			}},
    			eviction:      &policy.Eviction{ObjectMeta: metav1.ObjectMeta{Name: "t2", Namespace: "default"}, DeleteOptions: metav1.NewDeleteOptions(0)},
    			expectError:   "",
    			podPhase:      api.PodPending,
    			expectDeleted: true,
    			podName:       "t2",
    		},
    		{
    			name: "matching pdbs with no disruptions allowed, pod succeeded",
    			pdbs: []runtime.Object{&policyv1.PodDisruptionBudget{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 09:26:37 UTC 2024
    - 40K bytes
    - Viewed (0)
Back to top