Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 705 for Remotes (0.13 sec)

  1. tensorflow/c/eager/c_api_distributed_test.cc

      EXPECT_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
    
      // Pack 3 variable handles into one TFE_TensorHandle.
      // When remote is false, function device is placed on task0. Handle types are
      // REMOTE, REMOTE, LOCAL on task0. When remote is true, function device is
      // placed on task1, Handle types are LOCAL, REMOTE, LOCAL on task1.
      int num_replicas = 3;
      std::vector<TFE_TensorHandle*> handles = {h0, h1, h2};
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 09:49:45 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/options/authentication.go

    		klog.Warningf("--requestheader-username-headers is set without specifying the standard X-Remote-User header - API aggregation will not work")
    	}
    	if len(s.GroupHeaders) > 0 && !caseInsensitiveHas(s.GroupHeaders, "X-Remote-Group") {
    		klog.Warningf("--requestheader-group-headers is set without specifying the standard X-Remote-Group header - API aggregation will not work")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 21 14:51:22 UTC 2023
    - 19.9K bytes
    - Viewed (0)
  3. pkg/kubelet/kuberuntime/kuberuntime_gc.go

    	return nil
    }
    
    // GarbageCollect removes dead containers using the specified container gc policy.
    // Note that gc policy is not applied to sandboxes. Sandboxes are only removed when they are
    // not ready and containing no containers.
    //
    // GarbageCollect consists of the following steps:
    // * gets evictable containers which are not active and created more than gcPolicy.MinAge ago.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/lifecycle/internal/MojoDescriptorCreator.java

                // of the form:
                //
                // mvn remote-resources:process
                //
                // From the metadata stored on the server which has been created as part of a standard
                // Maven plugin deployment we will find the right PluginDescriptor from the remote
                // repository.
    
                plugin = findPluginForPrefix(prefix, session);
            }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  5. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/NestedSourceDependencyIntegrationTest.groovy

            shouldResolve(first, second)
    
            when:
            succeeds("resolve")
            then:
            result.assertTasksExecutedInOrder(":second:generate", ":first:generate", ":resolve")
    
            // Updating the remote repository causes changes downstream
            when:
            changeMessage("goodbye world", first, second)
    
            then:
            succeeds("resolve")
        }
    
        @ToBeFixedForConfigurationCache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  6. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/hub/MessageHub.java

    import org.gradle.internal.dispatch.Dispatch;
    import org.gradle.internal.remote.internal.Connection;
    import org.gradle.internal.remote.internal.RecoverableMessageIOException;
    import org.gradle.internal.remote.internal.RemoteConnection;
    import org.gradle.internal.remote.internal.hub.protocol.*;
    import org.gradle.internal.remote.internal.hub.queue.EndPointQueue;
    
    import java.util.ArrayList;
    import java.util.List;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/internal/classpath/transforms/ClasspathElementTransformTest.groovy

                }
                assertContainsFile("Foo.class")
            }
    
            where:
            factory | expectManifest
            AGENT   | false
            LEGACY  | true
        }
    
        def "agent instrumentation removes non multi-release manifest"() {
            given:
            def testFile = jar(testDir.file("thing.jar")) {
                manifest {
                    mainAttributes.putValue("Some-Value", "theValue")
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 14 09:24:02 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  8. 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)
  9. platforms/documentation/docs/src/docs/userguide/core-plugins/eclipse_plugin.adoc

    _Depends on_: all Eclipse configuration file clean tasks
    +
    Removes all Eclipse configuration files
    
    `cleanEclipseProject` — link:{groovyDslPath}/org.gradle.api.tasks.Delete.html[Delete]::
    +
    Removes the `.project` file.
    
    `cleanEclipseClasspath` — link:{groovyDslPath}/org.gradle.api.tasks.Delete.html[Delete]::
    +
    Removes the `.classpath` file.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  10. 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)
Back to top