Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 1,635 for net (0.03 sec)

  1. pkg/istio-agent/health/health_probers.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package health
    
    import (
    	"context"
    	"crypto/tls"
    	"fmt"
    	"net"
    	"net/http"
    	"net/url"
    	"os/exec"
    	"strconv"
    	"time"
    
    	"istio.io/api/networking/v1alpha3"
    	"istio.io/istio/pilot/cmd/pilot-agent/status"
    	"istio.io/istio/pilot/cmd/pilot-agent/status/ready"
    	"istio.io/istio/pkg/log"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/DefaultKeyServers.java

    import com.google.common.collect.ImmutableList;
    import org.gradle.internal.UncheckedException;
    
    import java.net.URI;
    import java.net.URISyntaxException;
    import java.util.List;
    
    public abstract class DefaultKeyServers {
        private final static List<URI> DEFAULT_KEYSERVERS = ImmutableList.of(
            uri("hkp://ha.pool.sks-keyservers.net"),
            uri("https://keyserver.ubuntu.com"),
            uri("https://keys.openpgp.org"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. src/runtime/testdata/testprognet/waiters.go

    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    import (
    	"fmt"
    	"io"
    	"log"
    	"net"
    	"internal/runtime/atomic"
    	"sync"
    	"time"
    	_ "unsafe" // for go:linkname
    )
    
    // The bug is that netpollWaiters increases monotonically.
    // This doesn't cause a problem until it overflows.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. internal/event/target/kafka_scram_client_contrib.go

    	case "sha512":
    		config.Net.SASL.SCRAMClientGeneratorFunc = func() sarama.SCRAMClient { return &XDGSCRAMClient{HashGeneratorFcn: KafkaSHA512} }
    		config.Net.SASL.Mechanism = sarama.SASLMechanism(sarama.SASLTypeSCRAMSHA512)
    	case "sha256":
    		config.Net.SASL.SCRAMClientGeneratorFunc = func() sarama.SCRAMClient { return &XDGSCRAMClient{HashGeneratorFcn: KafkaSHA256} }
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Nov 09 04:04:01 UTC 2023
    - 3.2K bytes
    - Viewed (1)
  5. okhttp/src/main/kotlin/okhttp3/internal/authenticator/JavaNetAuthenticator.kt

     * limitations under the License.
     */
    package okhttp3.internal.authenticator
    
    import java.io.IOException
    import java.net.Authenticator
    import java.net.InetAddress
    import java.net.InetSocketAddress
    import java.net.Proxy
    import okhttp3.Credentials
    import okhttp3.Dns
    import okhttp3.HttpUrl
    import okhttp3.Request
    import okhttp3.Response
    import okhttp3.Route
    
    /**
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  6. pkg/controller/nodeipam/nolegacyprovider.go

    }
    
    func createLegacyIPAM(
    	ctx context.Context,
    	ic *Controller,
    	nodeInformer coreinformers.NodeInformer,
    	cloud cloudprovider.Interface,
    	kubeClient clientset.Interface,
    	clusterCIDRs []*net.IPNet,
    	serviceCIDR *net.IPNet,
    	nodeCIDRMaskSizes []int,
    ) (*fakeController, error) {
    	return nil, errors.New("Error trying to Init(): legacy cloud provider support disabled at build time")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 13:03:53 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/testdata/externalcontrolplane-missing-urls.yaml

      - v1beta1
      - v1
      clientConfig:
        url: https://test.com/inject/cluster/your-cluster-name/net/network1
      failurePolicy: Fail
      name: rev.object.sidecar-injector.istio.io
    - admissionReviewVersions:
      - v1beta1
      - v1
      clientConfig:
        url: https://test.com/inject/cluster/your-cluster-name/net/network1
      failurePolicy: Fail
      name: namespace.sidecar-injector.istio.io
    - admissionReviewVersions:
      - v1beta1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 11:41:38 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. pkg/hbone/server.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package hbone
    
    import (
    	"context"
    	"net"
    	"net/http"
    	"sync"
    	"time"
    
    	"golang.org/x/net/http2"
    
    	"istio.io/istio/pkg/h2c"
    )
    
    func NewServer() *http.Server {
    	// Need to set this to allow timeout on the read header
    	h1 := &http.Transport{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 10 02:05:07 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  9. okhttp-testing-support/src/main/kotlin/okhttp3/DelegatingSSLSocketFactory.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package okhttp3
    
    import java.io.IOException
    import java.net.InetAddress
    import java.net.Socket
    import javax.net.ssl.SSLSocket
    import javax.net.ssl.SSLSocketFactory
    
    /**
     * A [SSLSocketFactory] that delegates calls. Sockets can be configured after creation by
     * overriding [.configureSocket].
     */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/SocketChannelTest.kt

    import assertk.assertions.isNotNull
    import java.io.IOException
    import java.net.InetAddress
    import java.util.concurrent.CompletableFuture
    import java.util.concurrent.TimeUnit.SECONDS
    import javax.net.ssl.SNIHostName
    import javax.net.ssl.SNIMatcher
    import javax.net.ssl.SNIServerName
    import javax.net.ssl.SSLSocket
    import javax.net.ssl.StandardConstants
    import mockwebserver3.MockResponse
    import mockwebserver3.MockWebServer
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top