Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 80 for unitTable (0.21 sec)

  1. maven-resolver-provider/src/test/java/org/apache/maven/repository/internal/VersionTest.java

         */
        @Test
        void testCompareUuidVersionStringStream() {
            // this operation below fails with IAEx if comparison is unstable
            uuidVersionStringStream().map(this::newVersion).sorted().collect(toList());
        }
    
        private Stream<String> uuidVersionStringStream() {
            return Stream.of(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/apis/kubeadm/types.go

    type UpgradeApplyConfiguration struct {
    	// KubernetesVersion is the target version of the control plane.
    	KubernetesVersion string
    
    	// 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
    	AllowExperimentalUpgrades *bool
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. docs/changelogs/changelog_2x.md

     *  **Fix: Lazily initialize the response cache.** This avoids strict mode
        warnings when initializing OkHttp on Android‘s main thread.
    
     *  **Fix: Disable ALPN on Android 4.4.** That release of the feature was
        unstable and prone to native crashes in the underlying OpenSSL code.
     *  Fix: Don't send both `If-None-Match` and `If-Modified-Since` cache headers
        when both are applicable.
     *  Fix: Fail early when a port is out of range.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 26.6K bytes
    - Viewed (0)
  10. 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)
Back to top