Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 696 for Remotes (0.32 sec)

  1. src/cmd/go/internal/modfetch/codehost/git_test.go

    		w.t.Logf("%s", b)
    		w.buf.Reset()
    	}
    	return n, err
    }
    
    func testRepo(ctx context.Context, t *testing.T, remote string) (Repo, error) {
    	if remote == "localGitRepo" {
    		return LocalGitRepo(ctx, localGitURL(t))
    	}
    	vcsName := "git"
    	for _, k := range []string{"hg"} {
    		if strings.Contains(remote, "/"+k+"/") {
    			vcsName = k
    		}
    	}
    	if testing.Short() && vcsName == "hg" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 19:46:23 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/AtomicLongMap.java

       */
      public void putAll(Map<? extends K, ? extends Long> m) {
        for (Entry<? extends K, ? extends Long> entry : m.entrySet()) {
          put(entry.getKey(), entry.getValue());
        }
      }
    
      /**
       * Removes and returns the value associated with {@code key}. If {@code key} is not in the map,
       * this method has no effect and returns zero.
       */
      @CanIgnoreReturnValue
      public long remove(K key) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. pkg/kubeapiserver/options/authentication_test.go

    			ClientID:      "testClientID",
    		},
    		RequestHeader: &apiserveroptions.RequestHeaderAuthenticationOptions{
    			UsernameHeaders:     []string{"x-remote-user"},
    			GroupHeaders:        []string{"x-remote-group"},
    			ExtraHeaderPrefixes: []string{"x-remote-extra-"},
    			ClientCAFile:        "testdata/root.pem",
    			AllowedNames:        []string{"kube-aggregator"},
    		},
    		ServiceAccounts: &ServiceAccountAuthenticationOptions{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  4. platforms/core-execution/worker-main/src/main/java/org/gradle/process/internal/worker/child/SystemApplicationClassLoaderWorker.java

    import org.gradle.internal.nativeintegration.services.NativeServices;
    import org.gradle.internal.nativeintegration.services.NativeServices.NativeServicesMode;
    import org.gradle.internal.remote.MessagingClient;
    import org.gradle.internal.remote.ObjectConnection;
    import org.gradle.internal.remote.services.MessagingServices;
    import org.gradle.internal.serialize.InputStreamBackedDecoder;
    import org.gradle.internal.service.DefaultServiceRegistry;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/artifact/repository/MavenArtifactRepository.java

    import org.apache.maven.repository.Proxy;
    
    /**
     * Abstraction of an artifact repository. Artifact repositories can be remote, local, or even build reactor or
     * IDE workspace.
     */
    // TODO completely separate local and remote artifact repositories
    public class MavenArtifactRepository implements ArtifactRepository {
        private static final String LS = System.lineSeparator();
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 11K bytes
    - Viewed (0)
  6. apache-maven/src/assembly/maven/conf/settings.xml

        -->
      </proxies>
    
      <!-- servers
       | This is a list of authentication profiles, keyed by the server-id used within the system.
       | Authentication profiles can be used whenever maven must make a connection to a remote server.
       |-->
      <servers>
        <!-- server
         | Specifies the authentication information to use when connecting to a particular server, identified by
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 19 15:06:01 UTC 2023
    - 11K bytes
    - Viewed (0)
  7. mockwebserver/src/main/kotlin/mockwebserver3/MockResponse.kt

        ) = apply {
          addHeaderLenient(headers, name, value.toString())
        }
    
        /** Removes all headers named [name], then adds a new header with the name and value. */
        fun setHeader(
          name: String,
          value: Any,
        ) = apply {
          removeHeader(name)
          addHeader(name, value)
        }
    
        /** Removes all headers named [name]. */
        fun removeHeader(name: String) =
          apply {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 23 14:31:42 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. tensorflow/c/eager/c_api_cluster_test.cc

      TFE_TensorHandle* h0_task0_new = TestMatrixTensorHandle(ctx);
    
      // Check that copying it to the old remote device (named localhost) fails.
      TFE_TensorHandleCopyToDevice(h0_task0_new, ctx, remote_device_name, status);
      EXPECT_NE(TF_OK, TF_GetCode(status)) << TF_Message(status);
    
      // Copying and executing on the new remote device works.
      const char new_remote_device_name[] =
          "/job:worker/replica:0/task:1/device:CPU:0";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 14 10:03:59 UTC 2023
    - 19.3K bytes
    - Viewed (0)
  9. platforms/jvm/testing-jvm/src/test/groovy/org/gradle/api/tasks/testing/TestTaskSpec.groovy

            when:
            task.executeTests()
    
            then:
            _ * closure.maximumNumberOfParameters >> 0
            1 * closure.call()
            0 * closure._
        }
    
        def "removes listeners after execution"() {
            def testListener = Mock(TestListener)
    
            given:
            expectTestPasses()
            task.addTestListener(testListener)
    
            when:
            task.executeTests()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  10. pilot/pkg/bootstrap/server_test.go

    			customHost:       "",
    			discoveryAddress: "istiod.istio-system.svc.cluster.local",
    			revision:         "default",
    			sans: []string{
    				"istio-pilot.istio-system.svc",
    				"istiod-remote.istio-system.svc",
    				"istiod.istio-system.svc",
    				"istiod.istio-system.svc.cluster.local",
    			},
    		},
    		{
    			name:             "default revision",
    			customHost:       "a.com,b.com,c.com",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 23.1K bytes
    - Viewed (0)
Back to top