Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,440 for poop (0.04 sec)

  1. okhttp/src/test/java/okhttp3/internal/connection/ConnectionPoolTest.kt

        // Running at time 75, the pool returns that nothing can be evicted until time 150.
        assertThat(pool.closeConnections(75L)).isEqualTo(75L)
        assertThat(pool.connectionCount()).isEqualTo(2)
    
        // Running at time 149, the pool returns that nothing can be evicted until time 150.
        assertThat(pool.closeConnections(149L)).isEqualTo(1L)
        assertThat(pool.connectionCount()).isEqualTo(2)
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 24 04:40:49 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  2. src/hash/crc32/crc32_s390x.s

    //             buffer is on a doubleword boundary.
    //      R4:    Length of the buffer, must be 64 bytes or greater.
    //
    // Register usage:
    //
    //      R5:     CRC-32 constant pool base pointer.
    //      V0:     Initial CRC value and intermediate constants and results.
    //      V1..V4: Data for CRC computation.
    //      V5..V8: Next data chunks that are fetched from the input buffer.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 20 00:49:17 UTC 2021
    - 7.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/PropertyIntegrationTest.groovy

    assert custom.prop.get() == "new value"
    
    tasks.create('t', SomeTask)
    tasks.t.prop = custom.prop
    assert tasks.t.prop.get() == "new value"
    
    custom.prop = "changed"
    assert custom.prop.get() == "changed"
    assert tasks.t.prop.get() == "changed"
    
    """
    
            expect:
            succeeds()
        }
    
        def "can set String property value using a GString"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/PropertyLifecycleIntegrationTest.groovy

                three.prop.disallowUnsafeRead()
                three.prop = two.prop.map { "[\$it]" }
                two.prop = one.prop.orElse("unknown")
    
                gradle.taskGraph.whenReady {
                    println("three = " + three.prop.get())
                    println("two = " + two.prop.get())
                    println("one = " + one.prop.orNull)
                    try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 04 14:00:52 UTC 2024
    - 15K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/util/ConfigureUtilTest.groovy

            def prop = "prop"
            def foo = "foo"
    
            when:
            ConfigureUtil.configureByMap(["$prop": 'value'], obj, ["$foo"])
    
            then:
            def e = thrown(IncompleteInputException)
            e.missingKeys.contains("foo")
    
            when:
            ConfigureUtil.configureByMap(["$prop": 'value'], obj, ["$prop"])
    
            then:
            assert obj.prop == 'value'
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 17:40:52 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/FileSystemPropertySpec.groovy

            def file = tmpDir.file("thing")
            def prop = propertyWithNoValue()
            prop.set(file)
    
            expect:
            prop.get().asFile == file
        }
    
        def "can set value using relative file"() {
            given:
            def file = new File("thing")
            def prop = propertyWithNoValue()
            prop.set(file)
    
            expect:
            prop.get().asFile == tmpDir.file("thing")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/likelyadjust.go

    package ssa
    
    import (
    	"fmt"
    )
    
    type loop struct {
    	header *Block // The header node of this (reducible) loop
    	outer  *loop  // loop containing this loop
    
    	// By default, children, exits, and depth are not initialized.
    	children []*loop  // loops nested directly within this loop. Initialized by assembleChildren().
    	exits    []*Block // exits records blocks reached by exits from this loop. Initialized by findExits().
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:41:20 UTC 2022
    - 15.4K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/api/internal/ConfigureByMapActionTest.groovy

            when:
            action([prop: 'value'], ['prop']).execute(obj)
    
            then:
            assert obj.prop == 'value'
        }
    
        def canConfigureAndValidateObjectUsingMapUsingGstrings() {
            given:
            Bean obj = new Bean()
            def prop = "prop"
            def foo = "foo"
    
            when:
            action(["$prop": 'value'], ["$foo"]).execute(obj)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:52:07 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/internal/classpath/InstrumentedTest.groovy

            System.setProperty("prop", "123")
    
            when:
            def result = Instrumented.getInteger("prop", "consumer")
    
            then:
            result == 123
            1 * listener.systemPropertyQueried("prop", "123", "consumer")
            0 * listener._
    
            System.setProperty("prop", "not an int")
    
            when:
            result = Instrumented.getInteger("prop", "consumer")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Nov 11 00:37:04 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/ManagedModelGroovyScalarConfigurationIntegrationTest.groovy

            output.contains 'prop theFloat     : 0.7182818'
            output.contains 'prop theint       : 3'
            output.contains 'prop theInteger   : 8'
            output.contains 'prop theLong      : 4294967294'
            output.contains 'prop thelong      : 6442450941'
            output.contains 'prop theshort     : 21'
            output.contains 'prop theShort     : 55'
            output.contains 'prop thebyte      : 55'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 19.7K bytes
    - Viewed (0)
Back to top