Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 50 for withReason (0.19 sec)

  1. staging/src/k8s.io/client-go/applyconfigurations/admissionregistration/v1beta1/validation.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 *ValidationApplyConfiguration) WithReason(value v1.StatusReason) *ValidationApplyConfiguration {
    	b.Reason = &value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 20:56:23 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/DelegatingDependencyMetadata.java

        }
    
        @Nullable
        @Override
        public String getReason() {
            return delegate.getReason();
        }
    
        @Override
        public DependencyMetadata withReason(String reason) {
            return delegate.withReason(reason);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ModuleDependencyMetadataWrapper.java

            return new ModuleDependencyMetadataWrapper(delegate.withTarget(newSelector));
        }
    
        @Override
        public ModuleDependencyMetadata withReason(String reason) {
            return new ModuleDependencyMetadataWrapper(delegate.withReason(reason));
        }
    
        @Override
        public ModuleDependencyMetadata withEndorseStrictVersions(boolean endorse) {
            if (delegate instanceof ModuleDependencyMetadata) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/ComponentSelectionReasonSerializerTest.groovy

        }
    
        def "multiple writes of the same custom reason"() {
            when:
            def single = toBytes(withReason("hello"), serializer)
            def withDuplicate = toBytes(withReasons("hello", "hello"), serializer)
            def withoutDuplicate = toBytes(withReasons("hello", "other"), serializer)
    
            then:
            single.length < withDuplicate.length
            withDuplicate.length < 2*single.length
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/client-go/applyconfigurations/core/v1/containerstatewaiting.go

    	return &ContainerStateWaitingApplyConfiguration{}
    }
    
    // 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 *ContainerStateWaitingApplyConfiguration) WithReason(value string) *ContainerStateWaitingApplyConfiguration {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/client/applyconfiguration/apiextensions/v1beta1/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)
  7. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ForcedDependencyMetadataWrapper.java

            return new ForcedDependencyMetadataWrapper(delegate.withRequestedVersion(requestedVersion));
        }
    
        @Override
        public ModuleDependencyMetadata withReason(String reason) {
            return new ForcedDependencyMetadataWrapper(delegate.withReason(reason));
        }
    
        @Override
        public ModuleDependencyMetadata withEndorseStrictVersions(boolean endorse) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/client/applyconfiguration/apiextensions/v1/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 v1.FieldValueErrorReason) *ValidationRuleApplyConfiguration {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 22:34:13 UTC 2023
    - 4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/client-go/applyconfigurations/apiserverinternal/v1alpha1/storageversioncondition.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 *StorageVersionConditionApplyConfiguration) WithReason(value string) *StorageVersionConditionApplyConfiguration {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 4.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/client-go/applyconfigurations/admissionregistration/v1/validation.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 *ValidationApplyConfiguration) WithReason(value v1.StatusReason) *ValidationApplyConfiguration {
    	b.Reason = &value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top