Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 696 for Remotes (0.19 sec)

  1. internal/grid/benchmark_test.go

    	errFatal(err)
    	b.Cleanup(grid.Cleanup)
    	// Create n managers.
    	for _, remote := range grid.Managers {
    		// Register a single handler which echos the payload.
    		errFatal(remote.RegisterSingleHandler(handlerTest, func(payload []byte) ([]byte, *RemoteErr) {
    			defer PutByteBuffer(payload)
    			return append(GetByteBuffer()[:0], payload...), nil
    		}))
    		errFatal(rpc.Register(remote, func(req *testRequest) (resp *testResponse, err *RemoteErr) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/CachingModuleComponentRepositoryTest.groovy

                result.resolved([Mock(ComponentArtifactMetadata)])
            }
            0 * _
        }
    
        def "delegates estimates for fetching metadata to remote when not found in cache (remote says #remoteAnswer)"() {
            def module = Mock(ModuleComponentIdentifier)
            def localAccess = repo.localAccess
    
            when:
            def cost = localAccess.estimateMetadataFetchingCost(module)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  3. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/remote/internal/inet/TcpConnectorTest.groovy

     * limitations under the License.
     */
    package org.gradle.internal.remote.internal.inet
    
    import org.gradle.api.Action
    import org.gradle.internal.id.UUIDGenerator
    import org.gradle.internal.remote.internal.ConnectCompletion
    import org.gradle.internal.remote.internal.ConnectException
    import org.gradle.internal.remote.internal.MessageIOException
    import org.gradle.internal.serialize.BaseSerializerFactory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  4. maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingRequest.java

        /**
         * Denotes validation as performed by Maven 3.0. This validation level is meant for existing projects.
         */
        int VALIDATION_LEVEL_MAVEN_3_0 = 30;
    
        /**
         * Denotes validation as performed by Maven 3.1. This validation level is meant for existing projects.
         */
        int VALIDATION_LEVEL_MAVEN_3_1 = 31;
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/inline/inlheur/scoring.go

    			// after score adjustment we decided to inline.
    			st = "PROMOTED"
    			expinl = true
    		case hairyval <= bud && score > bud:
    			// Demoted: we would have inlined it before, but after
    			// score adjustment we decided not to inline.
    			st = "DEMOTED"
    		}
    		inlined := cs.aux&csAuxInlined != 0
    		indprom := false
    		if cs.parent != nil {
    			indprom = indirectlyDueToPromotion(cs.parent)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:42:52 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftIncrementalBuildIntegrationTest.groovy

            succeeds "assemble"
    
            then:
            result.assertTasksExecuted(assembleAppAndLibTasks, ":assemble")
            result.assertTasksSkipped(assembleAppAndLibTasks, ":assemble")
        }
    
        def "removes stale object files for executable"() {
            settingsFile << "rootProject.name = 'app'"
            def app = new IncrementalSwiftStaleCompileOutputApp()
            def outputDirectory = file("build/obj/main/debug")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  7. maven-core/src/site/apt/offline-mode.apt

      We cannot take the approach outlined below of detecting which remote
      repositories are "really" offline, since offline mode is more of a behavior,
      and this will lead to counter-intuitive results. A different feature may exist
      unimplemented, which is to detect when the network is down and provide better
      feedback for that case. However, when offline mode is declared, nothing
      earmarked as remote should be accessed, regardless of whether it is actually
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/process/internal/worker/DefaultWorkerProcessBuilder.java

    import org.gradle.internal.nativeintegration.services.NativeServices.NativeServicesMode;
    import org.gradle.internal.remote.Address;
    import org.gradle.internal.remote.ConnectionAcceptor;
    import org.gradle.internal.remote.MessagingServer;
    import org.gradle.internal.remote.ObjectConnection;
    import org.gradle.process.ExecResult;
    import org.gradle.process.internal.ExecHandle;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:16:16 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/HttpScriptPluginIntegrationSpec.groovy

            output.contains('loaded external script 2')
        }
    
        def "reports and recovers from missing remote script"() {
            String scriptName = "script-missing.gradle"
            String scriptUrl = "${server.uri}/${scriptName}"
            def scriptFile = file("script.gradle") << """
                println 'loaded remote script'
            """
    
            buildFile << """
                apply from: '${scriptUrl}'
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 30 08:26:30 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/webhook.go

    // The config's cluster field is used to refer to the remote service, user refers to the returned authorizer.
    //
    //	# clusters refers to the remote service.
    //	clusters:
    //	- name: name-of-remote-authz-service
    //	  cluster:
    //	    certificate-authority: /path/to/ca.pem      # CA for verifying the remote service.
    //	    server: https://authz.example.com/authorize # URL of remote service to query. Must use 'https'.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:01:15 UTC 2024
    - 18.4K bytes
    - Viewed (0)
Back to top