Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 49 for 8032 (0.03 sec)

  1. pkg/kube/inject/validate.go

    	}
    	return nil
    }
    
    // validateUInt32 validates that the given annotation value is a positive integer.
    func validateUInt32(value string) error {
    	_, err := strconv.ParseUint(value, 10, 32)
    	return err
    }
    
    // validateBool validates that the given annotation value is a boolean.
    func validateBool(value string) error {
    	_, err := strconv.ParseBool(value)
    	return err
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64.go

    	SYS_MADVISE                 = 5027
    	SYS_SHMGET                  = 5028
    	SYS_SHMAT                   = 5029
    	SYS_SHMCTL                  = 5030
    	SYS_DUP                     = 5031
    	SYS_DUP2                    = 5032
    	SYS_PAUSE                   = 5033
    	SYS_NANOSLEEP               = 5034
    	SYS_GETITIMER               = 5035
    	SYS_SETITIMER               = 5036
    	SYS_ALARM                   = 5037
    	SYS_GETPID                  = 5038
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64le.go

    	SYS_MADVISE                 = 5027
    	SYS_SHMGET                  = 5028
    	SYS_SHMAT                   = 5029
    	SYS_SHMCTL                  = 5030
    	SYS_DUP                     = 5031
    	SYS_DUP2                    = 5032
    	SYS_PAUSE                   = 5033
    	SYS_NANOSLEEP               = 5034
    	SYS_GETITIMER               = 5035
    	SYS_SETITIMER               = 5036
    	SYS_ALARM                   = 5037
    	SYS_GETPID                  = 5038
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  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