Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 170 for regUsed (0.57 sec)

  1. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/compile/daemon/JavaCompilerDaemonReuseIntegrationTest.groovy

            """
        }
    
        @Override
        TestJvmComponent getComponent() {
            return new TestJavaComponent()
        }
    
        @Requires(UnitTestPreconditions.Windows)
        def "compiler daemon is not reused on Windows with Java agent"() {
            withSingleProjectSources()
            def javaAgent = new JavaAgentFixture()
            javaAgent.writeProjectTo(testDirectory)
    
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  2. istioctl/pkg/writer/envoy/configdump/testdata/routes/k8s-gateway-http-route-path-prefix/configdump.json

              },
              "route": {
               "cluster": "outbound|8000||httpbin.default.svc.cluster.local",
               "timeout": "0s",
               "retry_policy": {
                "retry_on": "connect-failure,refused-stream,unavailable,cancelled,retriable-status-codes",
                "num_retries": 2,
                "retry_host_predicate": [
                 {
                  "name": "envoy.retry_host_predicates.previous_hosts",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 29 12:37:14 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/isolated_projects.adoc

    When the cache entry can be reused, Gradle short-circuits the entire sync operation and simply returns the cached result to the IDE.
    
    Generally, the settings and build scripts affect the IDE model, but the source code of the projects does not.
    So, when these scripts change the cache entry cannot be reused.
    When this happens, Gradle falls back to fine-grained caching.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 13:53:18 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/CompiledScript.java

        /**
         * Returns true if the script declares any methods.
         */
        boolean getHasMethods();
    
        Class<? extends T> loadClass();
    
        D getData();
    
        /**
         * Called when this script is reused in a new build invocation.
         */
        void onReuse();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 18 23:26:14 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  5. internal/grid/README.md

    and furthermore provides reuse of the structs used for the request and response.
    
    Note that Responses sent for serialization are automatically reused for similar requests.
    If the response contains shared data it will cause issues, since each unique response is reused.
    To disable this behavior, use `(SingleHandler).WithSharedResponse()` to disable it.
    
    ## Streaming Requests
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/ImmutableMapEntry.java

     * implementations.
     *
     * <p>This base implementation has no key or value pointers, so instances of ImmutableMapEntry (but
     * not its subclasses) can be reused when copied from one ImmutableMap to another.
     *
     * @author Louis Wasserman
     */
    @GwtIncompatible // unnecessary
    @ElementTypesAreNonnullByDefault
    class ImmutableMapEntry<K, V> extends ImmutableEntry<K, V> {
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  7. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/api/internal/tasks/execution/ExecuteTaskBuildOperationType.java

             */
            boolean isActionable();
    
            /**
             * If task was UP_TO_DATE or FROM_CACHE, this will convey the ID of the build that produced the outputs being reused.
             * Value will be null for any other outcome.
             *
             * This value may also be null for an UP_TO_DATE outcome where the task executed, but then decided it was UP_TO_DATE.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 10:13:49 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/ModelRuleCachingIntegrationTest.groovy

            """
        }
    
        boolean getNewRulesExtracted() {
            def match = output =~ /.*### extracted new rules: (true|false).*/
            match[0][1] == "true"
        }
    
        def "rules extracted from core plugins are reused across builds"() {
            given:
            buildFile << '''
                apply plugin: 'cpp'
            '''
    
            when:
            run()
    
            then:
            newRulesExtracted
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. platforms/jvm/scala/src/main/java/org/gradle/language/scala/tasks/KeepAliveMode.java

     * limitations under the License.
     */
    
    package org.gradle.language.scala.tasks;
    
    import org.gradle.api.Incubating;
    
    /**
     * Describes whether a Scala compiler daemon should be reused.
     *
     * @since 7.6
     */
    @Incubating
    public enum KeepAliveMode {
        /**
         * The compiler is kept alive for a session.
         */
        SESSION,
    
        /**
         * The compiler is kept alive across builds.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 979 bytes
    - Viewed (0)
  10. src/os/exec_unix.go

    	// TODO(go.dev/issue/67642): When there are concurrent Wait calls, one
    	// may wait on the wrong process if the PID is reused after the
    	// completes its wait.
    	//
    	// Checking for statusDone here would not be a complete fix, as the PID
    	// could still be waited on and reused prior to blockUntilWaitable.
    	switch p.pidStatus() {
    	case statusReleased:
    		return nil, syscall.EINVAL
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top