Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 2,818 for provider3 (0.25 sec)

  1. platforms/documentation/docs/src/snippets/tutorial/gradleProperties/groovy/build.gradle

    // tag::gradle-properties[]
    // Using the API, provides a lazy Provider<String>
    println providers.gradleProperty('gradlePropertiesProp').get()
    
    // Using Groovy dynamic names
    println gradlePropertiesProp
    println project.gradlePropertiesProp
    
    // Using Groovy dynamic array notation on `project`
    println project['gradlePropertiesProp']
    // end::gradle-properties[]
    
    abstract class PrintValue extends DefaultTask {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 796 bytes
    - Viewed (0)
  2. pkg/proxy/types.go

    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/kubernetes/pkg/proxy/config"
    )
    
    // Provider is the interface provided by proxier implementations.
    type Provider interface {
    	config.EndpointSliceHandler
    	config.ServiceHandler
    	config.NodeHandler
    	config.ServiceCIDRHandler
    
    	// Sync immediately synchronizes the Provider's current state to proxy rules.
    	Sync()
    	// SyncLoop runs periodic work.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 21 14:28:37 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/services/internal/BuildServiceProvider.java

         */
        public abstract BuildIdentifier getBuildIdentifier();
    
        /**
         * Are the given providers referring to the same service provider?
         *
         * This method does not distinguish between consumed/registered providers.
         */
        public static boolean isSameService(Provider<? extends BuildService<?>> thisProvider, Provider<? extends BuildService<?>> anotherProvider) {
            if (thisProvider == anotherProvider) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 16 23:29:30 UTC 2023
    - 5K bytes
    - Viewed (0)
  4. pkg/kubelet/server/stats/handler.go

    	// GetPodByCgroupfs provides the pod that maps to the specified cgroup literal, as well
    	// as whether the pod was found.
    	GetPodByCgroupfs(cgroupfs string) (*v1.Pod, bool)
    }
    
    type handler struct {
    	provider        Provider
    	summaryProvider SummaryProvider
    }
    
    // CreateHandlers creates the REST handlers for the stats.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 14 21:31:38 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/FileCollectionFactory.java

         * <p>The collection fails to resolve if it contains providers which are not present.
         */
        FileCollectionInternal resolving(String displayName, Object sources);
    
        /**
         * Creates a {@link FileCollection} with the given files as content.
         *
         * <p>The collection is live and resolves the files on each query.
         *
         * <p>The collection ignores providers which are not present.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/api/internal/collections/IterationOrderRetainingSetElementSourceTest.groovy

        def "can add the same provider twice"() {
            def provider = provider("foo")
    
            when:
            source.addPending(provider)
            source.addPending(provider)
    
            then:
            source.size() == 1
            source.contains("foo")
        }
    
        def "an element added as both a provider and a realized value is not duplicated"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 06:43:26 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/valueProviders/externalProcessValueSource/groovy/build.gradle

            }
            return new String(output.toByteArray(), Charset.defaultCharset())
        }
    }
    // end::value-source[]
    
    // tag::create-provider[]
    def gitVersionProvider = providers.of(GitVersionValueSource.class) {}
    def gitVersion = gitVersionProvider.get()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 795 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/valueProviders/externalProcessValueSource/kotlin/build.gradle.kts

            }
            return String(output.toByteArray(), Charset.defaultCharset())
        }
    }
    // end::value-source[]
    
    // tag::create-provider[]
    val gitVersionProvider = providers.of(GitVersionValueSource::class) {}
    val gitVersion = gitVersionProvider.get()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 811 bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1/types_encryption.go

    	Resources []string `json:"resources"`
    	// providers is a list of transformers to be used for reading and writing the resources to disk.
    	// eg: aesgcm, aescbc, secretbox, identity, kms.
    	Providers []ProviderConfiguration `json:"providers"`
    }
    
    // ProviderConfiguration stores the provided configuration for an encryption provider.
    type ProviderConfiguration struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 20:54:24 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/DefaultProperty.java

        }
    
        public DefaultProperty<T> provider(Provider<? extends T> provider) {
            set(provider);
            return this;
        }
    
        @Override
        public void set(Provider<? extends T> provider) {
            Preconditions.checkArgument(provider != null, "Cannot set the value of a property using a null provider.");
            ProviderInternal<? extends T> p = Providers.internal(provider);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 6.1K bytes
    - Viewed (0)
Back to top