Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 2,440 for poop (0.13 sec)

  1. src/reflect/iter_test.go

    				}
    				i++
    			}
    			if i != 4 {
    				t.Fatalf("should loop four times")
    			}
    		}},
    		{"int8", ValueOf(int8(4)), func(t *testing.T, s iter.Seq[Value]) {
    			i := int8(0)
    			for v := range s {
    				if v.Interface().(int8) != i {
    					t.Fatalf("got %d, want %d", v.Int(), i)
    				}
    				i++
    			}
    			if i != 4 {
    				t.Fatalf("should loop four times")
    			}
    		}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 14:27:54 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/ConnectionPool.kt

     * of which connections to keep open for future use.
     *
     * @constructor Create a new connection pool with tuning parameters appropriate for a single-user
     * application. The tuning parameters in this pool are subject to change in future OkHttp releases.
     * Currently this pool holds up to 5 idle connections which will be evicted after 5 minutes of
     * inactivity.
     */
    class ConnectionPool internal constructor(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 03 20:39:41 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  3. test/defererrcheck.go

    		fmt.Println("defer")
    	}()
    label:
    	fmt.Println("goto loop")
    	if glob > 2 {
    		goto label
    	}
    }
    
    func f5() {
    label:
    	fmt.Println("goto loop")
    	defer func() { // ERROR "heap-allocated defer"
    		fmt.Println("defer")
    	}()
    	if glob > 2 {
    		goto label
    	}
    }
    
    func f6() {
    label:
    	fmt.Println("goto loop")
    	if glob > 2 {
    		goto label
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 26 16:54:17 UTC 2020
    - 1.4K bytes
    - Viewed (0)
  4. subprojects/diagnostics/src/test/groovy/org/gradle/api/tasks/diagnostics/internal/PropertyReportRendererTest.groovy

        }}
    
        def 'writes property'() {
            when:
            renderer.addProperty("prop", "value")
    
            then:
            assert containsLine(out.toString(), "prop: value")
        }
    
        def 'writes null property'() {
            when:
            renderer.addProperty("prop", null)
    
            then:
            assert containsLine(out.toString(), "prop: null")
        }
    
        void 'writes property that throws in toString'() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 24 15:02:02 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/snapshot/impl/DefaultValueSnapshotterTest.groovy

            snapshotter.snapshot([new Bean(prop: "value1"), new Bean(prop: "value2")], snapshot4).is(snapshot4)
            snapshotter.snapshot([new Bean(prop: "value1"), new Bean(prop: "value3")], snapshot4) != snapshot4
    
            def snapshot5 = snapshotter.snapshot(["abc", "123"])
            def snapshot6 = snapshotter.snapshot(["abc", "123", "xyz"], snapshot5)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 29.5K bytes
    - Viewed (0)
  6. cluster/addons/calico-policy-controller/ippool-crd.yaml

                      this pool. Defaults to 26 for IPv4 and 112 for IPv6.
                    type: integer
                  cidr:
                    description: The pool CIDR.
                    type: string
                  disabled:
                    description: When disabled is true, Calico IPAM will not assign addresses
                      from this pool.
                    type: boolean
                  ipip:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 4.2K bytes
    - Viewed (0)
  7. tensorflow/cc/framework/while_gradients.h

    // Utility functions for constructing while loop gradients
    
    namespace tensorflow {
    
    // Adds the gradient computation for the while loop associated with
    // `while_ctx`. `grad_inputs` are the partial derivatives w.r.t. the loop
    // outputs, i.e. the exit nodes.  The partial derivatives w.r.t. the loop
    // inputs, i.e. the input loop vars, are returned in `grad_outputs`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 05 15:48:53 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  8. test/fixedbugs/issue49145.go

    // license that can be found in the LICENSE file.
    
    package main
    
    func f(j int) {
    loop:
    	switch j {
    	case 1:
    		break loop
    	default:
    		println(j)
    	}
    }
    
    func main() {
    loop:
    	for j := 0; j < 5; j++ {
    		f(j)
    		if j == 3 {
    			break loop
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 25 16:07:11 UTC 2021
    - 357 bytes
    - Viewed (0)
  9. test/fixedbugs/issue49100b.go

    // license that can be found in the LICENSE file.
    
    package main
    
    func r(j int) {
    loop:
    	for i, c := range "goclang" {
    		if i == 2 {
    			continue loop
    		}
    		println(string(c))
    	}
    }
    
    func main() {
    loop:
    	for j := 0; j < 4; j++ {
    		r(j)
    		if j == 0 {
    			break loop
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 14:25:03 UTC 2021
    - 387 bytes
    - Viewed (0)
  10. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/jansi/DefaultJansiRuntimeResolver.java

            return getOperatingSystem() + getBitModel();
        }
    
        private int getBitModel() {
            String prop = System.getProperty("sun.arch.data.model");
            if (prop == null) {
                prop = System.getProperty("com.ibm.vm.bitmode");
            }
            if (prop != null) {
                return Integer.parseInt(prop);
            }
            return -1;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:39 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top