Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,159 for forced (0.36 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  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. 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)
  7. 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)
  8. 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)
  9. cmd/kubeadm/app/phases/upgrade/policy_test.go

    			expectedMandatoryErrs: 1, // can't downgrade two minor versions
    		},
    		{
    			name: "kubeadm version must be higher than the new kube version. However, patch version skews may be forced",
    			vg: &fakeVersionGetter{
    				clusterVersion: minimumControlPlaneVersion.WithPatch(3).String(),
    				kubeletVersion: minimumKubeletVersion.WithPatch(3).String(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 12 03:17:05 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/LocalComponentDependencyMetadata.java

            boolean force, boolean changing, boolean transitive,
            boolean constraint, boolean endorsing, boolean fromLock,
            @Nullable String reason
        ) {
            this.selector = selector;
            this.dependencyConfiguration = dependencyConfiguration;
            this.artifactNames = asImmutable(artifactNames);
            this.excludes = excludes;
            this.force = force;
            this.changing = changing;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 7.7K bytes
    - Viewed (0)
Back to top