Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 95 for fadds (0.08 sec)

  1. cmd/kubeadm/app/cmd/options/generic.go

    	fs.Lookup(KubeconfigPath).DefValue = constants.GetAdminKubeConfigPath()
    }
    
    // AddKubeConfigDirFlag adds the --kubeconfig-dir flag to the given flagset
    func AddKubeConfigDirFlag(fs *pflag.FlagSet, kubeConfigDir *string) {
    	fs.StringVar(kubeConfigDir, KubeconfigDir, *kubeConfigDir, "The path where to save the kubeconfig file.")
    }
    
    // AddConfigFlag adds the --config flag to the given flagset
    func AddConfigFlag(fs *pflag.FlagSet, cfgPath *string) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/preflight/checks_linux.go

    	)
    	return checks
    }
    
    // addIPv4Checks adds IPv4 related checks
    func addIPv4Checks(checks []Checker) []Checker {
    	checks = append(checks,
    		FileContentCheck{Path: ipv4Forward, Content: []byte{'1'}})
    	return checks
    }
    
    // addSwapCheck adds a swap check
    func addSwapCheck(checks []Checker) []Checker {
    	checks = append(checks, SwapCheck{})
    	return checks
    }
    
    // addExecChecks adds checks that verify if certain binaries are in PATH
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. platforms/core-runtime/service-provider/src/main/java/org/gradle/internal/service/ServiceRegistration.java

     */
    public interface ServiceRegistration {
        /**
         * Adds a service to this registry. The given object is closed when the associated registry is closed.
         * @param serviceType The type to make this service visible as.
         * @param serviceInstance The service implementation.
         */
        <T> void add(Class<T> serviceType, T serviceInstance);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/CollectionPropertyInternal.java

    public interface CollectionPropertyInternal<T, C extends Collection<T>> extends PropertyInternal<C>, HasMultipleValues<T>, CollectionProviderInternal<T, C> {
        @Override
        Class<T> getElementType();
    
        /**
         * Adds an element 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 collection.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 18:32:13 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. doc/next/6-stdlib/3-iter.md

      sub-slices of up to n elements of a slice.
    
    The [maps] package adds several functions that work with iterators:
    - [All](/pkg/maps#All) returns an iterator over key-value pairs from m.
    - [Keys](/pkg/maps#Keys) returns an iterator over keys in m.
    - [Values](/pkg/maps#Values) returns an iterator over values in m.
    - [Insert](/pkg/maps#Insert) adds the key-value pairs from seq to m.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:13 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top