Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 27 for withReason (0.21 sec)

  1. staging/src/k8s.io/client-go/applyconfigurations/core/v1/persistentvolumestatus.go

    	b.Message = &value
    	return b
    }
    
    // WithReason sets the Reason field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Reason field is set to the value of the last call.
    func (b *PersistentVolumeStatusApplyConfiguration) WithReason(value string) *PersistentVolumeStatusApplyConfiguration {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 19:39:24 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/client/applyconfiguration/apiextensions/v1/customresourcedefinitioncondition.go

    	b.LastTransitionTime = &value
    	return b
    }
    
    // WithReason sets the Reason field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Reason field is set to the value of the last call.
    func (b *CustomResourceDefinitionConditionApplyConfiguration) WithReason(value string) *CustomResourceDefinitionConditionApplyConfiguration {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 28 12:38:10 UTC 2023
    - 4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/client/applyconfiguration/apiextensions/v1beta1/validationrule.go

    	b.MessageExpression = &value
    	return b
    }
    
    // WithReason sets the Reason field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Reason field is set to the value of the last call.
    func (b *ValidationRuleApplyConfiguration) WithReason(value v1beta1.FieldValueErrorReason) *ValidationRuleApplyConfiguration {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 22:34:13 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ModuleDependencyMetadata.java

         * Returns a copy of this dependency with the given requested version.
         */
        ModuleDependencyMetadata withRequestedVersion(VersionConstraint requestedVersion);
    
        @Override
        ModuleDependencyMetadata withReason(String reason);
    
        ModuleDependencyMetadata withEndorseStrictVersions(boolean endorse);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/maven/MavenDependencyMetadata.java

        }
    
        @Override
        public List<ExcludeMetadata> getExcludes() {
            return getDependencyDescriptor().getConfigurationExcludes();
        }
    
        @Override
        public ModuleDependencyMetadata withReason(String reason) {
            return new MavenDependencyMetadata(dependencyDescriptor, reason, isEndorsingStrictVersions(), getArtifacts());
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/resolver/AbstractDependencyMetadataAdapter.java

            return Cast.uncheckedCast(this);
        }
    
        @Override
        public T because(String reason) {
            updateMetadata(getMetadata().withReason(reason));
            return Cast.uncheckedCast(this);
        }
    
        @Override
        public ModuleIdentifier getModule() {
            return getMetadata().getSelector().getModuleIdentifier();
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ivy/IvyDependencyMetadata.java

        @Override
        public List<ExcludeMetadata> getExcludes() {
            return getDependencyDescriptor().getConfigurationExcludes(configuration.getHierarchy());
        }
    
        @Override
        public ModuleDependencyMetadata withReason(String reason) {
            return new IvyDependencyMetadata(configuration, dependencyDescriptor, reason, isEndorsingStrictVersions(), getArtifacts());
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/client-go/applyconfigurations/core/v1/podstatus.go

    	b.Message = &value
    	return b
    }
    
    // WithReason sets the Reason field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Reason field is set to the value of the last call.
    func (b *PodStatusApplyConfiguration) WithReason(value string) *PodStatusApplyConfiguration {
    	b.Reason = &value
    	return b
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 01:43:16 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/DependencyMetadata.java

         */
        @Nullable
        String getReason();
    
        /**
         * Returns a copy of this dependency with the given selection reason.
         */
        DependencyMetadata withReason(String reason);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 25 11:43:09 UTC 2023
    - 4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/LenientPlatformDependencyMetadata.java

        }
    
        @Override
        public ModuleDependencyMetadata withRequestedVersion(VersionConstraint requestedVersion) {
            return this;
        }
    
        @Override
        public ModuleDependencyMetadata withReason(String reason) {
            return this;
        }
    
        @Override
        public ModuleDependencyMetadata withEndorseStrictVersions(boolean endorse) {
            return this;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 15:01:08 UTC 2023
    - 5.5K bytes
    - Viewed (0)
Back to top