Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,643 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. 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)
  5. 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)
  6. 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)
  7. 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)
  8. docs_src/dependencies/tutorial008c.py

    
    @app.get("/items/{item_id}")
    def get_item(item_id: str, username: str = Depends(get_username)):
        if item_id == "portal-gun":
            raise InternalError(
                f"The portal gun is too dangerous to be owned by {username}"
            )
        if item_id != "plumbus":
            raise HTTPException(
                status_code=404, detail="Item not found, there's only a plumbus here"
            )
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Feb 24 23:06:37 UTC 2024
    - 660 bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/plugin/devel/variants/TargetJVMVersionOnLibraryTooNewFailureDescriberIntegrationTest.groovy

        Integer currentJava = Integer.valueOf(JavaVersion.current().majorVersion)
        Integer tooHighJava = currentJava + 1
    
        def 'JVM version too low on non-plugin dependency uses standard error message'() {
            given:
            def producer = file('producer')
            def consumer = file('consumer')
    
            file('settings.gradle') << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/pass.go

    			break
    		}
    		return
    
    	case TYPE_REG:
    		// TODO(rsc): After fixing PINSRQ, check a.Offset != 0 too.
    		// TODO(rsc): After fixing SHRQ, check a.Index != 0 too.
    		if a.Scale != 0 || a.Name != 0 || a.Sym != nil {
    			break
    		}
    		return
    
    	case TYPE_ADDR:
    		if a.Val != nil {
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 01:26:58 UTC 2023
    - 5K bytes
    - Viewed (0)
Back to top