Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for checkInts (0.98 sec)

  1. test/slicecap.go

    		y := x[4:]
    		checkBytes("y[1:]", y[1:])
    	}
    	{
    		x := ints
    		checkInts("x", x)
    		checkInts("x[5:]", x[5:])
    		checkInts("x[five:]", x[five:])
    		checkInts("x[5:five]", x[5:five])
    		checkInts("x[five:5]", x[five:5])
    		checkInts("x[five:five]", x[five:five])
    		checkInts("x[1:][2:][2:]", x[1:][2:][2:])
    		y := x[4:]
    		checkInts("y[1:]", y[1:])
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 1.9K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/LoggingIntegrationTest.groovy

            allMessages - (infoMessages + errorMessages)
        }
    
        void checkOuts(ExecutionResult result) {
            infoMessages.each {List<String> messages ->
                checkOuts(true, result.output, messages, validator)
            }
            errorMessages.each {List<String> messages ->
                checkOuts(true, result.error, messages, validator)
            }
            forbiddenMessages.each {List<String> messages ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  3. test/divmod.go

    		checkint16(int16(sx), int16(sy))
    	}
    	if (int64(int8(sx)) == sx || int64(int8(^sx)) == ^sx) && (int64(int8(sy)) == sy || int64(int8(^sy)) == ^sy) {
    		checkint8(int8(sx), int8(sy))
    	}
    }
    
    // Check result of x/y, x%y for various types.
    
    func checkuint(x, y uint) {
    	if y == 0 {
    		divzerouint(x, y)
    		modzerouint(x, y)
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 9.3K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/topologymanager/bitmask/bitmask_test.go

    		name        string
    		mask        []int
    		checkBits   []int
    		expectedSet bool
    	}{
    		{
    			name:        "Check if any bits from 11 in mask 00 is set",
    			mask:        nil,
    			checkBits:   []int{0, 1},
    			expectedSet: false,
    		},
    		{
    			name:        "Check if any bits from 11 in mask 01 is set",
    			mask:        []int{0},
    			checkBits:   []int{0, 1},
    			expectedSet: true,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 03 09:45:09 UTC 2022
    - 16.2K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/README.md

    Requirements: bash, go
    
    ### New Build System (currently for `GOOS == "linux"`)
    
    The new build system uses a Docker container to generate the go files directly
    from source checkouts of the kernel and various system libraries. This means
    that on any platform that supports Docker, all the files using the new build
    system can be generated at once, and generated files will not change based on
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 06 14:32:58 UTC 2021
    - 8.5K bytes
    - Viewed (0)
  6. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/git/internal/SourceDependencyCleanupIntegrationTest.groovy

            checkoutDir("dep", commits["3.0"].id.name, repo.id).assertDoesNotExist()
        }
    
        @ToBeFixedForConfigurationCache
        def "removes all checkouts when VCS mappings are removed"() {
            // checkout all versions
            versions.each { version ->
                succeeds("assertVersion", "-PrepoVersion=${version}")
            }
            // mark all versions as unused
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_groovy_to_kotlin_dsl.adoc

    * There are some situations where the Kotlin DSL is slower. First use, on clean checkouts or ephemeral CI agents for example, link:{gradle-issues}15886[are known to be slower].
    The same applies to the scenario in which something in the _buildSrc_ directory changes, which invalidates build-script caching.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    <3> The Kotlin build script applies the Groovy script
    
    [[kotdsl:limitations]]
    == Limitations
    
    * The Kotlin DSL is link:{gradle-issues}15886[known to be slower than the Groovy DSL] on first use, for example with clean checkouts or on ephemeral continuous integration agents.
    Changing something in the _buildSrc_ directory also has an impact as it invalidates build-script caching.
    The main reason for this is the slower script compilation for Kotlin DSL.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
Back to top