Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 2,818 for provider3 (0.46 sec)

  1. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/plugins/jvm/internal/DefaultJvmPluginServices.java

        }
    
        @Override
        public void replaceArtifacts(Configuration outgoingConfiguration, Object... providers) {
            clearArtifacts(outgoingConfiguration);
            ConfigurationPublications outgoing = outgoingConfiguration.getOutgoing();
            for (Object provider : providers) {
                outgoing.artifact(provider);
            }
        }
    
        private void clearArtifacts(Configuration outgoingConfiguration) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MappingProviderTest.groovy

     */
    
    package org.gradle.api.internal.provider
    
    import org.gradle.api.Transformer
    import org.gradle.api.internal.provider.CircularEvaluationSpec.CircularChainEvaluationSpec
    import org.gradle.api.internal.provider.CircularEvaluationSpec.CircularFunctionEvaluationSpec
    import org.gradle.api.internal.provider.CircularEvaluationSpec.UsesStringProperty
    import org.gradle.api.provider.Provider
    import org.gradle.internal.state.ManagedFactory
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 20:21:32 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  3. docs/sts/README.md

    Following are advantages for using temporary credentials:
    
    - Eliminates the need to embed long-term credentials with an application.
    - Eliminates the need to provide access to buckets and objects without having to define static credentials.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Oct 25 00:44:15 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/package-info.java

     *
     * <p>Providers are container objects that provide a value of a specific type.</p>
     *
     * <p>Properties are providers with configurable values.</p>
     *
     * <h3>Provider</h3>
     *
     * <p>For the public API, see {@link org.gradle.api.provider.Provider Provider}.</p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 20:31:29 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. docs/en/docs/deployment/cloud.md

    # Deploy FastAPI on Cloud Providers
    
    You can use virtually **any cloud provider** to deploy your FastAPI application.
    
    In most of the cases, the main cloud providers have guides to deploy FastAPI with them.
    
    ## Cloud Providers - Sponsors
    
    Some cloud providers ✨ [**sponsor FastAPI**](../help-fastapi.md#sponsor-the-author){.internal-link target=_blank} ✨, this ensures the continued and healthy **development** of FastAPI and its **ecosystem**.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Jan 31 22:13:52 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. cmd/cloud-controller-manager/nodeipamcontroller.go

    // which demonstrates how cloud providers add external controllers to cloud-controller-manager
    
    package main
    
    import (
    	"context"
    	"errors"
    	"fmt"
    	"net"
    	"strings"
    
    	cloudprovider "k8s.io/cloud-provider"
    	"k8s.io/cloud-provider/app"
    	cloudcontrollerconfig "k8s.io/cloud-provider/app/config"
    	genericcontrollermanager "k8s.io/controller-manager/app"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 14 19:06:22 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  7. cmd/kube-controller-manager/app/cloudproviders.go

    			"cloud provider %q was specified, but built-in cloud providers are disabled. Please set --cloud-provider=external and migrate to an external cloud provider",
    			cloudProvider)
    	}
    
    	if cloudprovider.IsExternal(cloudProvider) {
    		loopMode = ExternalLoops
    		if externalCloudVolumePlugin == "" {
    			// externalCloudVolumePlugin is temporary until we split all cloud providers out.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 18:16:32 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  8. subprojects/build-events/src/test/groovy/org/gradle/internal/build/event/DefaultBuildEventsListenerRegistryTest.groovy

        }
    
        def "does nothing when listener is already subscribed"() {
            def listener = Mock(OperationCompletionListener)
            def provider = Providers.of(listener)
    
            when:
            registry.onTaskCompletion(provider)
            registry.onTaskCompletion(provider)
    
            then:
            registry.subscriptions.size() == 1
    
            cleanup:
            signalBuildFinished()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 8K bytes
    - Viewed (0)
  9. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/fixture/AbstractTestingMultiVersionIntegrationTest.groovy

    import org.gradle.integtests.fixtures.MultiVersionIntegrationSpec
    
    /**
     * Base class for multi-version integration tests that use various versions of JUnit.  This class provides the common
     * configuration for the build script and test framework.  Subclasses must provide test framework/engine specific
     * configuration for the build script.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/providers/property/groovy/build.gradle

    simpleMessageProperty.set("Hello, World from a Property!")
    // Accessing a property
    println(simpleMessageProperty.get())
    // end::set-prop[]
    
    // tag::set-prov[]
    // Setting a provider
    def simpleMessageProvider = project.providers.provider { "Hello, World from a Provider!" }
    // Accessing a provider
    println(simpleMessageProvider.get())
    // end::set-prov[]
    
    // tag::introduction[]
    abstract class MyIntroTask extends DefaultTask {
        @Input
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top