Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 406 for Remotes (0.28 sec)

  1. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/registry/PersistentDaemonRegistryTest.groovy

     */
    
    package org.gradle.launcher.daemon.registry
    
    
    import org.gradle.internal.file.Chmod
    import org.gradle.internal.jvm.Jvm
    import org.gradle.internal.remote.Address
    import org.gradle.internal.remote.internal.inet.InetEndpoint
    import org.gradle.internal.remote.internal.inet.MultiChoiceAddress
    import org.gradle.jvm.toolchain.JavaLanguageVersion
    import org.gradle.launcher.daemon.configuration.DaemonParameters
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 00:09:57 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/symbolizer/symbolizer.go

    	remote, local, fast, force, demanglerMode := true, true, false, false, ""
    	for _, o := range strings.Split(strings.ToLower(mode), ":") {
    		switch o {
    		case "":
    			continue
    		case "none", "no":
    			return nil
    		case "local":
    			remote, local = false, true
    		case "fastlocal":
    			remote, local, fast = false, true, true
    		case "remote":
    			remote, local = true, false
    		case "force":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. pilot/pkg/xds/endpoints/ep_filters.go

    	// Spread the weight across the gateways.
    	weightPerGateway := weight / uint32(len(gateways))
    	for _, gateway := range gateways {
    		gatewayWeights[gateway] += weightPerGateway
    	}
    }
    
    // EndpointsWithMTLSFilter removes all endpoints that do not handle mTLS. This is determined by looking at
    // auto-mTLS, DestinationRule, and PeerAuthentication to determine if we would send mTLS to these endpoints.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  4. src/cmd/go/internal/help/helpdoc.go

    Usually, [packages] is a list of import paths.
    
    An import path that is a rooted path or that begins with
    a . or .. element is interpreted as a file system path and
    denotes the package in that directory.
    
    Otherwise, the import path P denotes the package found in
    the directory DIR/src/P for some DIR listed in the GOPATH
    environment variable (For more details see: 'go help gopath').
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonInitialCommunicationFailureIntegrationSpec.groovy

            analyzer.daemons.size() == 2        //2 daemon participated
            analyzer.visible.size() == 1        //only one address in the registry
        }
    
        @Issue("GRADLE-2464")
        def "stop removes entry when nothing is listening on address"() {
            when:
            buildSucceeds()
    
            then:
            def daemon = daemons.daemon
    
            when:
            daemon.assertIdle()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 07:46:29 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/internal/classpath/DefaultCachedClasspathTransformerTest.groovy

            jar(file)
            def remote = new URL("https://somewhere")
            def cachedFile = testDir.file("cached/o_e161f24809571a55f09d3f820c8e5942/thing.jar")
    
            when:
            def cachedClasspath = transformer.transform([file.toURI().toURL(), remote], None)
    
            then:
            cachedClasspath == [cachedFile.toURI().toURL(), remote]
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  7. pkg/kube/util.go

    		return nil, errors.NewRequestEntityTooLargeError(fmt.Sprintf("limit is %d", MaxRequestBodyBytes))
    	}
    	return data, nil
    }
    
    // StripUnusedFields is the transform function for shared informers,
    // it removes unused fields from objects before they are stored in the cache to save memory.
    func StripUnusedFields(obj any) (any, error) {
    	t, ok := obj.(metav1.ObjectMetaAccessor)
    	if !ok {
    		// shouldn't happen
    		return obj, nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  8. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/services/MessagingServices.java

     */
    
    package org.gradle.internal.remote.services;
    
    import org.gradle.internal.concurrent.ExecutorFactory;
    import org.gradle.internal.id.IdGenerator;
    import org.gradle.internal.id.UUIDGenerator;
    import org.gradle.internal.remote.MessagingClient;
    import org.gradle.internal.remote.MessagingServer;
    import org.gradle.internal.remote.internal.IncomingConnector;
    import org.gradle.internal.remote.internal.OutgoingConnector;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheRemoteBuildScriptIntegrationTest.groovy

        String scriptUrl
        TestFile scriptFile
        String scriptName = "remote-script.gradle"
        def configurationCache
    
        def setup() {
            server.start()
    
            scriptUrl = "${server.uri}/${scriptName}"
            scriptFile = file("remote-script.gradle") << """
                println 'loaded remote script'
            """
            server.expectGet "/$scriptName", scriptFile
    
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. internal/grid/grid_test.go

    				}
    				return nil
    			},
    			OutCapacity: 1,
    			InCapacity:  1,
    		}))
    	}
    	register(local)
    	register(remote)
    	// Double remote DL
    	local.debugMsg(debugAddToDeadline, wantDL)
    	defer local.debugMsg(debugAddToDeadline, time.Duration(0))
    	remote.debugMsg(debugAddToDeadline, wantDL)
    	defer remote.debugMsg(debugAddToDeadline, time.Duration(0))
    
    	testHandler := func(t *testing.T, handler HandlerID) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 36.4K bytes
    - Viewed (0)
Back to top