Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 501 for regUsed (0.15 sec)

  1. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/operations/execution/ExecuteDeferredWorkProgressDetails.java

         *
         * @since 8.7
         */
        String getOriginBuildInvocationId();
    
        /**
         * The build cache key of the work in the origin build invocation.
         *
         * @since 8.7
         */
        byte[] getOriginBuildCacheKeyBytes();
    
        /**
         * The execution time of the work in the build that produced the outputs being reused.
         *
         * @since 8.7
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 16:13:07 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r32/BuildActionCrossVersionSpec.groovy

        def "can use multiple action implementations with different classpath roots and loaded from same ClassLoader"() {
            settingsFile.text = 'rootProject.name = "not broken"'
    
            // Ensure daemon is reused
            toolingApi.requireIsolatedDaemons()
    
            // Copy each of the action classes into its own classes directory and load into a single ClassLoader
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  3. pkg/scheduler/util/utils_test.go

    			name: "retry patch request when an 'connection refused' error is returned",
    			client: func() *clientsetfake.Clientset {
    				client := clientsetfake.NewSimpleClientset()
    
    				reqcount := 0
    				client.PrependReactor("patch", "pods", func(action clienttesting.Action) (bool, runtime.Object, error) {
    					defer func() { reqcount++ }()
    					if reqcount == 0 {
    						// return an connection refused error for the first patch request.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 21 01:40:44 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  4. istioctl/pkg/writer/envoy/configdump/testdata/routes/istio-gateway-http-route-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
    - 2.9K bytes
    - Viewed (0)
  5. platforms/core-execution/build-cache-http/src/integTest/groovy/org/gradle/caching/http/internal/HttpBuildCacheServiceErrorHandlingIntegrationTest.groovy

                }
            }
            settingsFile << withHttpBuildCacheServer()
    
            // We see connection refused because the first partial request is retried,
            // then the subsequent is flat refused because we stopped the server.
            String errorPattern = /(Connect to 127\.0\.0\.1:\d+ \[\/127\.0\.0\.1\] failed: Connection refused|127\.0\.0\.1:\d+ failed to respond|Connection reset)/
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/arch/x86/x86asm/decode.go

    				inst.Prefix[repIndex] |= PrefixIgnored
    			}
    		}
    	}
    
    	// If REX was present, mark implicit if all the 1 bits were consumed.
    	if rexIndex >= 0 {
    		if rexUsed != 0 {
    			rexUsed |= PrefixREX
    		}
    		if rex&^rexUsed == 0 {
    			inst.Prefix[rexIndex] |= PrefixImplicit
    		}
    	}
    
    	inst.DataSize = dataMode
    	inst.AddrSize = addrMode
    	inst.Mode = mode
    	inst.Len = pos
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:59:52 UTC 2023
    - 45.1K bytes
    - Viewed (0)
  7. cmd/iam-store.go

    			if err := store.loadUsers(ctx, regUser, newCache.iamUsersMap); err != nil {
    				return err
    			}
    			bootstrapTraceMsg("loading regular groups")
    			if err := store.loadGroups(ctx, newCache.iamGroupsMap); err != nil {
    				return err
    			}
    		}
    
    		bootstrapTraceMsg("loading user policy mapping")
    		// load polices mapped to users
    		if err := store.loadMappedPolicies(ctx, regUser, false, newCache.iamUserPolicyMap); err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/api/internal/initialization/loadercache/DefaultClassLoaderCacheTest.groovy

            DefaultClassPath.of(paths.collect { file(it) } as Iterable<File>)
        }
    
        ClassLoader classLoader(ClassPath classPath) {
            new URLClassLoader(classPath.asURLArray)
        }
    
        def "class loaders are reused when parent, class path and implementation hash are the same"() {
            expect:
            def root = classLoader(classPath("root"))
            cache.get(id1, classPath("c1"), root, null) == cache.get(id1, classPath("c1"), root, null)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 23 19:34:48 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  9. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerDaemonLifecycleTest.groovy

    @IntegrationTestTimeout(180)
    class WorkerDaemonLifecycleTest extends AbstractDaemonWorkerExecutorIntegrationSpec {
        String logSnapshot = ""
    
        def "worker daemons are not reused across builds"() {
            fixture.withWorkActionClassInBuildScript()
            buildFile << """
                import org.gradle.workers.internal.WorkerDaemonFactory
    
                task runInWorker1(type: WorkerTask) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheKeyIntegrationTest.groovy

            when:
            configurationCacheRun "help", "--offline"
            then:
            configurationCache.assertStateStored()
    
            // Now repeat invocations in different order to make sure both entries can be reused
            when:
            configurationCacheRun "help"
            then:
            configurationCache.assertStateLoaded()
    
            when:
            configurationCacheRun "help", "--offline"
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top