Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 363 for fadds (0.04 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/MapPropertyInternal.java

    package org.gradle.api.internal.provider;
    
    import org.gradle.api.Incubating;
    import org.gradle.api.provider.Provider;
    
    import java.util.Map;
    
    public interface MapPropertyInternal<K, V> {
        /**
         * Adds a map entry to the property value.
         *
         * <p>
         * When invoked on a property with no value, this method first sets the value
         * of the property to its current convention value, if set, or an empty map.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 18:32:13 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. subprojects/core-platform/build.gradle.kts

        }
        runtime(project(":kotlin-dsl")) {
            because("Adds support for Kotlin DSL scripts.")
        }
        runtime(project(":declarative-dsl-provider")) {
            because("Adds support for interpreting files with the declarative DSL")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  3. 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)
  4. JavadocStyleGuide.md

    | 4  | `@see`        | Adds a “See Also” heading with a link or text entry that points to a reference | `@see string`<br>`@see <a href=”URL#value”>label</a>`<br>`@see package.class#member label`                                                                                                                         |
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 15:43:07 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  5. 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)
  6. staging/src/k8s.io/apiserver/pkg/server/healthz.go

    }
    
    // AddHealthChecks adds HealthCheck(s) to health endpoints (healthz, livez, readyz) but
    // configures the liveness grace period to be zero, which means we expect this health check
    // to immediately indicate that the apiserver is unhealthy.
    func (s *GenericAPIServer) AddHealthChecks(checks ...healthz.HealthChecker) error {
    	// we opt for a delay of zero here, because this entrypoint adds generic health checks
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 6K bytes
    - Viewed (0)
  7. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtSubstitutorFactory.kt

        private val backingMapping = mutableMapOf<KaTypeParameterSymbol, KaType>()
    
        public val mappings: Map<KaTypeParameterSymbol, KaType> get() = withValidityAssertion { backingMapping }
    
        /**
         * Adds a new [typeParameter] -> [type] substitution to the substitutor which is being built.
         * If there already was a substitution with a [typeParameter], replaces corresponding substitution with a new one.
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/passes/passes.h

    std::unique_ptr<OperationPass<ModuleOp>>
    CreateInsertCalibrationStatisticsSaverPass(
        StringRef calibration_data_dir,
        const std::vector<std::string>& aggregator_ops_to_ignore);
    
    // Adds generated pass default constructors or options definitions.
    #define GEN_PASS_DECL
    // Adds generated pass registration functions.
    #define GEN_PASS_REGISTRATION
    #include "tensorflow/compiler/mlir/quantization/stablehlo/passes/passes.h.inc"
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. pkg/kubelet/config/sources.go

    type SourcesReadyFn func(sourcesSeen sets.Set[string]) bool
    
    // SourcesReady tracks the set of configured sources seen by the kubelet.
    type SourcesReady interface {
    	// AddSource adds the specified source to the set of sources managed.
    	AddSource(source string)
    	// AllReady returns true if the currently configured sources have all been seen.
    	AllReady() bool
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ModuleDependency.java

     * <p>
     * For examples on configuring the exclude rules please refer to {@link #exclude(java.util.Map)}.
     */
    public interface ModuleDependency extends Dependency, HasConfigurableAttributes<ModuleDependency> {
        /**
         * Adds an exclude rule to exclude transitive dependencies of this dependency.
         * <p>
         * Excluding a particular transitive dependency does not guarantee that it does not show up
         * in the dependencies of a given configuration.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 16:14:52 UTC 2024
    - 8.6K bytes
    - Viewed (0)
Back to top