Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for lost (0.05 sec)

  1. pkg/kubelet/kubelet_pods.go

    	}, nil
    }
    
    // ensureHostsFile ensures that the given host file has an up-to-date ip, host
    // name, and domain name.
    func ensureHostsFile(fileName string, hostIPs []string, hostName, hostDomainName string, hostAliases []v1.HostAlias, useHostNetwork bool) error {
    	var hostsFileContent []byte
    	var err error
    
    	if useHostNetwork {
    		// if Pod is using host network, read hosts file from the node's filesystem.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet.go

    	if err != nil {
    		return nil, err
    	}
    	klet.admitHandlers.AddPodAdmitHandler(shutdownAdmitHandler)
    
    	// Finally, put the most recent version of the config on the Kubelet, so
    	// people can see how it was configured.
    	klet.kubeletConfiguration = *kubeCfg
    
    	// Generating the status funcs should be the last thing we do,
    	// since this relies on the rest of the Kubelet having been constructed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

        return result_type.getElementType();
      return operand_handle_type;
    }
    
    // Checks if one tensor type can refine another type for tf.While/
    // tf.WhileRegion. If rank differs or static dimensions can be lost, the other
    // type cannot be used for refinement.
    bool CanWhileTypeBeRefinedWith(TensorType current_type,
                                   TensorType potential_refined_type) {
      if (!current_type.hasRank()) return true;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  4. pkg/printers/internalversion/printers_test.go

    			},
    			options: printers.GenerateOptions{},
    			// Columns: Last Seen, Type, Reason, Object, Message
    			expected: []metav1.TableRow{{Cells: []interface{}{"2d", "Normal", "Event Reason", "pod/Pod Name", "Message Data"}}},
    		},
    		// Basic event; generate options=Wide
    		{
    			event: api.Event{
    				Source: api.EventSource{
    					Component: "kubelet",
    					Host:      "Node1",
    				},
    				InvolvedObject: api.ObjectReference{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  5. src/net/http/serve_test.go

    		{"HTTP/1.1", "Host: foo-bar_baz.com\r\n", 200},
    		{"HTTP/1.1", "Host: foo.com:80\r\n", 200},
    		{"HTTP/1.1", "Host: ::1\r\n", 200},
    		{"HTTP/1.1", "Host: [::1]\r\n", 200}, // questionable without port, but accept it
    		{"HTTP/1.1", "Host: [::1]:80\r\n", 200},
    		{"HTTP/1.1", "Host: [::1%25en0]:80\r\n", 200},
    		{"HTTP/1.1", "Host: 1.2.3.4\r\n", 200},
    		{"HTTP/1.1", "Host: \x06\r\n", 400},
    		{"HTTP/1.1", "Host: \xff\r\n", 400},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  6. pkg/printers/internalversion/printers.go

    }
    
    func formatHosts(rules []networking.IngressRule) string {
    	list := []string{}
    	max := 3
    	more := false
    	for _, rule := range rules {
    		if len(list) == max {
    			more = true
    		}
    		if !more && len(rule.Host) != 0 {
    			list = append(list, rule.Host)
    		}
    	}
    	if len(list) == 0 {
    		return "*"
    	}
    	ret := strings.Join(list, ",")
    	if more {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  7. cluster/gce/util.sh

      kube::util::read-array INSTANCE_GROUPS < <(gcloud compute instance-groups managed list \
        --project "${PROJECT}" \
        --filter "name ~ '${NODE_INSTANCE_PREFIX}-.+' AND zone:(${ZONE})" \
        --format='value(name)' || true)
      WINDOWS_INSTANCE_GROUPS=()
      kube::util::read-array WINDOWS_INSTANCE_GROUPS < <(gcloud compute instance-groups managed list \
        --project "${PROJECT}" \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  8. samples/addons/grafana.yaml

                name: istio-services-grafana-dashboards
            - name: storage
              emptyDir: {}
    
    ---
    
    apiVersion: v1
    data:
      istio-performance-dashboard.json: |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  9. src/cmd/go/alldocs.go

    //
    // See also: go build, go get, go clean.
    //
    // # List packages or modules
    //
    // Usage:
    //
    //	go list [-f format] [-json] [-m] [list flags] [build flags] [packages]
    //
    // List lists the named packages, one per line.
    // The most commonly-used flags are -f and -json, which control the form
    // of the output printed for each package. Other list flags, documented below,
    // control more specific details.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

    converted to operations that create a new tensor representing the list.
    
    In the current implementation, the resulting operations are statically shaped,
    which means it must be possible to infer a bound on the full shape of the
    TensorList. That is, the `element_shape` and `num_elements` arguments to a
    tensor list creation op are constant.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
Back to top