Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 1,937 for too (0.02 sec)

  1. okhttp/src/main/kotlin/okhttp3/internal/-UtilJvm.kt

      require(millis <= Integer.MAX_VALUE) { "$name too large" }
      require(millis != 0L || duration <= 0L) { "$name too small" }
      return millis.toInt()
    }
    
    internal fun checkDuration(
      name: String,
      duration: Duration,
    ): Int {
      check(!duration.isNegative()) { "$name < 0" }
      val millis = duration.inWholeMilliseconds
      require(millis <= Integer.MAX_VALUE) { "$name too large" }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon May 13 13:42:37 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  2. src/syscall/zerrors_solaris_amd64.go

    	22:  "invalid argument",
    	23:  "file table overflow",
    	24:  "too many open files",
    	25:  "inappropriate ioctl for device",
    	26:  "text file busy",
    	27:  "file too large",
    	28:  "no space left on device",
    	29:  "illegal seek",
    	30:  "read-only file system",
    	31:  "too many links",
    	32:  "broken pipe",
    	33:  "argument out of domain",
    	34:  "result too large",
    	35:  "no message of desired type",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 50.8K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/testshared/testdata/globallib/global.go

    package globallib
    
    // Data is large enough to that offsets into it do not fit into
    // 16-bit or 20-bit immediates. Ideally we'd also try and overrun
    // 32-bit immediates, but that requires the test machine to have
    // too much memory.
    var Data [1<<20 + 10]int64
    
    func init() {
    	for i := range Data {
    		Data[i] = int64(i)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 485 bytes
    - Viewed (0)
  4. test/fixedbugs/issue5172.go

    	x bar // ERROR "undefined"
    }
    
    type T struct{}
    
    func (t T) Bar() {}
    
    func main() {
    	var f foo
    	go f.bar()    // ERROR "undefined"
    	defer f.bar() // ERROR "undefined"
    
    	t := T{1} // ERROR "too many"
    	go t.Bar()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 28 02:31:54 UTC 2020
    - 506 bytes
    - Viewed (0)
  5. src/syscall/zerrors_linux_riscv64.go

    	20:  "not a directory",
    	21:  "is a directory",
    	22:  "invalid argument",
    	23:  "too many open files in system",
    	24:  "too many open files",
    	25:  "inappropriate ioctl for device",
    	26:  "text file busy",
    	27:  "file too large",
    	28:  "no space left on device",
    	29:  "illegal seek",
    	30:  "read-only file system",
    	31:  "too many links",
    	32:  "broken pipe",
    	33:  "numerical argument out of domain",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 70.8K bytes
    - Viewed (0)
  6. test/makenew.go

    	_ = make(int)   // ERROR "cannot make type|cannot make int"
    	_ = make([]int) // ERROR "missing len argument|expects 2 or 3 arguments"
    
    	_ = new()       // ERROR "missing argument|not enough arguments"
    	_ = new(int, 2) // ERROR "too many arguments"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 04 21:22:23 UTC 2020
    - 605 bytes
    - Viewed (0)
  7. src/runtime/cgo/iscgo.go

    // license that can be found in the LICENSE file.
    
    // The runtime package contains an uninitialized definition
    // for runtime·iscgo. Override it to tell the runtime we're here.
    // There are various function pointers that should be set too,
    // but those depend on dynamic linker magic to get initialized
    // correctly, and sometimes they break. This variable is a
    // backup: it depends only on old C style static linking rules.
    
    package cgo
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 02 00:13:47 UTC 2016
    - 646 bytes
    - Viewed (0)
  8. src/internal/types/testdata/fixedbugs/issue58742.go

    	return 0 // ERROR "not enough return values\n\thave (number)\n\twant (int, unknown type, string)"
    }
    
    func _() (int, UndefinedType /* ERROR "undefined: UndefinedType" */ ) {
    	return 0, 1, 2 // ERROR "too many return values\n\thave (number, number, number)\n\twant (int, unknown type)"
    }
    
    // test case from issue
    func _() UndefinedType /* ERROR "undefined: UndefinedType" */ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 06 18:21:51 UTC 2023
    - 708 bytes
    - Viewed (0)
  9. src/crypto/rsa/boring_test.go

    	}
    }
    
    func TestBoringFinalizers(t *testing.T) {
    	if runtime.GOOS == "nacl" || runtime.GOOS == "js" {
    		// Times out on nacl and js/wasm (without BoringCrypto)
    		// but not clear why - probably consuming rand.Reader too quickly
    		// and being throttled. Also doesn't really matter.
    		t.Skipf("skipping on %s/%s", runtime.GOOS, runtime.GOARCH)
    	}
    
    	k, err := GenerateKey(rand.Reader, 2048)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 00:16:30 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/incremental/sourceparser/PreprocessingReaderTest.groovy

        def "removes line continuation characters"() {
            when:
            input = """Here is a ${BN}single line ${BN}with continuations \\${BN}and \\ slashes\\\t\n too\\ \n."""
    
            then:
            output == "Here is a single line with continuations \\and \\ slashes\\\t\n too\\ \n."
        }
    
        def "replaces inline comments with space"() {
            when:
            input = """
    Here/* comment */is a string/*
    multiline
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.2K bytes
    - Viewed (0)
Back to top