Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for 248 (0.21 sec)

  1. internal/lock/lock_windows.go

    	// the kernel is arbitrarily okay with < 248 bytes. That
    	// matches what the docs above say:
    	// "When using an API to create a directory, the specified
    	// path cannot be so long that you cannot append an 8.3 file
    	// name (that is, the directory name cannot exceed MAX_PATH
    	// minus 12)." Since MAX_PATH is 260, 260 - 12 = 248.
    	//
    	// The MSDN docs appear to say that a normal path that is 248 bytes long
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Wed Oct 18 18:08:15 GMT 2023
    - 7.9K bytes
    - Viewed (0)
  2. internal/lock/lock_windows_test.go

    func TestFixLongPath(t *testing.T) {
    	// 248 is long enough to trigger the longer-than-248 checks in
    	// fixLongPath, but short enough not to make a path component
    	// longer than 255, which is illegal on Windows. (which
    	// doesn't really matter anyway, since this is purely a string
    	// function we're testing, and it's not actually being used to
    	// do a system call)
    	veryLong := "l" + strings.Repeat("o", 248) + "ng"
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Wed Oct 18 18:08:15 GMT 2023
    - 2.2K bytes
    - Viewed (0)
  3. internal/etag/etag_test.go

    	{String: "ceb8853ddc5086cc4ab9e149f8f09c88-1", ETag: ETag{206, 184, 133, 61, 220, 80, 134, 204, 74, 185, 225, 73, 248, 240, 156, 136, 45, 49}},   // 3
    	{String: `"ceb8853ddc5086cc4ab9e149f8f09c88-2"`, ETag: ETag{206, 184, 133, 61, 220, 80, 134, 204, 74, 185, 225, 73, 248, 240, 156, 136, 45, 50}}, // 4
    	{ // 5
    		String: "90402c78d2dccddee1e9e86222ce2c6361675f3529d26000ae2e900ff216b3cb59e130e092d8a2981e776f4d0bd60941",
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Sep 18 17:00:54 GMT 2023
    - 12.6K bytes
    - Viewed (0)
  4. api/go1.22.txt

    pkg debug/elf, const R_LARCH_SUB6 R_LARCH #63725
    pkg debug/elf, const R_LARCH_SUB_ULEB128 = 108 #63725
    pkg debug/elf, const R_LARCH_SUB_ULEB128 R_LARCH #63725
    pkg debug/elf, const R_MIPS_PC32 = 248 #61974
    pkg debug/elf, const R_MIPS_PC32 R_MIPS #61974
    pkg encoding/base32, method (*Encoding) AppendDecode([]uint8, []uint8) ([]uint8, error) #53693
    pkg encoding/base32, method (*Encoding) AppendEncode([]uint8, []uint8) []uint8 #53693
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Jan 24 20:54:27 GMT 2024
    - 7.7K bytes
    - Viewed (0)
  5. cmd/apierrorcode_string.go

    	_ = x[ErrObjectSerializationConflict-243]
    	_ = x[ErrUnsupportedSQLOperation-244]
    	_ = x[ErrUnsupportedSQLStructure-245]
    	_ = x[ErrUnsupportedSyntax-246]
    	_ = x[ErrUnsupportedRangeHeader-247]
    	_ = x[ErrLexerInvalidChar-248]
    	_ = x[ErrLexerInvalidOperator-249]
    	_ = x[ErrLexerInvalidLiteral-250]
    	_ = x[ErrLexerInvalidIONLiteral-251]
    	_ = x[ErrParseExpectedDatePart-252]
    	_ = x[ErrParseExpectedKeyword-253]
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Apr 22 17:49:30 GMT 2024
    - 21.2K bytes
    - Viewed (0)
  6. .teamcity/performance-test-durations.json

      "durations" : [ {
        "testProject" : "bigSwiftApp",
        "linux" : 176
      }, {
        "testProject" : "mediumSwiftMulti",
        "linux" : 248
      } ]
    }, {
      "scenario" : "org.gradle.performance.regression.nativeplatform.SwiftCleanBuildPerformanceTest.clean assemble (swift)",
      "durations" : [ {
        "testProject" : "bigSwiftApp",
        "linux" : 2620
      }, {
    Json
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Mon Feb 19 11:22:56 GMT 2024
    - 26.3K bytes
    - Viewed (1)
  7. src/cmd/cgo/internal/test/callback.go

    func stack240()  { var buf [240]byte; use(buf[:]); C.callGoStackCheck() }
    func stack244()  { var buf [244]byte; use(buf[:]); C.callGoStackCheck() }
    func stack248()  { var buf [248]byte; use(buf[:]); C.callGoStackCheck() }
    func stack252()  { var buf [252]byte; use(buf[:]); C.callGoStackCheck() }
    func stack256()  { var buf [256]byte; use(buf[:]); C.callGoStackCheck() }
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri May 12 12:00:02 GMT 2023
    - 111.5K bytes
    - Viewed (0)
  8. docs/en/docs/release-notes.md

        * New [documentation section about using `response_model_skip_defaults`](https://fastapi.tiangolo.com/tutorial/response-model/#response-model-encoding-parameters).
        * PR [#248](https://github.com/tiangolo/fastapi/pull/248) by [@wshayes](https://github.com/wshayes).
    
    ## 0.24.0
    
    * Add support for WebSockets with dependencies and parameters.
        * Support included for:
            * `Depends`
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sun Apr 28 00:28:00 GMT 2024
    - 385.5K bytes
    - Viewed (1)
Back to top