Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,133 for going (0.06 sec)

  1. platforms/jvm/language-jvm/src/main/java/org/gradle/api/plugins/JavaResolutionConsistency.java

         * the compile classpath and the runtime classpath, the version from the
         * runtime classpath is going to be used.
         *
         * In addition, the test runtime classpath is going to be configured to
         * be consistent with the main runtime classpath.
         *
         * Prefer {@link #useCompileClasspathVersions()} unless you have special
         * requirements at runtime.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/dependencyManagement/attributeMatching/groovy/build.gradle

    }
    // end::declare-configuration[]
    
    // tag::concrete-classpath[]
    configurations {
        // declare a configuration that is going to resolve the compile classpath of the application
        compileClasspath.extendsFrom(someConfiguration)
    
        // declare a configuration that is going to resolve the runtime classpath of the application
        runtimeClasspath.extendsFrom(someConfiguration)
    }
    // end::concrete-classpath[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/dependencyManagement/attributeMatching/kotlin/build.gradle.kts

    }
    // end::declare-configuration[]
    
    // tag::concrete-classpath[]
    configurations {
        // declare a configuration that is going to resolve the compile classpath of the application
        compileClasspath {
            extendsFrom(someConfiguration)
        }
    
        // declare a configuration that is going to resolve the runtime classpath of the application
        runtimeClasspath {
            extendsFrom(someConfiguration)
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  4. pilot/pkg/networking/util/util.go

    	AlpnOverrideMetadataKey = "alpn_override"
    )
    
    // ALPNH2Only advertises that Proxy is going to use HTTP/2 when talking to the cluster.
    var ALPNH2Only = pm.ALPNH2Only
    
    // ALPNInMeshH2 advertises that Proxy is going to use HTTP/2 when talking to the in-mesh cluster.
    // The custom "istio" value indicates in-mesh traffic and it's going to be used for routing decisions.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  5. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/GradleEnterprisePluginBackgroundJobExecutors.java

         * <p>
         * The job should not throw exceptions.
         * Any exceptions thrown are going to fail the build and may prevent the {@code buildFinished} callback from firing.
         * <p>
         * The build configuration inputs are not recorded for the job.
         * For example, changes to the environment variables read by the job are not going to invalidate the configuration cache.
         * The job is also allowed to freely start external processes.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/caching/CachingRuleExecutor.java

     * @param <RESULT> the result of executing the rule, which may be the same as the DETAILS, but will often be
     * a different type that the caller can use to reproduce the execution of the rule. This object is the one
     * that is going to be cached, and most likely the thing the caller really cares about
     */
    public interface CachingRuleExecutor<KEY, DETAILS, RESULT> {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/RepositoryChainArtifactResolver.java

            ModuleComponentRepository<?> sourceRepository = findSourceRepository(component.getSources());
            // First try to determine the artifacts locally before going remote
            sourceRepository.getLocalAccess().resolveArtifactsWithType(component, artifactType, result);
            if (!result.hasResult()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/injection/image-auto.go

    	"istio.io/istio/pkg/config/analysis/msg"
    	"istio.io/istio/pkg/config/resource"
    	"istio.io/istio/pkg/config/schema/gvk"
    )
    
    // ImageAutoAnalyzer reports an error if Pods and Deployments with `image: auto` are not going to be injected.
    type ImageAutoAnalyzer struct{}
    
    var _ analysis.Analyzer = &ImageAutoAnalyzer{}
    
    const (
    	istioProxyContainerName = "istio-proxy"
    	manualInjectionImage    = "auto"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 01 01:34:15 UTC 2023
    - 4K bytes
    - Viewed (0)
  9. cni/pkg/nodeagent/cni-watcher_test.go

    		valid.Netns,
    	).Return(nil)
    
    	dpServer := &meshDataplane{
    		kubeClient: client.Kube(),
    		netServer:  fs,
    	}
    
    	handlers := setupHandlers(ctx, client, dpServer, "istio-system")
    
    	// We are not going to start the server, so the sockpath is irrelevant
    	pluginServer := startCniPluginServer(ctx, "/tmp/test.sock", handlers, dpServer)
    
    	// label the namespace
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:35 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. .github/SUPPORT.md

    Unlike many projects on GitHub, the Go project does not use its bug tracker for general discussion or asking questions.
    We only use our bug tracker for tracking bugs and tracking proposals going through the [Proposal Process](https://go.dev/s/proposal-process).
    
    For asking questions, see:
    
    * [The golang-nuts mailing list](https://groups.google.com/d/forum/golang-nuts)
    
    * [The Go Forum](https://forum.golangbridge.org/), a web-based forum
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 29 22:00:27 UTC 2023
    - 692 bytes
    - Viewed (0)
Back to top