Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 250 for regUsed (0.41 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheSkipCacheIntegrationTest.groovy

            executer.withArguments(commandLineArgs)
            configurationCacheRun "myTask"
    
            then:
            outputContains("bar")
            outputContains("Calculating task graph as configuration cache cannot be reused due to ${commandLineArgs.first()}")
            configurationCache.assertStateStored()
    
            when:
            configurationCacheRun "myTask"
    
            then:
            outputContains("bar")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/JavaCompilerArgumentsBuilder.java

            in com.sun.tools.javac.main.RecognizedOptions#getAll(OptionHelper helper). This option was introduced in JDK 7 and controls if compiler's name tables should be reused.
            Without this option being set they are stored in a static list using soft references which can lead to memory pressure and performance deterioration
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:08 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/watch/watch.go

    		close(f.result)
    		f.stopped = true
    	}
    }
    
    func (f *FakeWatcher) IsStopped() bool {
    	f.Lock()
    	defer f.Unlock()
    	return f.stopped
    }
    
    // Reset prepares the watcher to be reused.
    func (f *FakeWatcher) Reset() {
    	f.Lock()
    	defer f.Unlock()
    	f.stopped = false
    	f.result = make(chan Event)
    }
    
    func (f *FakeWatcher) ResultChan() <-chan Event {
    	return f.result
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:06:22 UTC 2024
    - 8.1K bytes
    - Viewed (1)
  4. pilot/pkg/networking/core/route/retry/retry.go

    	}
    	return policy
    }
    
    func defaultPolicy() *route.RetryPolicy {
    	policy := route.RetryPolicy{
    		NumRetries:           &wrappers.UInt32Value{Value: 2},
    		RetryOn:              "connect-failure,refused-stream,unavailable,cancelled,retriable-status-codes",
    		RetriableStatusCodes: []uint32{http.StatusServiceUnavailable},
    		// TODO: allow this to be configured via API.
    		HostSelectionRetryMaxAttempts: 5,
    	}
    	return &policy
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheRemoteBuildScriptIntegrationTest.groovy

            server.expectGet "/$scriptName", scriptFile
    
            and:
            configurationCacheRun 'ok'
    
            then:
            output.contains "Calculating task graph as configuration cache cannot be reused because remote script $scriptUrl has changed."
            configurationCache.assertStateStored()
        }
    
        def "reuse cache if remote script is up to date"() {
            when:
            configurationCacheRun 'ok'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/id/ConfigurationCacheableIdFactory.java

    import java.util.concurrent.atomic.AtomicLong;
    
    /**
     * Creates unique ids for objects created during configuration.
     * <p>
     * Usage of this factory in object factories ensures that ids are reused consistently when loading from the configuration cache.
     */
    @ThreadSafe
    @ServiceScope(Scope.BuildTree.class)
    public class ConfigurationCacheableIdFactory {
    
        private static final long USED_ASSIGNED_ID_MARKER = -1;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/ScriptChangeFixture.groovy

            def scriptPath = relativePathOf(scriptFile, projectDir)
            def scriptDesc = scriptPath.contains('init') ? 'init script' : 'file'
            return "configuration cache cannot be reused because $scriptDesc '$scriptPath' has changed."
        }
    
        void setup() {
            scriptFile.text = "println(\"$expectedOutputBeforeChange\")"
        }
    
        void applyChange() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  8. platforms/core-runtime/client-services/src/main/java/org/gradle/internal/daemon/client/serialization/ClientSidePayloadClassLoaderRegistry.java

            lock.lock();
            try {
                // Locate the set of classloaders for the given details. First, try to locate by UUID.
                // A match by UUID means the entry was created by this client and can be reused
                LocalClassLoaderMapping localClassLoaderMapping = classLoaders.get(details.uuid);
                if (localClassLoaderMapping != null) {
                    return localClassLoaderMapping.getClassLoaders();
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:53:31 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. cmd/iam-object-store.go

    		bootstrapTraceMsg("loading regular IAM users")
    		regUsersList := listedConfigItems[usersListKey]
    		for _, item := range regUsersList {
    			userName := path.Dir(item)
    			if err := iamOS.loadUser(ctx, userName, regUser, cache.iamUsersMap); err != nil && err != errNoSuchUser {
    				return fmt.Errorf("unable to load the user `%s`: %w", userName, err)
    			}
    		}
    
    		bootstrapTraceMsg("loading regular IAM groups")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/filters/timeout_test.go

    }
    
    func (t *panicOnNonReuseTransport) GotConn(info httptrace.GotConnInfo) {
    	if !t.gotConnSeen {
    		t.gotConnSeen = true
    		return
    	}
    	if !info.Reused {
    		panic(fmt.Sprintf("expected the connection to be reused, info %#v", info))
    	}
    }
    
    // TestErrConnKilledHTTP2 check if HTTP/2 connection is not closed when an HTTP handler panics
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 16:28:45 UTC 2024
    - 18.4K bytes
    - Viewed (0)
Back to top