Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,715 for forced (0.25 sec)

  1. src/crypto/x509/root.go

    // certificate bundle). SetFallbackRoots will panic if roots is nil.
    //
    // SetFallbackRoots may only be called once, if called multiple times it will
    // panic.
    //
    // The fallback behavior can be forced on all platforms, even when there is a
    // system certificate pool, by setting GODEBUG=x509usefallbackroots=1 (note that
    // on Windows and macOS this will disable usage of the platform verification
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/upgrade/policy.go

    	skewErrors := &VersionSkewPolicyErrors{
    		Mandatory: []error{},
    		Skippable: []error{},
    	}
    
    	clusterVersionStr, clusterVersion, err := versionGetter.ClusterVersion()
    	if err != nil {
    		// This case can't be forced: kubeadm has to be able to lookup cluster version for upgrades to work
    		skewErrors.Mandatory = append(skewErrors.Mandatory, errors.Wrap(err, "Unable to fetch cluster version"))
    		return skewErrors
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/artifact/repository/RepositoryRequest.java

         * @return {@code true} if remote repositories should be re-checked for updated artifacts/metadata, {@code false}
         *         otherwise.
         */
        boolean isForceUpdate();
    
        /**
         * Enables/disabled forced checks for updated artifacts/metadata on remote repositories.
         *
         * @param forceUpdate {@code true} to forcibly check the remote repositories for updated artifacts/metadata, {@code
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/utils/string_utils.h

      // buffer containing the concatenation of all added strings to be.
      // For historical reasons this is limited to 32bit length. At this files
      // inception, sizes were represented using 32bit which forced an implicit cap
      // on the size of the buffer. When this was refactored to use size_t (which
      // could be 64bit) we enforce that the buffer remains at most 32bit length to
      // avoid a change in behavior.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dependencies/AbstractExternalModuleDependency.java

        public String getVersion() {
            return Strings.emptyToNull(versionConstraint.getVersion());
        }
    
        @Override
        public boolean isForce() {
            return false; // Enforced Platforms no longer mark force, so there is no way for a dependency to be forced (configurations and resolution strategies are used instead)
        }
    
        @Override
        public boolean isChanging() {
            return changing;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/ResolutionResultGraphBuilderSpec.groovy

      x:b:1 [a]
        x:c:1 [b]
          x:a:1 [c]
    """
        }
    
        def "includes selection reason"() {
            given:
            node("a")
            node("b", ComponentSelectionReasons.of(ComponentSelectionReasons.FORCED))
            node("c", ComponentSelectionReasons.of(ComponentSelectionReasons.CONFLICT_RESOLUTION))
            node("d")
            resolvedConf("a", [dep("a", "b"), dep("a", "c"), dep("a", "d", new RuntimeException("Boo!"))])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  7. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/insight/DependencyInsightReporter.java

                case REQUESTED:
                    return "Was requested";
                case SELECTED_BY_RULE:
                    return "Selected by rule";
                case FORCED:
                    return "Forced";
                case CONFLICT_RESOLUTION:
                    return "By conflict resolution";
                case COMPOSITE_BUILD:
                    return "By composite build";
                case REJECTION:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  8. plugin/pkg/admission/certificates/ctbattest/admission_test.go

    				obj: &certificatesapi.ClusterTrustBundle{
    					Spec: certificatesapi.ClusterTrustBundleSpec{
    						SignerName: "abc.com/xyz",
    					},
    				},
    				operation: admission.Update,
    			},
    			authzErr: errors.New("forced error"),
    			allowed:  false,
    		},
    		{
    			description:                      "should allow create if no signer name is specified",
    			clusterTrustBundleFeatureEnabled: true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  9. guava/src/com/google/common/io/PatternFilenameFilter.java

       * return type is plain FilenameFilter. If we made such a change, then the annotation we choose
       * here would have no significance to end users, who would be forced to conform to the signature
       * used in FilenameFilter.)
       */
      @Override
      public boolean accept(File dir, String fileName) {
        return pattern.matcher(fileName).matches();
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/stablehlo/utils/fill_quantization_options.cc

          break;
        // Note: This is weight-only quantization by default, but with the legacy
        // flag "--force_dynamic_range_in_kernel", a DRQ behavior will be forced
        // in the kernel.
        case PresetQuantizationMethod::WEIGHT_ONLY:
          weight_component = custom_method.add_quantization_component_spec();
          SetQuantizationComponentSpec(weight_component,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 08:32:43 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top