Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for checkInts (0.17 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. 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)
  3. 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)
  4. 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)
Back to top