Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for InNetwork (0.18 sec)

  1. cluster/gce/util.sh

          --network "${NETWORK}" \
          --source-ranges "10.0.0.0/8" \
          --allow "tcp:1-65535,udp:1-65535,icmp" \
          --target-tags "${NODE_TAG}"&
      fi
    
      if ! gcloud compute firewall-rules describe --project "${NETWORK_PROJECT}" "${NETWORK}-default-ssh" &>/dev/null; then
        gcloud compute firewall-rules create "${NETWORK}-default-ssh" \
          --project "${NETWORK_PROJECT}" \
          --network "${NETWORK}" \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster_builder_test.go

    			Namespace: "test-ns",
    		},
    	}
    
    	buildMetadata := func(networkID network.ID, tlsMode, workloadname, namespace string,
    		clusterID istiocluster.ID, lbls labels.Instance,
    	) *core.Metadata {
    		newmeta := &core.Metadata{}
    		util.AppendLbEndpointMetadata(&model.EndpointMetadata{
    			Network:      networkID,
    			TLSMode:      tlsMode,
    			WorkloadName: workloadname,
    			Namespace:    namespace,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  3. src/net/http/transport_test.go

    		PutIdleConn:  func(err error) { t.Logf("PutIdleConn(%v)", err) },
    		ConnectStart: func(network, addr string) { t.Logf("ConnectStart(%q, %q)", network, addr) },
    		ConnectDone:  func(network, addr string, err error) { t.Logf("ConnectDone(%q, %q, %v)", network, addr, err) },
    	}
    	ctx := httptrace.WithClientTrace(context.Background(), trace)
    
    	for i := 0; i < 2; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  4. cmd/admin-handlers.go

    	connectTime := time.Now()
    	for {
    		n, err := io.CopyN(xioutil.Discard, r.Body, 128*humanize.KiByte)
    		if err != nil && err != io.EOF && err != io.ErrUnexpectedEOF {
    			// would mean the network is not stable. Logging here will help in debugging network issues.
    			if time.Since(connectTime) < (globalNetPerfMinDuration - time.Second) {
    				adminLogIf(ctx, err)
    			}
    		}
    		totalRx += n
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  5. cluster/gce/gci/configure-helper.sh

        use_cloud_config="true"
        cat <<EOF >>/etc/gce.conf
    network-project-id = ${NETWORK_PROJECT_ID}
    EOF
      fi
      if [[ -n "${STACK_TYPE:-}" ]]; then
        use_cloud_config="true"
        cat <<EOF >>/etc/gce.conf
    stack-type = ${STACK_TYPE}
    EOF
      fi
      if [[ -n "${NODE_NETWORK:-}" ]]; then
        use_cloud_config="true"
        cat <<EOF >>/etc/gce.conf
    network-name = ${NODE_NETWORK}
    EOF
      fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet.go

    	if networkReady == nil || !networkReady.Status {
    		klogErrorS(nil, "Container runtime network not ready", "networkReady", networkReady)
    		kl.runtimeState.setNetworkState(fmt.Errorf("container runtime network not ready: %v", networkReady))
    	} else {
    		// Set nil if the container runtime network is ready.
    		kl.runtimeState.setNetworkState(nil)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  7. src/net/http/server.go

    // If ServeHTTP panics, the server (the caller of ServeHTTP) assumes
    // that the effect of the panic was isolated to the active request.
    // It recovers the panic, logs a stack trace to the server error log,
    // and either closes the network connection or sends an HTTP/2
    // RST_STREAM, depending on the HTTP protocol. To abort a handler so
    // the client sees an interrupted response but the server doesn't log
    // an error, panic with the value [ErrAbortHandler].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_test.go

    	"k8s.io/kubernetes/pkg/kubelet/images"
    	"k8s.io/kubernetes/pkg/kubelet/kuberuntime"
    	"k8s.io/kubernetes/pkg/kubelet/lifecycle"
    	"k8s.io/kubernetes/pkg/kubelet/logs"
    	"k8s.io/kubernetes/pkg/kubelet/network/dns"
    	"k8s.io/kubernetes/pkg/kubelet/nodeshutdown"
    	"k8s.io/kubernetes/pkg/kubelet/pleg"
    	"k8s.io/kubernetes/pkg/kubelet/pluginmanager"
    	kubepod "k8s.io/kubernetes/pkg/kubelet/pod"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  9. src/runtime/proc.go

    		}
    	}
    	if sched.runqsize != 0 {
    		unlock(&sched.lock)
    		startm(pp, false, false)
    		return
    	}
    	// If this is the last running P and nobody is polling network,
    	// need to wakeup another M to poll network.
    	if sched.npidle.Load() == gomaxprocs-1 && sched.lastpoll.Load() != 0 {
    		unlock(&sched.lock)
    		startm(pp, false, false)
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_pods.go

    	if useHostNetwork {
    		// if Pod is using host network, read hosts file from the node's filesystem.
    		// `etcHostsPath` references the location of the hosts file on the node.
    		// `/etc/hosts` for *nix systems.
    		hostsFileContent, err = nodeHostsFileContent(etcHostsPath, hostAliases)
    		if err != nil {
    			return err
    		}
    	} else {
    		// if Pod is not using host network, create a managed hosts file with Pod IP and other information.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
Back to top