Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of about 10,000 for 0$ (0.04 sec)

  1. src/internal/goos/zgoos_windows.go

    package goos
    
    const GOOS = `windows`
    
    const IsAix = 0
    const IsAndroid = 0
    const IsDarwin = 0
    const IsDragonfly = 0
    const IsFreebsd = 0
    const IsHurd = 0
    const IsIllumos = 0
    const IsIos = 0
    const IsJs = 0
    const IsLinux = 0
    const IsNacl = 0
    const IsNetbsd = 0
    const IsOpenbsd = 0
    const IsPlan9 = 0
    const IsSolaris = 0
    const IsWasip1 = 0
    const IsWindows = 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 30 18:50:57 UTC 2023
    - 457 bytes
    - Viewed (0)
  2. src/cmd/compile/internal/inline/inlheur/testdata/props/calls.go

    func T_calls_in_loops(x int, q []string) {
    	for i := 0; i < x; i++ {
    		callee(i)
    	}
    	for _, s := range q {
    		callee(len(s))
    	}
    }
    
    // calls.go T_calls_in_pseudo_loop 48 0 1
    // <endpropsdump>
    // {"Flags":0,"ParamFlags":[0,0],"ResultFlags":null}
    // callsite: calls.go:50:9|0 flagstr "" flagval 0 score 2 mask 0 maskstr ""
    // callsite: calls.go:54:9|1 flagstr "" flagval 0 score 2 mask 0 maskstr ""
    // <endcallsites>
    // <endfuncpreamble>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 20:15:25 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/memorymanager/policy_static_test.go

    							Free:           gb,
    							Reserved:       0,
    							SystemReserved: 0,
    							TotalMemSize:   gb,
    						},
    					},
    					NumberOfAssignments: 0,
    					Cells:               []int{0},
    				},
    			},
    			systemReserved: systemReservedMemory{
    				0: map[v1.ResourceName]uint64{
    					v1.ResourceMemory: 512 * mb,
    				},
    			},
    			machineInfo: &cadvisorapi.MachineInfo{
    				Topology: []cadvisorapi.Node{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 05:49:15 UTC 2023
    - 100.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/insert_fallback_tensor_copy.mlir

      %5 = tfrt_fallback_async.executeop key(1) cost(512) device("/job:localhost/replica:0/task:0/device:CPU:0") "tf.AddV2"(%0, %0) {T = f32} : 1
      %6 = tfrt_fallback_async.executeop key(1) cost(512) device("/job:localhost/replica:0/task:0/device:CPU:0") "tf.AddV2"(%0, %0) {T = f32} : 1
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 25 10:51:48 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  5. src/runtime/map_benchmark_test.go

    	for i := 0; i < size; i++ {
    		ints[i] = int32(i)
    	}
    	sum := 0
    	m := make(map[int32]int, size)
    	for i := 0; i < size; i++ {
    		m[ints[i]] = 0
    	}
    	idx := 0
    	b.ResetTimer()
    	for i := 0; i < b.N; i++ {
    		sum += m[ints[idx]]
    		idx++
    		if idx == size {
    			idx = 0
    		}
    	}
    }
    
    func BenchmarkHashInt64Speed(b *testing.B) {
    	ints := make([]int64, size)
    	for i := 0; i < size; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 09 16:41:16 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfrt/tests/runtime_lowering_tpu.mlir

    module attributes {tf.versions = {producer = 888 : i32}, tf.devices = ["/job:worker/replica:0/task:0/device:CPU:0", "/job:worker/replica:0/task:0/device:TPU_SYSTEM:0", "/job:worker/replica:0/task:0/device:TPU:0"]} {
    
      // CHECK-LABEL: @converts_cluster
      func.func @converts_cluster() {
        // CHECK: %0:2 = "tf_device.launch"() <{{.*}}> ({
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/tf_to_corert_pipeline_refvar.mlir

    // CHECK-NEXT: [[o_chain:%.*]], [[o:%.*]] = tfrt_fallback_async.executeop.seq([[in_chain]]) key(0) cost({{.*}}) device("/job:localhost/replica:0/task:0/device:CPU:0") "tf.VarHandleOp"()
    // CHECK-NEXT: [[o_chain_0:%.*]], [[o1:%.*]] = tfrt_fallback_async.executeop.seq([[in_chain]]) key(1) cost({{.*}}) device("/job:localhost/replica:0/task:0/device:CPU:0") "tf.ReadVariableOp"([[o]]) {dtype = f32} : 1
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 00:18:59 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  8. src/runtime/iface_test.go

    		_, ok = e.(any)
    	}
    }
    
    func TestNonEscapingConvT2E(t *testing.T) {
    	m := make(map[any]bool)
    	m[42] = true
    	if !m[42] {
    		t.Fatalf("42 is not present in the map")
    	}
    	if m[0] {
    		t.Fatalf("0 is present in the map")
    	}
    
    	n := testing.AllocsPerRun(1000, func() {
    		if m[0] {
    			t.Fatalf("0 is present in the map")
    		}
    	})
    	if n != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 7.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/insert_calibration_statistics_saver_with_skipping.mlir

        %cst = stablehlo.constant dense<0.000000e+00>: tensor<10x1024x3xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/sccp_test.go

    			Valu("t4", OpSub64, c.config.Types.Int64, 0, nil, "t3", "v2"),
    			Valu("t5", OpMul64, c.config.Types.Int64, 0, nil, "t4", "v2"),
    			Valu("t6", OpMod64, c.config.Types.Int64, 0, nil, "t5", "v2"),
    			Valu("t7", OpAnd64, c.config.Types.Int64, 0, nil, "t6", "v2"),
    			Valu("t8", OpOr64, c.config.Types.Int64, 0, nil, "t7", "v2"),
    			Valu("t9", OpXor64, c.config.Types.Int64, 0, nil, "t8", "v2"),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 21:01:50 UTC 2023
    - 3.6K bytes
    - Viewed (0)
Back to top