Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 379 for aloop (0.06 sec)

  1. tensorflow/compiler/mlir/tensorflow/analysis/resource_alias_analysis.cc

    // Analyzes while loops to compute resourceIDs for the loop results.
    //
    // (1) The base case for the analysis is that if the loop body does not execute
    //     at all, the resource IDs for each result is the same as the resource IDs
    //     of the corresponding input.
    // (2) If the loop does execute one or more times, then we need to account for
    //     data flow through the body of the while loop. If result #r is the same
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  2. guava/src/com/google/common/base/Throwables.java

       * </pre>
       *
       * @throws IllegalArgumentException if there is a loop in the causal chain
       */
      public static Throwable getRootCause(Throwable throwable) {
        // Keep a second pointer that slowly walks the causal chain. If the fast pointer ever catches
        // the slower pointer, then there's a loop.
        Throwable slowPointer = throwable;
        boolean advanceSlowPointer = false;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Mar 06 15:38:58 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  3. src/runtime/panic.go

    var rangePanicError = error(errorString("range function continued iteration after loop body panic"))
    var rangeExhaustedError = error(errorString("range function continued iteration after whole loop exit"))
    var rangeMissingPanicError = error(errorString("range function recovered a loop body panic and did not resume panicking"))
    
    //go:noinline
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/base/Throwables.java

       * </pre>
       *
       * @throws IllegalArgumentException if there is a loop in the causal chain
       */
      public static Throwable getRootCause(Throwable throwable) {
        // Keep a second pointer that slowly walks the causal chain. If the fast pointer ever catches
        // the slower pointer, then there's a loop.
        Throwable slowPointer = throwable;
        boolean advanceSlowPointer = false;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Mar 06 15:38:58 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  5. src/index/suffixarray/sais.go

    	bucketMax_8_32(text, freq, bucket)
    
    	numLMS := 0
    	lastB := int32(-1)
    	bucket = bucket[:256] // eliminate bounds check for bucket[c1] below
    
    	// The next stanza of code (until the blank line) loop backward
    	// over text, stopping to execute a code body at each position i
    	// such that text[i] is an L-character and text[i+1] is an S-character.
    	// That is, i+1 is the position of the start of an LMS-substring.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  6. test/prove.go

    	}
    }
    
    // Induction variable in unrolled loop.
    func unrollUpExcl(a []int) int {
    	var i, x int
    	for i = 0; i < len(a)-1; i += 2 { // ERROR "Induction variable: limits \[0,\?\), increment 2$"
    		x += a[i] // ERROR "Proved IsInBounds$"
    		x += a[i+1]
    	}
    	if i == len(a)-1 {
    		x += a[i]
    	}
    	return x
    }
    
    // Induction variable in unrolled loop.
    func unrollUpIncl(a []int) int {
    	var i, x int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 23 00:02:36 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  7. pkg/registry/core/service/ipallocator/controller/repairip.go

    //    Service_B [ClusterIP_A]  <------> 								only one service can verify the relation
    // The IPAddress reconcile loop checks there are no orphan IPAddresses, the rest of the
    // cases are covered by the Services loop
    // 1.                          <------>  IPAddress_Z [Ref:Service_C]   !ok, orphan IPAddress
    
    type RepairIPAddress struct {
    	client   kubernetes.Interface
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  8. src/image/gif/reader_test.go

    			}
    			img1, err := DecodeAll(w)
    			if err != nil {
    				t.Fatal("DecodeAll:", err)
    			}
    			if img.LoopCount != tc.loopCount {
    				t.Errorf("loop count mismatch: %d vs %d", img.LoopCount, tc.loopCount)
    			}
    			if img.LoopCount != img1.LoopCount {
    				t.Errorf("loop count failed round-trip: %d vs %d", img.LoopCount, img1.LoopCount)
    			}
    		})
    	}
    }
    
    func TestUnexpectedEOF(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:15:54 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/base/Utf8Test.java

      private static void testBytes(int numBytes, long expectedCount) {
        testBytes(numBytes, expectedCount, 0, -1);
      }
    
      /**
       * Helper to run the loop to test all the permutations for the number of bytes specified. This
       * overload is useful for debugging to get the loop to start at a certain character.
       *
       * @param numBytes the number of bytes in the byte array
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/check.go

    						f.Fatalf("block %s not in loop branches to non-header block %s in loop", b.String(), bb.String())
    					}
    					if ln.b2l[b.ID] != nil && ln.b2l[bb.ID] != nil && bb != ln.b2l[bb.ID].header && !ln.b2l[b.ID].isWithinOrEq(ln.b2l[bb.ID]) {
    						f.Fatalf("block %s in loop branches to non-header block %s in non-containing loop", b.String(), bb.String())
    					}
    				}
    			}
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 16:41:23 UTC 2024
    - 17.6K bytes
    - Viewed (0)
Back to top