Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 176 for 10$ (2.81 sec)

  1. pkg/kubelet/kubelet_node_status_test.go

    	clock.Step(10 * time.Second)
    	assert.Equal(t, strings.Join(podCIDRs, ","), kubelet.runtimeState.podCIDR(), "Pod CIDR should already be updated")
    
    	assert.NoError(t, kubelet.updateNodeStatus(ctx))
    	// Only 1 more action (There were 9 actions before).
    	actions = kubeClient.Actions()
    	assert.Len(t, actions, 10)
    	assert.IsType(t, core.GetActionImpl{}, actions[9])
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  2. doc/go1.17_spec.html

    var u2 = 1<<s != 1.0           // illegal: 1 has type float64, cannot shift
    var v float32 = 1<<s           // illegal: 1 has type float32, cannot shift
    var w int64 = 1.0<<33          // 1.0<<33 is a constant shift expression; w == 1<<33
    var x = a[1.0<<s]              // panics: 1.0 has type int, but 1<<33 overflows array bounds
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/test/testdata/copy_test.go

    	}
    }
    
    type T10 struct {
    	pre  [8]byte
    	mid  [10]byte
    	post [8]byte
    }
    
    //go:noinline
    func t10copy_ssa(y, x *[10]byte) {
    	*y = *x
    }
    func testCopy10(t *testing.T) {
    	a := T10{[8]byte{201, 202, 203, 204, 205, 206, 207, 208}, [10]byte{0, 1, 2, 3, 4, 5, 6, 7, 8, 9}, [8]byte{211, 212, 213, 214, 215, 216, 217, 218}}
    	x := [10]byte{100, 101, 102, 103, 104, 105, 106, 107, 108, 109}
    	t10copy_ssa(&a.mid, &x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 150.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

               (*window_strides)[batch_dim] == 1 &&
               (*window_strides)[channel_dim] == 1 && padding[2 * batch_dim] == 0 &&
               padding[2 * batch_dim + 1] == 0 && padding[2 * channel_dim] == 0 &&
               padding[2 * channel_dim + 1] == 0;
      };
    
      bool is_pool2d = rank == 4;
      if (verify_batch_channel_dims(0, rank - 1)) {
        *data_format = is_pool2d ? "NHWC" : "NDHWC";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/memorymanager/policy_static_test.go

    							Free:           10240 * mb,
    							Reserved:       0,
    							SystemReserved: 512 * mb,
    							TotalMemSize:   10 * gb,
    						},
    						hugepages1Gi: {
    							Allocatable:    10 * gb,
    							Free:           10 * gb,
    							Reserved:       0,
    							SystemReserved: 0,
    							TotalMemSize:   10 * gb,
    						},
    					},
    					Cells: []int{0},
    				},
    			},
    			expectedMachineState: state.NUMANodeMap{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 05:49:15 UTC 2023
    - 100.4K bytes
    - Viewed (0)
  6. pkg/controller/job/job_controller_test.go

    	"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
    
    // testFinishedAt represents time one second later than unix epoch
    // this will be used in various test cases where we don't want back-off to kick in
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/inst.json

    {"Name":"LDR (register, SIMD&FP)","Bits":"10:2|1|1|1|1|0|0|01:2|1|Rm:5|option:3|S|1|0|Rn:5|Rt:5","Arch":"32-bit variant","Syntax":"LDR <St>, [<Xn|SP>, (<Wm>|<Xm>){, <extend> {<amount>}}]","Code":"","Alias":""},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 234.7K bytes
    - Viewed (0)
  8. src/net/http/transport_test.go

    		}
    		defer resp.Body.Close()
    		_, err = io.ReadAll(resp.Body)
    		if err != nil {
    			t.Fatalf("read body failed: %v", err)
    		}
    	}
    
    	wg := sync.WaitGroup{}
    	for i := 0; i < 10; i++ {
    		wg.Add(1)
    		go func() {
    			defer wg.Done()
    			doReq()
    		}()
    	}
    	wg.Wait()
    
    	expected := int32(tr.MaxConnsPerHost)
    	if dialCnt != expected {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIntegrationTest.groovy

            succeeds "queryFiles"
    
            then:
            output.count("Creating FileSizer") == 1
            output.count("Transforming") == 1
            output.count("Transforming test1-1.0.jar to test1-1.0.jar.txt") == 1
    
            when:
            server.resetExpectations()
            m2.pom.expectGet()
            m2.artifact.expectGet()
    
            succeeds "queryView"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:42 UTC 2023
    - 100.8K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_pods_test.go

    					UID:                0,
    					GID:                0,
    					SupplementalGroups: []int64{10},
    				},
    			}),
    			true,
    			expectedContainerStatuses(&v1.ContainerUser{
    				Linux: &v1.LinuxContainerUser{
    					UID:                0,
    					GID:                0,
    					SupplementalGroups: []int64{10},
    				},
    			}),
    		},
    	} {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
Back to top