Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,900 for ADDS (0.03 sec)

  1. staging/src/k8s.io/client-go/applyconfigurations/admissionregistration/v1beta1/validatingadmissionpolicyspec.go

    func (b *ValidatingAdmissionPolicySpecApplyConfiguration) WithMatchConstraints(value *MatchResourcesApplyConfiguration) *ValidatingAdmissionPolicySpecApplyConfiguration {
    	b.MatchConstraints = value
    	return b
    }
    
    // WithValidations adds the given value to the Validations field in the declarative configuration
    // and returns the receiver, so that objects can be build by chaining "With" function invocations.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 20:56:23 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/client-go/applyconfigurations/core/v1/nodestatus.go

    func (b *NodeStatusApplyConfiguration) WithPhase(value v1.NodePhase) *NodeStatusApplyConfiguration {
    	b.Phase = &value
    	return b
    }
    
    // WithConditions adds the given value to the Conditions field in the declarative configuration
    // and returns the receiver, so that objects can be build by chaining "With" function invocations.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 13 23:06:39 UTC 2024
    - 8K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/api/FileContentMerger.java

            return beforeMerged;
        }
    
        public void setBeforeMerged(MutableActionSet beforeMerged) {
            this.beforeMerged = beforeMerged;
        }
    
    
        /**
         * Adds an action to be called after content is loaded from existing file but before gradle build information is merged.
         * <p>
         * This is advanced api that gives access to internal implementation.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/core-plugins/pmd_plugin.adoc

    ====
    
    The plugin adds a number of tasks to the project that perform the quality checks. You can execute the checks by running `gradle check`.
    
    Note that PMD will run with the same Java version used to run Gradle.
    
    [[sec:pmd_tasks]]
    == Tasks
    
    The PMD plugin adds the following tasks to the project:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/provider/HasMultipleValues.java

         *
         * @return this property.
         * @since 5.0
         */
        HasMultipleValues<T> empty();
    
        /**
         * Adds an element to the property value.
         *
         * @param element The element
         */
        void add(T element);
    
        /**
         * Adds an element to the property value.
         *
         * <p>The given provider will be queried when the value of this property is queried.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 18:32:13 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  6. pkg/kubelet/config/config.go

    	seenBefore := s.sourcesSeen.Has(source)
    	adds, updates, deletes, removes, reconciles := s.merge(source, change)
    	firstSet := !seenBefore && s.sourcesSeen.Has(source)
    
    	// deliver update notifications
    	switch s.mode {
    	case PodConfigNotificationIncremental:
    		if len(removes.Pods) > 0 {
    			s.updates <- *removes
    		}
    		if len(adds.Pods) > 0 {
    			s.updates <- *adds
    		}
    		if len(updates.Pods) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/result/ResourceAwareResolveResult.java

    import java.util.List;
    
    public interface ResourceAwareResolveResult {
        List<String> getAttempted();
    
        /**
         * Adds a location that was used to build this result. This is used for diagnostic messages and logging.
         */
        void attempted(String locationDescription);
    
        /**
         * Adds a location that was used to build this result. This is used for diagnostic messages and logging.
         */
    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/core-runtime/logging-api/src/main/java/org/gradle/api/logging/LoggingOutput.java

    import org.gradle.internal.HasInternalProtocol;
    
    /**
     * Provides access to the output of the Gradle logging system.
     */
    @HasInternalProtocol
    public interface LoggingOutput {
        /**
         * Adds a listener which receives output written to standard output by the Gradle logging system.
         *
         * @param listener The listener to add.
         */
        void addStandardOutputListener(StandardOutputListener listener);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/client-go/applyconfigurations/core/v1/ephemeralcontainer.go

    func (b *EphemeralContainerApplyConfiguration) WithImage(value string) *EphemeralContainerApplyConfiguration {
    	b.Image = &value
    	return b
    }
    
    // WithCommand adds the given value to the Command field in the declarative configuration
    // and returns the receiver, so that objects can be build by chaining "With" function invocations.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 21:39:35 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  10. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/java/archives/ManifestMergeSpec.java

         * @param contentCharset the character set used to decode the merged manifest content
         * @see #getContentCharset()
         * @since 2.14
         */
        void setContentCharset(String contentCharset);
    
        /**
         * Adds a merge path to a manifest that should be merged into the base manifest. A merge path can be either another
         * {@link org.gradle.api.java.archives.Manifest} or a path that is evaluated as per
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 3K bytes
    - Viewed (0)
Back to top