Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 3,300 for setS (0.04 sec)

  1. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/GradlePluginDevelopmentExtension.java

         * will add to the existing collection of source sets.
         *
         * @param testSourceSet the test source set to add
         * @since 7.4
         */
        @Incubating
        public void testSourceSet(SourceSet testSourceSet) {
            this.testSourceSets.add(testSourceSet);
        }
    
        /**
         * Provides the source sets executing the functional tests with TestKit.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/reset_test.go

    			}
    		})
    	}
    }
    
    func expectedResetIgnorePreflightErrors(expected sets.Set[string]) func(t *testing.T, data *resetData) {
    	return func(t *testing.T, data *resetData) {
    		if !expected.Equal(data.ignorePreflightErrors) {
    			t.Errorf("Invalid ignore preflight errors. Expected: %v. Actual: %v", sets.List(expected), sets.List(data.ignorePreflightErrors))
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 13:42:50 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/client-go/applyconfigurations/core/v1/containerstateterminated.go

    // WithMessage sets the Message 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 Message field is set to the value of the last call.
    func (b *ContainerStateTerminatedApplyConfiguration) WithMessage(value string) *ContainerStateTerminatedApplyConfiguration {
    	b.Message = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/client-go/applyconfigurations/apps/v1/deploymentcondition.go

    	return &DeploymentConditionApplyConfiguration{}
    }
    
    // WithType sets the Type 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 Type field is set to the value of the last call.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 4.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/client-go/applyconfigurations/autoscaling/v2beta2/metricstatus.go

    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Resource field is set to the value of the last call.
    func (b *MetricStatusApplyConfiguration) WithResource(value *ResourceMetricStatusApplyConfiguration) *MetricStatusApplyConfiguration {
    	b.Resource = value
    	return b
    }
    
    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/batch/v1/jobcondition.go

    // 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 *JobConditionApplyConfiguration) WithReason(value string) *JobConditionApplyConfiguration {
    	b.Reason = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/client-go/applyconfigurations/core/v1/nodecondition.go

    }
    
    // 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 *NodeConditionApplyConfiguration) WithReason(value string) *NodeConditionApplyConfiguration {
    	b.Reason = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 4K bytes
    - Viewed (0)
  8. subprojects/diagnostics/src/main/java/org/gradle/api/reporting/components/internal/ComponentReportRenderer.java

        public void renderSourceSets(Collection<LanguageSourceSet> sourceSets) {
            Set<LanguageSourceSet> additionalSourceSets = collectAdditionalSourceSets(sourceSets);
            outputCollection(additionalSourceSets, "Additional source sets", sourceSetRenderer, "source sets");
        }
    
       public void renderBinaries(Collection<BinarySpec> binaries) {
            Set<BinarySpec> additionalBinaries = collectAdditionalBinaries(binaries);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 27 14:58:38 UTC 2020
    - 4.1K bytes
    - Viewed (0)
  9. internal/deadlineconn/deadlineconn.go

    type DeadlineConn struct {
    	net.Conn
    	readDeadline  time.Duration // sets the read deadline on a connection.
    	writeDeadline time.Duration // sets the write deadline on a connection.
    }
    
    // Sets read deadline
    func (c *DeadlineConn) setReadDeadline() {
    	if c.readDeadline > 0 {
    		c.Conn.SetReadDeadline(time.Now().UTC().Add(c.readDeadline))
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/client-go/applyconfigurations/apps/v1beta2/statefulsetstatus.go

    	return &StatefulSetStatusApplyConfiguration{}
    }
    
    // WithObservedGeneration sets the ObservedGeneration 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 ObservedGeneration field is set to the value of the last call.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 25 23:59:58 UTC 2021
    - 6.6K bytes
    - Viewed (0)
Back to top