Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 111 for c308 (0.04 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm.go

    	SYS_KLDFIND                  = 306 // { int kldfind(const char *file); }
    	SYS_KLDNEXT                  = 307 // { int kldnext(int fileid); }
    	SYS_KLDSTAT                  = 308 // { int kldstat(int fileid, struct kld_file_stat *stat); }
    	SYS_KLDFIRSTMOD              = 309 // { int kldfirstmod(int fileid); }
    	SYS_GETSID                   = 310 // { int getsid(pid_t pid); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  2. docs/changelogs/changelog_2x.md

     *  New: Make it possible to mock `OkHttpClient` and `Call`.
     *  New: Update to h2-14 and hpack-9.
     *  New: OkHttp includes a user-agent by default, like `okhttp/2.1.0-RC1`.
     *  Fix: Handle response code `308 Permanent Redirect`.
     *  Fix: Don't skip the callback if a call is canceled.
     *  Fix: Permit hostnames with underscores.
     *  Fix: Permit overriding the content-type in `OkApacheClient`.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 26.6K bytes
    - Viewed (0)
  3. src/syscall/zsysnum_freebsd_riscv64.go

    	SYS_KLDFIND                  = 306 // { int kldfind(const char *file); }
    	SYS_KLDNEXT                  = 307 // { int kldnext(int fileid); }
    	SYS_KLDSTAT                  = 308 // { int kldstat(int fileid, struct kld_file_stat* stat); }
    	SYS_KLDFIRSTMOD              = 309 // { int kldfirstmod(int fileid); }
    	SYS_GETSID                   = 310 // { int getsid(pid_t pid); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 29 22:39:46 UTC 2022
    - 35.8K bytes
    - Viewed (0)
  4. src/syscall/zsysnum_freebsd_arm64.go

    	SYS_KLDFIND                  = 306 // { int kldfind(const char *file); }
    	SYS_KLDNEXT                  = 307 // { int kldnext(int fileid); }
    	SYS_KLDSTAT                  = 308 // { int kldstat(int fileid, struct kld_file_stat* stat); }
    	SYS_KLDFIRSTMOD              = 309 // { int kldfirstmod(int fileid); }
    	SYS_GETSID                   = 310 // { int getsid(pid_t pid); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 35.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_386.go

    	SYS_KLDFIND                  = 306 // { int kldfind(const char *file); }
    	SYS_KLDNEXT                  = 307 // { int kldnext(int fileid); }
    	SYS_KLDSTAT                  = 308 // { int kldstat(int fileid, struct kld_file_stat *stat); }
    	SYS_KLDFIRSTMOD              = 309 // { int kldfirstmod(int fileid); }
    	SYS_GETSID                   = 310 // { int getsid(pid_t pid); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_riscv64.go

    	SYS_KLDFIND                  = 306 // { int kldfind(const char *file); }
    	SYS_KLDNEXT                  = 307 // { int kldnext(int fileid); }
    	SYS_KLDSTAT                  = 308 // { int kldstat(int fileid, struct kld_file_stat *stat); }
    	SYS_KLDFIRSTMOD              = 309 // { int kldfirstmod(int fileid); }
    	SYS_GETSID                   = 310 // { int getsid(pid_t pid); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache.adoc

    ====
    
    [[sec:build_cache_redirects]]
    ==== Redirects
    
    `3xx` redirecting responses will be followed automatically.
    
    Servers must take care when redirecting `PUT` requests as only `307` and `308` redirect responses will be followed with a `PUT` request.
    All other redirect responses will be followed with a `GET` request, as per https://datatracker.ietf.org/doc/html/rfc7231#page-54[RFC 7231],
    without the entry payload as the body.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 11:30:10 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  8. src/go/scanner/scanner_test.go

    	{`'\07'`, token.CHAR, 4, `'\07'`, "illegal character U+0027 ''' in escape sequence"},
    	{`'\8'`, token.CHAR, 2, `'\8'`, "unknown escape sequence"},
    	{`'\08'`, token.CHAR, 3, `'\08'`, "illegal character U+0038 '8' in escape sequence"},
    	{`'\x'`, token.CHAR, 3, `'\x'`, "illegal character U+0027 ''' in escape sequence"},
    	{`'\x0'`, token.CHAR, 4, `'\x0'`, "illegal character U+0027 ''' in escape sequence"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 15:38:31 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/util/proxy/streamtranslator_test.go

    		http.StatusMovedPermanently,  // 301
    		http.StatusFound,             // 302
    		http.StatusSeeOther,          // 303
    		http.StatusTemporaryRedirect, // 307
    		http.StatusPermanentRedirect, // 308
    	} {
    		// Create upstream fake SPDY server which returns a redirect.
    		spdyServer := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
    			w.Header().Set("Location", "/")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 27 23:21:55 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch_test.go

    		},
    		"float64 max": {
    			Old:            `{"float64":1.7976931348623157e+308}`,
    			New:            `{"float64":1.7976931348623157e+308,"name":"newname"}`,
    			ExpectedPatch:  `{"name":"newname"}`,
    			ExpectedResult: `{"float64":1.7976931348623157e+308,"name":"newname"}`,
    		},
    	}
    
    	precisionItemOpenapiSchema := PatchMetaFromOpenAPI{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 16:45:45 UTC 2023
    - 130.4K bytes
    - Viewed (0)
Back to top