Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for var2 (0.17 sec)

  1. pkg/scheduler/internal/queue/scheduling_queue_test.go

    	)
    	medPriorityPodInfo = mustNewPodInfo(
    		st.MakePod().Name("mpp").Namespace("ns2").UID("mppns2").Annotation("annot2", "val2").Priority(mediumPriority).NominatedNodeName("node1").Obj(),
    	)
    	unschedulablePodInfo = mustNewPodInfo(
    		st.MakePod().Name("up").Namespace("ns1").UID("upns1").Annotation("annot2", "val2").Priority(lowPriority).NominatedNodeName("node1").Condition(v1.PodScheduled, v1.ConditionFalse, v1.PodReasonUnschedulable).Obj(),
    	)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    	}{
    		{
    			key: computePodKey(foo1),
    			obj: foo1,
    		},
    		{
    			key: computePodKey(bar2),
    			obj: bar2,
    		},
    		{
    			key: computePodKey(foo3),
    			obj: foo3,
    		},
    		{
    			key: computePodKey(foo4),
    			obj: foo4,
    		},
    	}
    
    	var currentRV string
    	for i, ps := range preset {
    		preset[i].storedObj = &example.Pod{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

                    }
                    task jar2(type: Jar) {
                        archiveFileName = 'lib2.jar'
                    }
                    tasks.withType(Jar) {
                        destinationDirectory = buildDir
                    }
                    artifacts {
                        compile jar1
                        compile jar2
                    }
                }
            """
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  4. cluster/gce/gci/configure-helper.sh

    function setup-kubelet-dir {
        echo "Making /var/lib/kubelet executable for kubelet"
        mount -B /var/lib/kubelet /var/lib/kubelet/
        mount -B -o remount,exec,suid,dev /var/lib/kubelet
    
        # TODO(#60123): The kubelet should create the cert-dir directory if it doesn't exist
        mkdir -p /var/lib/kubelet/pki/
    
        # Mount /var/lib/kubelet/pki on a tmpfs so it doesn't persist across
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  5. pkg/printers/internalversion/printers_test.go

    				ObjectMeta: metav1.ObjectMeta{
    					Name:              "vac2",
    					CreationTimestamp: metav1.Time{Time: time.Now().Add(-3e11)},
    				},
    				DriverName: "fake",
    				Parameters: map[string]string{
    					"iops":       "500",
    					"throughput": "50MiB/s",
    				},
    			},
    			expected: []metav1.TableRow{{Cells: []interface{}{"vac2", "fake", "5m"}}},
    		},
    	}
    
    	for i, test := range tests {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  6. src/net/http/transport_test.go

    	defer func(d time.Duration) {
    		*MaxWriteWaitBeforeConnReuse = d
    	}(*MaxWriteWaitBeforeConnReuse)
    	*MaxWriteWaitBeforeConnReuse = 10 * time.Millisecond
    	var sconn struct {
    		sync.Mutex
    		c net.Conn
    	}
    	var getOkay bool
    	var copying sync.WaitGroup
    	closeConn := func() {
    		sconn.Lock()
    		defer sconn.Unlock()
    		if sconn.c != nil {
    			sconn.c.Close()
    			sconn.c = nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  7. pkg/controller/job/job_controller_test.go

    	"k8s.io/kubernetes/pkg/controller/testutil"
    	"k8s.io/kubernetes/pkg/features"
    	"k8s.io/utils/clock"
    	clocktesting "k8s.io/utils/clock/testing"
    	"k8s.io/utils/ptr"
    )
    
    var realClock = &clock.RealClock{}
    var alwaysReady = func() bool { return true }
    
    const fastSyncJobBatchPeriod = 10 * time.Millisecond
    const fastJobApiBackoff = 10 * time.Millisecond
    const fastRequeue = 10 * time.Millisecond
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
Back to top