Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 31 for unitTable (0.2 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. staging/src/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: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 29.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/admissionregistration/v1alpha1/types.go

    	// 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 Oct 05 20:06:13 UTC 2023
    - 33.8K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/build.go

    	cmd.Flag.BoolVar(&cfg.BuildTrimpath, "trimpath", false, "")
    	cmd.Flag.BoolVar(&cfg.BuildWork, "work", false, "")
    	cmd.Flag.Var((*buildvcsFlag)(&cfg.BuildBuildvcs), "buildvcs", "")
    
    	// Undocumented, unstable debugging flags.
    	cmd.Flag.StringVar(&cfg.DebugActiongraph, "debug-actiongraph", "", "")
    	cmd.Flag.StringVar(&cfg.DebugTrace, "debug-trace", "", "")
    	cmd.Flag.StringVar(&cfg.DebugRuntimeTrace, "debug-runtime-trace", "", "")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 17:22:59 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/admissionregistration/v1beta1/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 Feb 29 20:14:19 UTC 2024
    - 46.9K bytes
    - Viewed (0)
Back to top