Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for GetWork (0.29 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. pilot/pkg/networking/core/gateway_test.go

    					{
    						TotalMatch: true,
    						NetworkFilters: []string{
    							"extenstions.istio.io/wasmplugin/istio-system.wasm-network-authn",
    							"extenstions.istio.io/wasmplugin/istio-system.wasm-network-authz",
    							"extenstions.istio.io/wasmplugin/istio-system.wasm-network-stats",
    							wellknown.HTTPConnectionManager,
    						},
    						HTTPFilters: []string{
    							xdsfilters.MxFilterName,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  6. tests/integration/pilot/common/routing.go

      - name: tcp
        port: {{.TcpPort}}
        targetPort: {{.TcpTargetPort}}
      selector:
        test.istio.io/class: standard
        {{- if .Network }}
        topology.istio.io/network: {{.Network}}
    	{{- end }}
    `, map[string]any{
    				"Service":        svcName,
    				"Network":        c.Config().Cluster.NetworkName(),
    				"Port":           ports.HTTP.ServicePort,
    				"TargetPort":     ports.HTTP.WorkloadPort,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top