Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 676 for aloop (0.05 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go

    	ELIBBAD         = syscall.Errno(0x54)
    	ELIBEXEC        = syscall.Errno(0x57)
    	ELIBMAX         = syscall.Errno(0x56)
    	ELIBSCN         = syscall.Errno(0x55)
    	ELNRNG          = syscall.Errno(0x29)
    	ELOOP           = syscall.Errno(0x5a)
    	EMEDIUMTYPE     = syscall.Errno(0xa0)
    	EMSGSIZE        = syscall.Errno(0x61)
    	EMULTIHOP       = syscall.Errno(0x4a)
    	ENAMETOOLONG    = syscall.Errno(0x4e)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  2. pkg/controlplane/controller/clusterauthenticationtrust/cluster_authentication_trust_controller.go

    	// kubeSystemConfigMapInformer is tracked so that we can start these on Run
    	kubeSystemConfigMapInformer cache.SharedIndexInformer
    
    	// preRunCaches are the caches to sync before starting the work of this control loop
    	preRunCaches []cache.InformerSynced
    }
    
    // ClusterAuthenticationInfo holds the information that will included in public configmap.
    type ClusterAuthenticationInfo struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  3. src/slices/zsortanyfunc.go

    	// if data[a:m] only contains one element.
    	if m-a == 1 {
    		// Use binary search to find the lowest index i
    		// such that data[i] >= data[a] for m <= i < b.
    		// Exit the search loop with i == b in case no such index exists.
    		i := m
    		j := b
    		for i < j {
    			h := int(uint(i+j) >> 1)
    			if cmp(data[h], data[a]) < 0 {
    				i = h + 1
    			} else {
    				j = h
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 23:33:29 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  4. src/math/rand/v2/rand.go

    	// the probability of a random uint64 lo being < a uint32 n is near zero,
    	// meaning the unbiasing loop almost never runs.
    	// On 32-bit systems, here we need to implement that same logic in 32-bit math,
    	// both to preserve the exact output sequence observed on 64-bit machines
    	// and to preserve the optimization that the unbiasing loop almost never runs.
    	//
    	// We want to compute
    	// 	hi, lo := bits.Mul64(r.Uint64(), n)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:25:49 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  5. src/runtime/traceruntime.go

    	maySweep bool
    
    	// inSweep indicates that at least one sweep event has been traced.
    	inSweep bool
    
    	// swept and reclaimed track the number of bytes swept and reclaimed
    	// by sweeping in the current sweep loop (while maySweep was true).
    	swept, reclaimed uintptr
    }
    
    // traceLockInit initializes global trace locks.
    func traceLockInit() {
    	// Sharing a lock rank here is fine because they should never be accessed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/embedding_pipelining.mlir

        %0 = "tf.While"(%cst) {body = @while_body, cond = @while_cond, is_stateless = false} : (tensor<i1>) -> (tensor<i1>)
        return
      }
      // expected-error @+1 {{number of tf.TPUReplicateMetadata in loop body is not 1}}
      func.func private @while_body(%arg0: tensor<i1>) -> (tensor<i1>) {
        // metadata ops
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 33.1K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go

    	ELIBBAD         = syscall.Errno(0x54)
    	ELIBEXEC        = syscall.Errno(0x57)
    	ELIBMAX         = syscall.Errno(0x56)
    	ELIBSCN         = syscall.Errno(0x55)
    	ELNRNG          = syscall.Errno(0x29)
    	ELOOP           = syscall.Errno(0x5a)
    	EMEDIUMTYPE     = syscall.Errno(0xa0)
    	EMSGSIZE        = syscall.Errno(0x61)
    	EMULTIHOP       = syscall.Errno(0x4a)
    	ENAMETOOLONG    = syscall.Errno(0x4e)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  8. src/slices/zsortordered.go

    	// if data[a:m] only contains one element.
    	if m-a == 1 {
    		// Use binary search to find the lowest index i
    		// such that data[i] >= data[a] for m <= i < b.
    		// Exit the search loop with i == b in case no such index exists.
    		i := m
    		j := b
    		for i < j {
    			h := int(uint(i+j) >> 1)
    			if cmp.Less(data[h], data[a]) {
    				i = h + 1
    			} else {
    				j = h
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 23:33:29 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/tf_saved_model_freeze_variables.cc

        int operand_index = usage.getOperandNumber();
        PropagateUsage(user_op, operand_index, value, &work_list,
                       arguments_to_erase);
      }
      // Container to mark visited regions to avoid infinite loop.
      llvm::DenseSet<std::pair<Region*, int>> visited;
      while (!work_list.empty()) {
        auto work_item = work_list.pop_back_val();
        if (visited.contains(work_item)) continue;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 09:56:53 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_386.go

    	ELIBBAD         = syscall.Errno(0x50)
    	ELIBEXEC        = syscall.Errno(0x53)
    	ELIBMAX         = syscall.Errno(0x52)
    	ELIBSCN         = syscall.Errno(0x51)
    	ELNRNG          = syscall.Errno(0x30)
    	ELOOP           = syscall.Errno(0x28)
    	EMEDIUMTYPE     = syscall.Errno(0x7c)
    	EMSGSIZE        = syscall.Errno(0x5a)
    	EMULTIHOP       = syscall.Errno(0x48)
    	ENAMETOOLONG    = syscall.Errno(0x24)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
Back to top