Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 50 for withReason (0.16 sec)

  1. staging/src/k8s.io/client-go/applyconfigurations/certificates/v1beta1/certificatesigningrequestcondition.go

    	b.Status = &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 *CertificateSigningRequestConditionApplyConfiguration) WithReason(value string) *CertificateSigningRequestConditionApplyConfiguration {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/client-go/applyconfigurations/apps/v1beta1/deploymentcondition.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 *DeploymentConditionApplyConfiguration) WithReason(value string) *DeploymentConditionApplyConfiguration {
    	b.Reason = &value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 4.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/client-go/applyconfigurations/core/v1/podcondition.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 *PodConditionApplyConfiguration) WithReason(value string) *PodConditionApplyConfiguration {
    	b.Reason = &value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/client-go/applyconfigurations/core/v1/persistentvolumeclaimcondition.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 *PersistentVolumeClaimConditionApplyConfiguration) WithReason(value string) *PersistentVolumeClaimConditionApplyConfiguration {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/client-go/applyconfigurations/apps/v1beta2/deploymentcondition.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 *DeploymentConditionApplyConfiguration) WithReason(value string) *DeploymentConditionApplyConfiguration {
    	b.Reason = &value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 4.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/client-go/applyconfigurations/core/v1/containerstateterminated.go

    	b.Signal = &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 *ContainerStateTerminatedApplyConfiguration) WithReason(value string) *ContainerStateTerminatedApplyConfiguration {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top