Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for lake (0.15 sec)

  1. pkg/printers/internalversion/printers_test.go

    					ObjectMeta: metav1.ObjectMeta{Name: "pod-template-2"},
    					Spec: api.PodSpec{
    						Containers: []api.Container{
    							{
    								Name:  "fake-container1",
    								Image: "fake-image1",
    							},
    							{
    								Name:  "fake-container2",
    								Image: "fake-image2",
    							},
    						},
    					},
    				},
    			},
    
    			options: printers.GenerateOptions{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_test.go

    						{
    							Name:       "fake/fake-device",
    							DevicePath: "fake/path",
    						},
    					},
    				},
    			},
    		},
    	}
    	kubelet.recorder = fakeRecorder
    	if err := kubelet.setupDataDirs(); err != nil {
    		t.Fatalf("can't initialize kubelet data dirs: %v", err)
    	}
    	kubelet.daemonEndpoints = &v1.NodeDaemonEndpoints{}
    
    	kubelet.cadvisor = &cadvisortest.Fake{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  3. src/cmd/go/alldocs.go

    //	CGO_CPPFLAGS, CGO_CPPFLAGS_ALLOW, CGO_CPPFLAGS_DISALLOW
    //		Like CGO_CFLAGS, CGO_CFLAGS_ALLOW, and CGO_CFLAGS_DISALLOW,
    //		but for the C preprocessor.
    //	CGO_CXXFLAGS, CGO_CXXFLAGS_ALLOW, CGO_CXXFLAGS_DISALLOW
    //		Like CGO_CFLAGS, CGO_CFLAGS_ALLOW, and CGO_CFLAGS_DISALLOW,
    //		but for the C++ compiler.
    //	CGO_FFLAGS, CGO_FFLAGS_ALLOW, CGO_FFLAGS_DISALLOW
    //		Like CGO_CFLAGS, CGO_CFLAGS_ALLOW, and CGO_CFLAGS_DISALLOW,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  4. pkg/controller/job/job_controller_test.go

    	manager.podStoreSynced = alwaysReady
    	manager.jobStoreSynced = alwaysReady
    
    	var testJob batch.Job
    	received := make(chan struct{})
    
    	// The update sent through the fakeWatcher should make its way into the workqueue,
    	// and eventually into the syncHandler.
    	manager.syncHandler = func(ctx context.Context, key string) error {
    		defer close(received)
    		ns, name, err := cache.SplitMetaNamespaceKey(key)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  5. pkg/scheduler/internal/queue/scheduling_queue_test.go

    	return nil
    }
    
    // makeEmptyQueueingHintMapPerProfile initializes an empty QueueingHintMapPerProfile for "" profile name.
    func makeEmptyQueueingHintMapPerProfile() QueueingHintMapPerProfile {
    	m := make(QueueingHintMapPerProfile)
    	m[""] = make(QueueingHintMap)
    	return m
    }
    
    func TestPriorityQueue_Add(t *testing.T) {
    	objs := []runtime.Object{medPriorityPodInfo.Pod, unschedulablePodInfo.Pod, highPriorityPodInfo.Pod}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  6. cluster/gce/gci/configure-helper.sh

      local -r fluentd_gcp_scaler_yaml="${dst_dir}/fluentd-gcp/scaler-deployment.yaml"
      # Ingest logs against new resources like "k8s_container" and "k8s_node" if
      # LOGGING_STACKDRIVER_RESOURCE_TYPES is "new".
      # Ingest logs against old resources like "gke_container" and "gce_instance" if
      # LOGGING_STACKDRIVER_RESOURCE_TYPES is "old".
      if [[ "${LOGGING_STACKDRIVER_RESOURCE_TYPES:-old}" == "new" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  7. cluster/gce/util.sh

    function print-windows-node-kubelet-config {
      # Notes:
      # - We don't run any static pods on Windows nodes yet.
    
      # TODO(mtaufen): Does it make any sense to set eviction thresholds for inodes
      # on Windows?
    
      # TODO(pjh, mtaufen): It may make sense to use a different hairpin mode on
      # Windows. We're currently using hairpin-veth, but
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
Back to top