Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for withReason (0.27 sec)

  1. 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)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/verification/verifier/DependencyVerifierBuilder.java

                builder.addChecksum(value);
                if (origin != null) {
                    builder.withOrigin(origin);
                }
                if (reason != null) {
                    builder.withReason(reason);
                }
            }
    
            List<Checksum> buildChecksums() {
                return builder.values()
                    .stream()
                    .map(ChecksumBuilder::build)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/client-go/applyconfigurations/core/v1/event.go

    	b.InvolvedObject = 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 *EventApplyConfiguration) WithReason(value string) *EventApplyConfiguration {
    	b.Reason = &value
    	return b
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 23 17:59:55 UTC 2022
    - 17.8K bytes
    - Viewed (0)
  4. pkg/controller/servicecidrs/servicecidrs_controller.go

    			svcApplyStatus := networkingapiv1alpha1apply.ServiceCIDRStatus().WithConditions(
    				metav1apply.Condition().
    					WithType(networkingapiv1alpha1.ServiceCIDRConditionReady).
    					WithStatus(metav1.ConditionFalse).
    					WithReason(networkingapiv1alpha1.ServiceCIDRReasonTerminating).
    					WithMessage("There are still IPAddresses referencing the ServiceCIDR, please remove them or create a new ServiceCIDR").
    					WithLastTransitionTime(metav1.Now()))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 18K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_controller.go

    	condition := flowcontrolapplyconfiguration.FlowSchemaCondition().
    		WithType(fsUpdate.condition.Type).
    		WithStatus(fsUpdate.condition.Status).
    		WithReason(fsUpdate.condition.Reason).
    		WithLastTransitionTime(fsUpdate.condition.LastTransitionTime).
    		WithMessage(fsUpdate.condition.Message)
    
    	return flowcontrolapplyconfiguration.FlowSchema(fsUpdate.flowSchema.Name).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 48.8K bytes
    - Viewed (0)
Back to top