Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 676 for aloop (0.04 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/ast/astutil/enclosing.go

    				break
    			}
    		}
    
    		// No single child contained [start, end),
    		// so node is the result.  Is it exact?
    
    		// (It's tempting to put this condition before the
    		// child loop, but it gives the wrong result in the
    		// case where a node (e.g. ExprStmt) and its sole
    		// child have equal intervals.)
    		if start == nodePos && end == nodeEnd {
    			return true // exact match
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_variable_runtime_reformatting.cc

      // Move op inside launch.
      op->moveBefore(launch.GetBody().getTerminator());
    
      builder->restoreInsertionPoint(insert_point);
    }
    
    // Performs the transformation for a replicate op inside a while loop. Returns
    // true when any change was made by this function.
    bool HandleReplicateOp(TF::WhileRegionOp while_op,
                           tf_device::ReplicateOp replicate) {
      int64_t num_replicas = replicate.getN();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  3. src/cmd/go/internal/toolchain/select.go

    //	"mismatch" - like "switch" but forget to set TESTGO_VERSION, so it looks like we invoked a mismatched toolchain
    //	"loop" - like "mismatch" but forget the target check, causing a toolchain switching loop
    var TestVersionSwitch string
    
    // Exec invokes the specified Go toolchain or else prints an error and exits the process.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:25:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  4. guava/src/com/google/common/hash/Murmur3_32HashFunction.java

        if (Charsets.UTF_8.equals(charset)) {
          int utf16Length = input.length();
          int h1 = seed;
          int i = 0;
          int len = 0;
    
          // This loop optimizes for pure ASCII.
          while (i + 4 <= utf16Length) {
            char c0 = input.charAt(i);
            char c1 = input.charAt(i + 1);
            char c2 = input.charAt(i + 2);
            char c3 = input.charAt(i + 3);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jun 15 20:59:00 UTC 2022
    - 11.9K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/hash/Murmur3_32HashFunction.java

        if (Charsets.UTF_8.equals(charset)) {
          int utf16Length = input.length();
          int h1 = seed;
          int i = 0;
          int len = 0;
    
          // This loop optimizes for pure ASCII.
          while (i + 4 <= utf16Length) {
            char c0 = input.charAt(i);
            char c1 = input.charAt(i + 1);
            char c2 = input.charAt(i + 2);
            char c3 = input.charAt(i + 3);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jun 15 20:59:00 UTC 2022
    - 11.9K bytes
    - Viewed (0)
  6. src/net/lookup_plan9.go

    	// host names in local network (e.g. from /lib/ndb/local)
    	lines, err := queryCS(ctx, "net", host, "1")
    	if err != nil {
    		return nil, handlePlan9DNSError(err, host)
    	}
    loop:
    	for _, line := range lines {
    		f := getFields(line)
    		if len(f) < 2 {
    			continue
    		}
    		addr := f[1]
    		if i := bytealg.IndexByteString(addr, '!'); i >= 0 {
    			addr = addr[:i] // remove port
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:08:38 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. pkg/controller/volume/attachdetach/attach_detach_controller.go

    	// DesiredStateOfWorldPopulatorLoopSleepPeriod is the amount of time the
    	// DesiredStateOfWorldPopulator loop waits between successive executions
    	DesiredStateOfWorldPopulatorLoopSleepPeriod time.Duration
    
    	// DesiredStateOfWorldPopulatorListPodsRetryDuration is the amount of
    	// time the DesiredStateOfWorldPopulator loop waits between list pods
    	// calls.
    	DesiredStateOfWorldPopulatorListPodsRetryDuration time.Duration
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  8. src/encoding/base64/base64.go

    func (enc *Encoding) Encode(dst, src []byte) {
    	if len(src) == 0 {
    		return
    	}
    	// enc is a pointer receiver, so the use of enc.encode within the hot
    	// loop below means a nil check at every operation. Lift that nil check
    	// outside of the loop to speed up the encoder.
    	_ = enc.encode
    
    	di, si := 0, 0
    	n := (len(src) / 3) * 3
    	for si < n {
    		// Convert 3x 8bit source bytes into 4 bytes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 17.6K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/primitives/UnsignedBytes.java

           * non-final fields need to be reloaded inside the loop.
           *
           * And, no, defining (final or not) local variables out of the loop still isn't as good
           * because the null check on the theUnsafe object remains inside the loop and
           * BYTE_ARRAY_BASE_OFFSET doesn't get constant-folded.
           *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  10. src/strings/replace.go

    			index := int(r.mapping[s[i]])
    			if index == r.tableSize || r.root.table[index] == nil {
    				i++
    				continue
    			}
    		}
    
    		// Ignore the empty match iff the previous loop found the empty match.
    		val, keylen, match := r.lookup(s[i:], prevMatchEmpty)
    		prevMatchEmpty = match && keylen == 0
    		if match {
    			wn, err = sw.WriteString(s[last:i])
    			n += wn
    			if err != nil {
    				return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:10:31 UTC 2023
    - 14.5K bytes
    - Viewed (0)
Back to top