Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 131 for 8032 (0.12 sec)

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

    	SYS_UNUSED28                     = 4028
    	SYS_PAUSE                        = 4029
    	SYS_UTIME                        = 4030
    	SYS_STTY                         = 4031
    	SYS_GTTY                         = 4032
    	SYS_ACCESS                       = 4033
    	SYS_NICE                         = 4034
    	SYS_FTIME                        = 4035
    	SYS_SYNC                         = 4036
    	SYS_KILL                         = 4037
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_mipsle.go

    	SYS_UNUSED28                     = 4028
    	SYS_PAUSE                        = 4029
    	SYS_UTIME                        = 4030
    	SYS_STTY                         = 4031
    	SYS_GTTY                         = 4032
    	SYS_ACCESS                       = 4033
    	SYS_NICE                         = 4034
    	SYS_FTIME                        = 4035
    	SYS_SYNC                         = 4036
    	SYS_KILL                         = 4037
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  3. docs/ko/docs/tutorial/security/get-current-user.md

    그러나 동일한 보안 시스템을 사용하여 수천 개의 엔드포인트(*경로 작동*)를 가질 수 있습니다.
    
    그리고 그들 모두(또는 원하는 부분)는 이러한 의존성 또는 생성한 다른 의존성을 재사용하는 이점을 얻을 수 있습니다.
    
    그리고 이 수천 개의 *경로 작동*은 모두 3줄 정도로 줄일 수 있습니다.
    
    === "파이썬 3.7 이상"
    
        ```Python hl_lines="30-32"
        {!> ../../../docs_src/security/tutorial002.py!}
        ```
    
    === "파이썬 3.10 이상"
    
        ```Python hl_lines="28-30"
        {!> ../../../docs_src/security/tutorial002_py310.py!}
        ```
    
    ## 요약
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. pkg/kubelet/server/server_websocket_test.go

    				defer close(portForwardFuncDone)
    				assert.Equal(t, testPodSandboxID, podSandboxID, "pod sandbox id")
    				// The port should be valid if it reaches here.
    				testPort, err := strconv.ParseInt(test.port, 10, 32)
    				require.NoError(t, err, "parse port")
    				assert.Equal(t, int32(testPort), port, "port")
    
    				if test.clientData != "" {
    					fromClient := make([]byte, 32)
    					n, err := stream.Read(fromClient)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 05 06:08:18 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/intstr/intstr.go

    }
    
    // Parse the given string and try to convert it to an int32 integer before
    // setting it as a string value.
    func Parse(val string) IntOrString {
    	i, err := strconv.ParseInt(val, 10, 32)
    	if err != nil {
    		return FromString(val)
    	}
    	return FromInt32(int32(i))
    }
    
    // UnmarshalJSON implements the json.Unmarshaller interface.
    func (intstr *IntOrString) UnmarshalJSON(value []byte) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:09 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  6. pkg/config/validation/agent/extensionprovider.go

    			return err
    		}
    	}
    	return nil
    }
    
    func validateExtensionProviderEnvoyExtAuthzStatusOnError(status string) error {
    	if status == "" {
    		return nil
    	}
    	code, err := strconv.ParseInt(status, 10, 32)
    	if err != nil {
    		return fmt.Errorf("invalid statusOnError value %s: %v", status, err)
    	}
    	if _, found := envoytypev3.StatusCode_name[int32(code)]; !found {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 11K bytes
    - Viewed (0)
  7. src/crypto/tls/testdata/Client-TLSv12-ECDHE-RSA-AES

    00000020  df d6 5e cb 85 3e 0c f7  48 69 95 77 29 95 88 1c  |..^..>..Hi.w)...|
    00000030  1e 76 8a c3 ea 69 07 75  46 68 09 50 fa 30 0a 57  |.v...i.uFh.P.0.W|
    00000040  84 e3 c7 d9 34 c4 40 32  7b f4 95                 |....4.@2{..|
    >>> Flow 5 (client to server)
    00000000  17 03 03 00 30 00 00 00  00 00 00 00 00 00 00 00  |....0...........|
    00000010  00 00 00 00 00 24 6d d9  23 68 ad 8d 64 2e 3a d5  |.....$m.#h..d.:.|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  8. src/html/template/multi_test.go

    const (
    	cloneText1 = `{{define "a"}}{{template "b"}}{{template "c"}}{{end}}`
    	cloneText2 = `{{define "b"}}b{{end}}`
    	cloneText3 = `{{define "c"}}root{{end}}`
    	cloneText4 = `{{define "c"}}clone{{end}}`
    )
    
    // Issue 7032
    func TestAddParseTreeToUnparsedTemplate(t *testing.T) {
    	master := "{{define \"master\"}}{{end}}"
    	tmpl := New("master")
    	tree, err := parse.Parse("master", master, "", "", nil)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:48:16 UTC 2022
    - 8K bytes
    - Viewed (0)
  9. src/testing/match.go

    			// We only use "#00" as a suffix for subtests named with the empty
    			// string — it isn't a valid suffix if the subtest name is non-empty.
    			return s, 0
    		}
    	}
    
    	n, err := strconv.ParseInt(suffix, 10, 32)
    	if err != nil || n < 0 {
    		return s, 0
    	}
    	return prefix, int32(n)
    }
    
    // rewrite rewrites a subname to having only printable characters and no white
    // space.
    func rewrite(s string) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 27 22:07:13 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/util/peerproxy/peerproxy_handler_test.go

    			# TYPE apiserver_rerouted_request_total counter
    			apiserver_rerouted_request_total{code="503"} 2
    			`,
    		},
    	}
    
    	metrics.Register()
    	for _, tt := range testCases {
    		t.Run(tt.desc, func(t *testing.T) {
    			lastHandler := http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top