Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 59 for connections (0.3 sec)

  1. android/guava/src/com/google/common/collect/Maps.java

          Map<K, ? extends V> map) {
        if (map instanceof SortedMap) {
          return Collections.unmodifiableSortedMap((SortedMap<K, ? extends V>) map);
        } else {
          return Collections.unmodifiableMap(map);
        }
      }
    
      static class MapDifferenceImpl<K extends @Nullable Object, V extends @Nullable Object>
          implements MapDifference<K, V> {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/Maps.java

          Map<K, ? extends V> map) {
        if (map instanceof SortedMap) {
          return Collections.unmodifiableSortedMap((SortedMap<K, ? extends V>) map);
        } else {
          return Collections.unmodifiableMap(map);
        }
      }
    
      static class MapDifferenceImpl<K extends @Nullable Object, V extends @Nullable Object>
          implements MapDifference<K, V> {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  3. manifests/addons/dashboards/istio-service-dashboard.json

              "legendFormat": "{{ source_workload }}.{{ source_workload_namespace}}",
              "refId": "B",
              "step": 2
            }
          ],
          "title": "Bytes Received from Incoming TCP Connection",
          "type": "timeseries"
        },
        {
          "datasource": {
            "type": "prometheus",
            "uid": "${datasource}"
          },
          "fieldConfig": {
            "defaults": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 03:47:04 UTC 2024
    - 111.8K bytes
    - Viewed (0)
  4. cmd/admin-handlers.go

    	if logKind == 0 {
    		logKind = madmin.LogMaskAll
    	}
    
    	// Avoid reusing tcp connection if read timeout is hit
    	// This is needed to make r.Context().Done() work as
    	// expected in case of read timeout
    	w.Header().Set("Connection", "close")
    
    	setEventStreamHeaders(w)
    
    	logCh := make(chan log.Info, 1000)
    	peers, _ := newPeerRestClients(globalEndpoints)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  5. maven-core/src/test/resources/apiv4-repo/org/apache/maven/artifact/maven-artifact/3.0-SNAPSHOT/maven-artifact-3.0-SNAPSHOT.jar

    org.apache.maven.artifact.repository.layout.DefaultRepositoryLay org.apache.maven.artifact.repository.layout.ArtifactRepositoryLa legacy org.apache.maven.artifact.repository.layout.LegacyRepositoryLayo org.codehaus.plexus.collections.ActiveMap repositoryLayouts org.codehaus.plexus.collections.DefaultActiveMap org.apache.maven.artifact.repository.layout.ArtifactRepositoryLa org.apache.maven.artifact.handler.manager.ArtifactHandlerManag org.apache.maven.artifact.handler.manager.DefaultArtifactHandl org.ap...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 160.1K bytes
    - Viewed (0)
  6. cluster/gce/gci/configure-helper.sh

    kind: EgressSelectorConfiguration
    egressSelections:
    - name: cluster
      connection:
        proxyProtocol: GRPC
        transport:
          uds:
            udsName: /etc/srv/kubernetes/konnectivity-server/konnectivity-server.socket
    - name: controlplane
      connection:
        proxyProtocol: Direct
    - name: etcd
      connection:
        proxyProtocol: Direct
    EOF
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  7. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/apache/maven/artifact/maven-artifact/3.0-SNAPSHOT/maven-artifact-3.0-SNAPSHOT.jar

    org.apache.maven.artifact.repository.layout.DefaultRepositoryLay org.apache.maven.artifact.repository.layout.ArtifactRepositoryLa legacy org.apache.maven.artifact.repository.layout.LegacyRepositoryLayo org.codehaus.plexus.collections.ActiveMap repositoryLayouts org.codehaus.plexus.collections.DefaultActiveMap org.apache.maven.artifact.repository.layout.ArtifactRepositoryLa org.apache.maven.artifact.handler.manager.ArtifactHandlerManag org.apache.maven.artifact.handler.manager.DefaultArtifactHandl org.ap...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 16 20:15:40 UTC 2007
    - 160.1K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/CacheTest.kt

        val response1 = client.newCall(request).execute()
        val source = response1.body.source()
        assertThat(source.readUtf8()).isEqualTo("ABC")
    
        // OpenJDK 6 fails on this line, complaining that the connection isn't open yet
        val cipherSuite = response1.handshake!!.cipherSuite
        val localCerts = response1.handshake!!.localCertificates
        val serverCerts = response1.handshake!!.peerCertificates
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 108.6K bytes
    - Viewed (0)
  9. pkg/controller/garbagecollector/garbagecollector_test.go

    	if strings.Contains(request.URL.RawQuery, "watch=true") {
    		hijacker, ok := response.(http.Hijacker)
    		if !ok {
    			return
    		}
    		connection, _, err := hijacker.Hijack()
    		if err != nil {
    			return
    		}
    		defer connection.Close()
    		time.Sleep(30 * time.Second)
    	}
    }
    
    // testServerAndClientConfig returns a server that listens and a config that can reference it
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  10. tests/integration/pilot/common/routing.go

    							headlessTarget := match.Headless.Any(to)
    							if !headlessTarget && len(toClusters.ByNetwork()[fromCluster.NetworkName()]) > 1 {
    								// Conditionally check reached clusters to work around connection load balancing issues
    								// See https://github.com/istio/istio/issues/32208 for details
    								// We want to skip this for requests from the cross-network pod
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
Back to top