Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 43 for var2 (0.09 sec)

  1. src/net/http/cookiejar/jar_test.go

    		}
    		setCookies[i] = cookies[0]
    	}
    	jar.setCookies(mustParseURL(test.fromURL), setCookies, now)
    	now = now.Add(1001 * time.Millisecond)
    
    	// Serialize non-expired entries in the form "name1=val1 name2=val2".
    	var cs []string
    	for _, submap := range jar.entries {
    		for _, cookie := range submap {
    			if !cookie.Expires.After(now) {
    				continue
    			}
    
    			v := cookie.Value
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 34K bytes
    - Viewed (0)
  2. internal/bucket/lifecycle/lifecycle_test.go

    		},
    		{ // Valid lifecycle config
    			inputConfig: `<LifecycleConfiguration>
    					  <Rule>
    					  <Filter>
    					  <And><Tag><Key>key1</Key><Value>val1</Value><Key>key2</Key><Value>val2</Value></Tag></And>
    		                          </Filter>
    		                          <Expiration><Days>3</Days></Expiration>
    		                          </Rule>
    		                          </LifecycleConfiguration>`,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:48 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  3. pkg/apis/storage/validation/validation_test.go

    				Parameters: map[string]string{
    					"foo": "bar1",
    				},
    			},
    			newClass: &storage.VolumeAttributesClass{
    				DriverName: "kubernetes.io/foo",
    				Parameters: map[string]string{
    					"foo": "bar2",
    				},
    			},
    			shouldSucceed: false,
    		},
    		"invalid parameter update which add new item": {
    			oldClass: &storage.VolumeAttributesClass{
    				DriverName: "kubernetes.io/foo",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 69.7K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/devicemanager/manager_test.go

    						resp := new(pluginapi.ContainerAllocateResponse)
    						resp.Envs = make(map[string]string)
    						for _, dev := range devs {
    							switch dev {
    							case "dev3":
    								resp.Envs["key2"] = "val2"
    
    							case "dev4":
    								resp.Envs["key2"] = "val3"
    							}
    						}
    						resps := new(pluginapi.AllocateResponse)
    						resps.ContainerResponses = append(resps.ContainerResponses, resp)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  5. 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)
  6. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

      // CHECK: [[VAL1:%.+]] = "mhlo.if"([[VAL0]]) ({
      %1 = "tf.IfRegion"(%0) ({
        // CHECK: [[VAL2:%.+]] = mhlo.log [[ARG0]]
        %2 = "tf.Log"(%arg0) : (tensor<f32>) -> tensor<f32>
        // CHECK: mhlo.return [[VAL2]]
        "tf.Yield"(%2) : (tensor<f32>) -> ()
      }, {
        // CHECK: [[VAL3:%.+]] = mhlo.exponential [[ARG1]]
        %2 = "tf.Exp"(%arg1) : (tensor<f32>) -> tensor<f32>
        // CHECK: mhlo.return [[VAL3]]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/rewriteARM64.go

    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	b := v.Block
    	config := b.Func.Config
    	// match: (STP [off1] {sym} (ADDconst [off2] ptr) val1 val2 mem)
    	// cond: is32Bit(int64(off1)+off2) && (ptr.Op != OpSB || !config.ctxt.Flag_dynlink)
    	// result: (STP [off1+int32(off2)] {sym} ptr val1 val2 mem)
    	for {
    		off1 := auxIntToInt32(v.AuxInt)
    		sym := auxToSym(v.Aux)
    		if v_0.Op != OpARM64ADDconst {
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 608.6K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. pkg/controller/daemon/daemon_controller_test.go

    	now := manager.failedPodsBackoff.Clock.Now()
    	hash, _ := currentDSHash(manager, ds)
    	// log all the pods in the store
    	var lines []string
    	for _, obj := range manager.podStore.List() {
    		pod := obj.(*v1.Pod)
    		if pod.CreationTimestamp.IsZero() {
    			pod.CreationTimestamp.Time = now
    		}
    		var readyLast time.Time
    		ready := podutil.IsPodReady(pod)
    		if ready {
    			if c := podutil.GetPodReadyCondition(pod.Status); c != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
Back to top