Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 75 for unitTable (0.35 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ResolutionStrategy.java

         * @return this resolution strategy
         * @since 6.1
         */
        ResolutionStrategy failOnChangingVersions();
    
        /**
         * Configures Gradle to fail the build is the resolution result is expected to be unstable, that is to say that
         * it includes dynamic versions or changing versions and therefore the result may change depending
         * on when the build is executed.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 17 13:05:50 UTC 2022
    - 16K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/apis/kubeadm/v1beta4/types.go

    	// KubernetesVersion is the target version of the control plane.
    	// +optional
    	KubernetesVersion string `json:"kubernetesVersion,omitempty"`
    
    	// AllowExperimentalUpgrades instructs kubeadm to show unstable versions of Kubernetes as an upgrade
    	// alternative and allows upgrading to an alpha/beta/release candidate version of Kubernetes.
    	// Default: false
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/xla_cluster_util.cc

      // determinism. Sorting control inputs could help (but not necessarily) create
      // a deterministic serialization and fingerprint. Other sources of
      // nondeterminism include unstable node ordering.
      SortControlInputs(&def);
    
      std::string s;
      if (!SerializeToStringDeterministic(def, &s)) {
        return errors::Internal("Failed to serialize graphdef.");
      }
      return s;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 08:39:39 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/controller.go

    					tpsList = append(tpsList, targetPort)
    				}
    			}
    
    			// Iterate over target ports in the same order as defined in service spec, in case of
    			// protocol conflict for a port causes unstable protocol selection for a port.
    			for _, tp := range tpsList {
    				svcPort := tps[tp]
    				out = append(out, model.ServiceTarget{
    					Service: modelService,
    					Port: model.ServiceInstancePort{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  5. src/sort/sort_test.go

    			data.initB()
    			b.StartTimer()
    			algo(data)
    			b.StopTimer()
    			if !IsSorted(data) {
    				b.Errorf("%s did not sort %d ints", name, n)
    			}
    			if name == "Stable" && !data.inOrder() {
    				b.Errorf("%s unstable on %d ints", name, n)
    			}
    		}
    	}
    }
    
    func BenchmarkSort1e2(b *testing.B)   { bench(b, 1e2, Sort, "Sort") }
    func BenchmarkStable1e2(b *testing.B) { bench(b, 1e2, Stable, "Stable") }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 19:41:04 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/DependencyGraphBuilder.java

            if (!selectors.isEmpty()) {
                if (selectors.stream().allMatch(DependencyGraphBuilder::isDynamic)) {
                    // when all selectors are dynamic, result is undoubtedly unstable
                    markDeniedDynamicVersions(selected);
                } else if (selectors.stream().anyMatch(DependencyGraphBuilder::isDynamic)) {
                    checkIfDynamicVersionAllowed(selected, selectors);
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/admissionregistration/v1alpha1/generated.proto

      // MatchConstraints specifies what resources this policy is designed to validate.
      // The AdmissionPolicy cares about a request if it matches _all_ Constraints.
      // However, in order to prevent clusters from being put into an unstable state that cannot be recovered from via the API
      // ValidatingAdmissionPolicy cannot match ValidatingAdmissionPolicy and ValidatingAdmissionPolicyBinding.
      // Required.
      optional MatchResources matchConstraints = 2;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/admissionregistration/v1alpha1/types_swagger_doc_generated.go

    	"matchConstraints": "MatchConstraints specifies what resources this policy is designed to validate. The AdmissionPolicy cares about a request if it matches _all_ Constraints. However, in order to prevent clusters from being put into an unstable state that cannot be recovered from via the API ValidatingAdmissionPolicy cannot match ValidatingAdmissionPolicy and ValidatingAdmissionPolicyBinding. Required.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 20 16:30:10 UTC 2023
    - 27K bytes
    - Viewed (0)
  9. tensorflow/cc/gradients/math_grad_test.cc

    TEST_F(NaryGradTest, Atan2Grad) {
      TensorShape shape({3, 2, 5});
      auto x1 = Placeholder(scope_, DT_FLOAT, Placeholder::Shape(shape));
      // Test with x2 = 1 + |x1| to avoid regions where the gradient
      // is unstable and might cause problems for the numeric estimator.
      auto x2 =
          Div(scope_, x1, Add(scope_, Const<float>(scope_, 1), Abs(scope_, x1)));
      auto y = Atan2(scope_, x1, x2);
      RunTest({x1}, {shape}, {y}, {shape});
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 36K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/MapMakerInternalMap.java

         * fraction of read operations.
         */
        final AtomicInteger readCount = new AtomicInteger();
    
        Segment(MapMakerInternalMap<K, V, E, S> map, int initialCapacity) {
          this.map = map;
          initTable(newEntryArray(initialCapacity));
        }
    
        /**
         * Returns {@code this} up-casted to the specific {@link Segment} implementation type {@code S}.
         *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
Back to top