Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 37 for CNT (0.02 sec)

  1. src/cmd/link/elf_test.go

    	}
    
    	sec = ef.Section(".note.go.buildid")
    	if sec == nil {
    		t.Fatalf("can't find go build id")
    	}
    	cnt := 0
    	for _, ph := range ef.Progs {
    		if ph.Type == elf.PT_NOTE {
    			cnt += 1
    		}
    	}
    	if cnt != expected {
    		t.Fatalf("want %d PT_NOTE segment, got %d", expected, cnt)
    	}
    }
    
    const pieSourceTemplate = `
    package main
    
    import "fmt"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 16:34:01 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  2. cmd/endpoint-ellipses.go

    	// in least number of total_drives/total_drives_erasure_set ratio.
    	prevD := divisibleSize / setCounts[0]
    	for _, cnt := range setCounts {
    		if divisibleSize%cnt == 0 {
    			d := divisibleSize / cnt
    			if d <= prevD {
    				prevD = d
    				setSize = cnt
    			}
    		}
    	}
    	return setSize
    }
    
    // possibleSetCountsWithSymmetry returns symmetrical setCounts based on the
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/plan9x.go

    		case 3:
    			c[1], c[2] = c[2], c[1] // .8B -> .B8
    		case 4:
    			c[1], c[2], c[3] = c[3], c[1], c[2] // 16B -> B16
    		}
    		arrange = string(c)
    		result += arrange
    		if a.cnt > 0 {
    			result = "[" + result
    			for i := 1; i < int(a.cnt); i++ {
    				cur := V0 + Reg((uint16(a.r)-uint16(V0)+uint16(i))&31)
    				result += ", " + cur.String() + arrange
    			}
    			result += "]"
    		}
    		return result
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 17K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/tests/quantize_weights.mlir

    // CHECK: %[[WHILE:.*]] = "tf.While"(%[[CNT]], %[[CNT]], %[[CNT]], %arg0, %[[DEQUANTIZED]]) <{body = @while_body, cond = @while_cond, is_stateless = true, parallel_iterations = 10 : i64, shape_invariant}> {T = [i32, i32, i32, f32, f32], _lower_using_switch_merge = true, _num_original_outputs = 5 : i64, _read_only_resource_inputs = [], device = "",...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 42K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/func_test.go

    // number of opcodes that appear in the function.
    func checkOpcodeCounts(t *testing.T, f *Func, m map[Op]int) {
    	n := opcodeMap(f)
    	for op, cnt := range m {
    		if n[op] != cnt {
    			t.Errorf("%s appears %d times, want %d times", op, n[op], cnt)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:01:04 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  6. src/runtime/map_test.go

    	m[nan] = 2
    	m[nan] += 4
    
    	cnt := 0
    	s := 0
    	growflag := true
    	for k, v := range m {
    		if growflag {
    			// force a hashtable resize
    			for i := 0; i < 50; i++ {
    				m[float64(i)] = i
    			}
    			for i := 50; i < 100; i++ {
    				m[float64(i)] += i
    			}
    			growflag = false
    		}
    		if k != k {
    			cnt++
    			s |= v
    		}
    	}
    	if cnt != 3 {
    		t.Error("NaN keys lost during grow")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  7. src/runtime/os_freebsd.go

    		return
    	}
    	print("umtx_wait addr=", addr, " val=", val, " ret=", ret, "\n")
    	*(*int32)(unsafe.Pointer(uintptr(0x1005))) = 0x1005
    }
    
    //go:nosplit
    func futexwakeup(addr *uint32, cnt uint32) {
    	ret := sys_umtx_op(addr, _UMTX_OP_WAKE_PRIVATE, cnt, 0, nil)
    	if ret >= 0 {
    		return
    	}
    
    	systemstack(func() {
    		print("umtx_wake_addr=", addr, " ret=", ret, "\n")
    	})
    }
    
    func thr_start()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  8. pilot/pkg/xds/discovery.go

    func reasonsUpdated(req *model.PushRequest) string {
    	var (
    		reason0, reason1            model.TriggerReason
    		reason0Cnt, reason1Cnt, idx int
    	)
    	for r, cnt := range req.Reason {
    		if idx == 0 {
    			reason0, reason0Cnt = r, cnt
    		} else if idx == 1 {
    			reason1, reason1Cnt = r, cnt
    		} else {
    			break
    		}
    		idx++
    	}
    
    	switch len(req.Reason) {
    	case 0:
    		return "unknown"
    	case 1:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 20:21:09 UTC 2024
    - 19K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/passes/unfreeze_constants.cc

        // down as arguments to avoid relying on shared variables.
        const std::string name = GetConstOpName(const_op);
        const int cnt = name_counts[name]++;
    
        // Creates a unique name by appending its occurrence count.
        const auto shared_name = absl::StrCat(name, "_", cnt);
        const_op_name_map[const_op] = shared_name;
    
        // Creates a VarHandleOp -> ReadVariableOp pair for each ConstOp.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 16 15:04:53 UTC 2023
    - 14K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/syscall_darwin.go

    	if err != nil {
    		Close(fd2)
    		return 0, err
    	}
    	defer closedir(d)
    
    	var cnt int64
    	for {
    		var entry Dirent
    		var entryp *Dirent
    		e := readdir_r(d, &entry, &entryp)
    		if e != 0 {
    			return n, errnoErr(e)
    		}
    		if entryp == nil {
    			break
    		}
    		if skip > 0 {
    			skip--
    			cnt++
    			continue
    		}
    
    		reclen := int(entry.Reclen)
    		if reclen > len(buf) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 20.7K bytes
    - Viewed (0)
Back to top