Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 2,440 for poop (0.06 sec)

  1. tensorflow/cc/ops/while_loop.h

        BodyGraphBuilderFn;
    
    // Constructs a while loop.
    //
    // Arguments:
    // * scope: used to construct the while loop.
    // * inputs: the initial values of the loop variables. Must be non-empty.
    // * cond: a function that builds the condition graph of the loop. Takes the
    //     current loop variables as inputs and returns a scalar boolean Output
    //     indicating whether the loop should continue.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Sep 24 08:24:58 UTC 2020
    - 3.4K bytes
    - Viewed (0)
  2. test/fixedbugs/bug070.go

    func main() {
    	var i, k int
    	var r string
    outer:
    	for k = 0; k < 2; k++ {
    		r += fmt.Sprintln("outer loop top k", k)
    		if k != 0 {
    			panic("k not zero")
    		} // inner loop breaks this one every time
    		for i = 0; i < 2; i++ {
    			if i != 0 {
    				panic("i not zero")
    			} // loop breaks every time
    			r += fmt.Sprintln("inner loop top i", i)
    			if true {
    				r += "do break\n"
    				break outer
    			}
    		}
    	}
    	r += "broke\n"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 04:49:30 UTC 2012
    - 715 bytes
    - Viewed (0)
  3. platforms/core-execution/build-cache-packaging/src/test/groovy/org/gradle/caching/internal/packaging/impl/TarBuildCacheEntryPackerTest.groovy

            pack output,
                prop("out1", FILE, null),
                prop("out2", DIRECTORY, null)
    
            then:
            noExceptionThrown()
    
            when:
            def input = new ByteArrayInputStream(output.toByteArray())
            unpack input,
                prop("out1", FILE, null),
                prop("out2", DIRECTORY, null)
    
            then:
            noExceptionThrown()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/mark_for_compilation_pass.cc

            //   ApplyWeightUpdates_1 -> Computation_B
            //   ApplyWeightUpdates_2 -> Computation_C
            //   Computation_A -> NoOp
            //   Computation_B -> NoOp
            //   Computation_C -> NoOp
            //   "iteration++" -> NoOp
            // }
            //
            // In the graph above we can't cluster iteration++ with any of the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  5. test/opt_branchlikely.go

    		for i := 0; i < x; i++ { // ERROR "Branch prediction rule stay in loop"
    			if x == 4 { // ERROR "Branch prediction rule stay in loop"
    				return a
    			}
    			for j := 0; j < y; j++ { // ERROR "Branch prediction rule stay in loop"
    				for k := 0; k < z; k++ { // ERROR "Branch prediction rule stay in loop"
    					a -= j * i
    				}
    				a += j
    			}
    		}
    	}
    	return a
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  6. src/crypto/x509/hybrid_pool_test.go

    		t.Fatalf("failed to parse test cert: %s", err)
    	}
    
    	pool, err := x509.SystemCertPool()
    	if err != nil {
    		t.Fatalf("SystemCertPool failed: %s", err)
    	}
    	opts := x509.VerifyOptions{Roots: pool}
    
    	_, err = googChain[0].Verify(opts)
    	if err != nil {
    		t.Fatalf("verification failed for google.com chain (system only pool): %s", err)
    	}
    
    	pool.AddCert(root)
    
    	_, err = googChain[0].Verify(opts)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:48:11 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  7. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/DefaultCacheFactoryTest.groovy

            def visited = [] as Set
    
            when:
            factory.open(tmpDir.testDirectory.file('foo'), "foo", [prop: 'value'], mode(Shared), null, null)
            factory.open(tmpDir.testDirectory.file('bar'), "bar", [prop: 'value'], mode(Shared), null, null)
            factory.open(tmpDir.testDirectory.file('baz'), "baz", [prop: 'value'], mode(Shared), null, null)
    
            and:
            factory.visitCaches(new CacheVisitor() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  8. src/internal/coverage/calloc/batchcounteralloc.go

    // allocation.
    
    type BatchCounterAlloc struct {
    	pool []uint32
    }
    
    func (ca *BatchCounterAlloc) AllocateCounters(n int) []uint32 {
    	const chunk = 8192
    	if n > cap(ca.pool) {
    		siz := chunk
    		if n > chunk {
    			siz = n
    		}
    		ca.pool = make([]uint32, siz)
    	}
    	rv := ca.pool[:n]
    	ca.pool = ca.pool[n:]
    	return rv
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 11:47:16 UTC 2022
    - 754 bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/tests/merge_initializer_function_ops_to_main.mlir

    // Checks that 2 `NoOp`s having control dependencies to each of the initializer
    // functions are created.
    // CHECK-DAG: %[[CTL_2:.*]] = tf_executor.island(%[[CTL_0]]) wraps "tf.NoOp"()
    // CHECK-DAG: %[[CTL_3:.*]] = tf_executor.island(%[[CTL_1]]) wraps "tf.NoOp"()
    
    // CHECK: tf_executor.fetch
    // CHECK-SAME: !tf_executor.control, !tf_executor.control
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:49:35 UTC 2023
    - 29.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratorTest.java

                this.prop = prop;
            }
    
            public void prop(String value) {
                this.prop = String.format("(%s)", value);
            }
    
            public void prop(String part1, String part2) {
                this.prop = String.format("<%s%s>", part1, part2);
            }
    
            public void prop(String part1, String part2, String part3) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 74.6K bytes
    - Viewed (0)
Back to top