Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for Usages (0.14 sec)

  1. cluster/gce/util.sh

        # family.
        kube_master_image="${KUBE_GCE_MASTER_IMAGE:-${GCI_VERSION}}"
        if [[ -z "${kube_master_image}" ]]; then
          kube_master_image=$(gcloud compute images list --project="${MASTER_IMAGE_PROJECT}" --no-standard-images --filter="family:${MASTER_IMAGE_FAMILY}" --format 'value(name)')
        fi
    
        echo "Using image: ${kube_master_image} from project: ${MASTER_IMAGE_PROJECT} as master image" >&2
    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. pkg/printers/internalversion/printers.go

    		{Name: "Name", Type: "string", Format: "name", Description: metav1.ObjectMeta{}.SwaggerDoc()["name"]},
    		{Name: "Containers", Type: "string", Description: "Names of each container in the template."},
    		{Name: "Images", Type: "string", Description: "Images referenced by each container in the template."},
    		{Name: "Pod Labels", Type: "string", Description: "The labels for the pod template."},
    	}
    	_ = h.TableHandler(podTemplateColumnDefinitions, printPodTemplate)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  3. tests/integration/pilot/common/routing.go

    		},
    		setupOpts: setHostHeader,
    	})
    
    	// ---------------------------------------------
    	// Usage 2: using `[]` as a separator test cases
    	// ---------------------------------------------
    
    	t.RunTraffic(TrafficTestCase{
    		name:             "usage2: matched with nested claims:200",
    		targetMatchers:   matchers,
    		workloadAgnostic: true,
    		viaIngress:       true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_node_status_test.go

    			},
    			Addresses: []v1.NodeAddress{
    				{Type: v1.NodeInternalIP, Address: "127.0.0.1"},
    				{Type: v1.NodeHostName, Address: testKubeletHostname},
    			},
    			// images will be sorted from max to min in node status.
    			Images: []v1.ContainerImage{
    				{
    					Names:     []string{"registry.k8s.io:v1", "registry.k8s.io:v2"},
    					SizeBytes: 123,
    				},
    				{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  5. src/cmd/go/alldocs.go

    //
    // Use "go help <topic>" for more information about that topic.
    //
    // # Start a bug report
    //
    // Usage:
    //
    //	go bug
    //
    // Bug opens the default browser and starts a new bug report.
    // The report includes useful system information.
    //
    // # Compile packages and dependencies
    //
    // Usage:
    //
    //	go build [-o output] [build flags] [packages]
    //
    // Build compiles the packages named by the import paths,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  6. pkg/printers/internalversion/printers_test.go

    					Spec: api.PodSpec{
    						Containers: []api.Container{},
    					},
    				},
    			},
    
    			options: printers.GenerateOptions{},
    			// Columns: Name, Containers, Images, Pod Labels
    			expected: []metav1.TableRow{{Cells: []interface{}{"pod-template-1", "", "", "<none>"}}},
    		},
    		// Test basic pod template with two containers.
    		{
    			podTemplate: api.PodTemplate{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_test.go

    const (
    	testKubeletHostname = "127.0.0.1"
    	testKubeletHostIP   = "127.0.0.1"
    	testKubeletHostIPv6 = "::1"
    
    	// TODO(harry) any global place for these two?
    	// Reasonable size range of all container images. 90%ile of images on dockerhub drops into this range.
    	minImgSize int64 = 23 * 1024 * 1024
    	maxImgSize int64 = 1000 * 1024 * 1024
    )
    
    // fakeImageGCManager is a fake image gc manager for testing. It will return image
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet.go

    	"k8s.io/kubernetes/pkg/kubelet/configmap"
    	kubecontainer "k8s.io/kubernetes/pkg/kubelet/container"
    	"k8s.io/kubernetes/pkg/kubelet/events"
    	"k8s.io/kubernetes/pkg/kubelet/eviction"
    	"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/metrics"
    	"k8s.io/kubernetes/pkg/kubelet/metrics/collectors"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  9. src/net/http/server.go

    // another pattern that is already registered, those functions panic.
    //
    // As an example of the general rule, "/images/thumbnails/" is more specific than "/images/",
    // so both can be registered.
    // The former matches paths beginning with "/images/thumbnails/"
    // and the latter will match any other path in the "/images/" subtree.
    //
    // As another example, consider the patterns "GET /" and "/index.html":
    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/controller/podautoscaler/horizontal_test.go

    					{
    						Name: "container1",
    						Usage: v1.ResourceList{
    							v1.ResourceCPU: *resource.NewMilliQuantity(
    								int64(cpu/2),
    								resource.DecimalSI),
    							v1.ResourceMemory: *resource.NewQuantity(
    								int64(1024*1024/2),
    								resource.BinarySI),
    						},
    					},
    					{
    						Name: "container2",
    						Usage: v1.ResourceList{
    							v1.ResourceCPU: *resource.NewMilliQuantity(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
Back to top