Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 742 for Koop (0.09 sec)

  1. 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)
  2. src/go/doc/testdata/testing.go

    //     }
    // The benchmark package will vary b.N until the benchmark function lasts
    // long enough to be timed reliably. The output
    //     testing.BenchmarkHello    10000000    282 ns/op
    // means that the loop ran 10000000 times at a speed of 282 ns per loop.
    //
    // If a benchmark needs some expensive setup before running, the timer
    // may be stopped:
    //     func BenchmarkBigLen(b *testing.B) {
    //         b.StopTimer()
    //         big := NewBig()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 02 02:28:27 UTC 2022
    - 11.8K bytes
    - Viewed (0)
  3. pkg/proxy/config/config.go

    	OnNodeSynced()
    }
    
    // NoopNodeHandler is a noop handler for proxiers that have not yet
    // implemented a full NodeHandler.
    type NoopNodeHandler struct{}
    
    // OnNodeAdd is a noop handler for Node creates.
    func (*NoopNodeHandler) OnNodeAdd(node *v1.Node) {}
    
    // OnNodeUpdate is a noop handler for Node updates.
    func (*NoopNodeHandler) OnNodeUpdate(oldNode, node *v1.Node) {}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. tensorflow/compiler/mlir/tensorflow/tests/split_into_island_per_op.mlir

    func.func @multiple_func_body_ops() {
      tf_executor.graph {
        tf_executor.island {
          "tf.NoOp"() : () -> ()
          tf_executor.yield
        }
        tf_executor.fetch
      }
      tf_executor.graph {
        tf_executor.island {
          "tf.NoOp"() : () -> ()
          tf_executor.yield
        }
        tf_executor.fetch
      }
      func.return
    }
    
    // -----
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  7. pkg/proxy/ipvs/README.md

    | KUBE-CLUSTER-IP                | All service IP + port                    | Mark-Masq for cases that `masquerade-all=true` or `clusterCIDR` specified |
    | KUBE-LOOP-BACK                 | All service IP + port + IP               | masquerade for solving hairpin purpose   |
    | KUBE-EXTERNAL-IP               | service external IP + port               | masquerade for packages to external IPs  |
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 20 02:32:29 UTC 2021
    - 18.8K bytes
    - Viewed (0)
  8. src/text/template/parse/lex.go

    // scanned. Syntax checking is done by the parser.
    func lexChar(l *lexer) stateFn {
    Loop:
    	for {
    		switch l.next() {
    		case '\\':
    			if r := l.next(); r != eof && r != '\n' {
    				break
    			}
    			fallthrough
    		case eof, '\n':
    			return l.errorf("unterminated character constant")
    		case '\'':
    			break Loop
    		}
    	}
    	return l.emit(itemCharConstant)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 04 22:36:12 UTC 2022
    - 18.1K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top