Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,250 for going (0.05 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. src/cmd/go/testdata/script/test_finished_subtest_goroutines.txt

    	var wg sync.WaitGroup
    	const nFast = 10
    
    	t.Run("slow", func(t *testing.T) {
    		t.Parallel()
    		wg.Wait()
    		for i := 0; i < nFast; i++ {
    			// If the subtest goroutines are going to park on the channel
    			// send, allow them to park now. If they're not going to park,
    			// make sure they have had a chance to run to completion so
    			// that they aren't spuriously parked when we panic.
    			runtime.Gosched()
    		}
    		panic("slow failure")
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 19 17:34:25 UTC 2021
    - 1K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/cmd/go/testdata/script/mod_import_issue42891.txt

    # If an import declaration is an absolute path, most commands should report
    # an error instead of going into an infinite loop.
    # Verifies golang.org/issue/42891.
    go list .
    stdout '^m$'
    
    -- go.mod --
    module m
    
    go 1.16
    -- m.go --
    package m
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 30 22:05:31 UTC 2020
    - 250 bytes
    - Viewed (0)
  8. test/fixedbugs/issue20174.go

    // Issue 20174: failure to typecheck contents of *T in the frontend.
    
    package p
    
    func f() {
    	_ = (*interface{})(nil) // interface{} here used to not have its width calculated going into backend
    	select {
    	case _ = <-make(chan interface {
    		M()
    	}, 1):
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 30 00:45:42 UTC 2017
    - 434 bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top