Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 26 for 8032 (0.04 sec)

  1. testing/internal-performance-testing/src/test/groovy/org/gradle/performance/measure/AmountTest.groovy

            Amount.valueOf(value, units).format() == str
    
            where:
            value    | units         | str
            0        | Fruit.apples  | "0 apples"
            1        | Fruit.apples  | "1 apple"
            0.032    | Fruit.apples  | "0.032 apples"
            2.367722 | Fruit.apples  | "2.368 apples"
            3        | Fruit.apples  | "1 orange"
            5        | Fruit.apples  | "1 grapefruit"
            4        | Fruit.apples  | "1.333 oranges"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  2. pilot/pkg/security/authz/model/util.go

    	"istio.io/istio/pilot/pkg/xds/filters"
    )
    
    // convertToPort converts a port string to a uint32.
    func convertToPort(v string) (uint32, error) {
    	p, err := strconv.ParseUint(v, 10, 32)
    	if err != nil || p > 65535 {
    		return 0, fmt.Errorf("invalid port %s: %v", v, err)
    	}
    	return uint32(p), nil
    }
    
    func extractNameInBrackets(s string) (string, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. testing/integ-test/src/integTest/groovy/org/gradle/integtests/BuildSourceBuilderIntegrationTest.groovy

    @IntegrationTestTimeout(600)
    class BuildSourceBuilderIntegrationTest extends AbstractIntegrationSpec {
        @Rule
        BlockingHttpServer server = new BlockingHttpServer()
    
        @Issue("https://issues.gradle.org/browse/GRADLE-2032")
        def "can simultaneously run gradle on projects with buildSrc"() {
            initScript """
                import ${BuildOperationListenerManager.name}
                import ${BuildOperationListener.name}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/util/error.go

    	if f != nil {
    		// assume that the "v" flag contains a parseable Int32 as per klog's "Level" type alias,
    		// thus no error from ParseInt is handled here.
    		if v, e := strconv.ParseInt(f.Value.String(), 10, 32); e == nil {
    			// https://git.k8s.io/community/contributors/devel/sig-instrumentation/logging.md
    			// klog.V(5) - Trace level verbosity
    			if v > 4 {
    				msg = fmt.Sprintf("%+v", err)
    			}
    		}
    	}
    
    	switch {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 25 16:35:10 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  5. src/strconv/example_test.go

    		fmt.Printf("%T, %v\n", s, s)
    	}
    	if s, err := strconv.ParseFloat("-Inf", 32); err == nil {
    		fmt.Printf("%T, %v\n", s, s)
    	}
    	if s, err := strconv.ParseFloat("-0", 32); err == nil {
    		fmt.Printf("%T, %v\n", s, s)
    	}
    	if s, err := strconv.ParseFloat("+0", 32); err == nil {
    		fmt.Printf("%T, %v\n", s, s)
    	}
    
    	// Output:
    	// float64, 3.1415927410125732
    	// float64, 3.1415926535
    	// float64, NaN
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 22:57:37 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  6. 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)
  7. docs/zh/docs/tutorial/security/get-current-user.md

    但,关键是:
    
    **安全和依赖注入的代码只需要写一次。**
    
    就算写得再复杂,也只是在一个位置写一次就够了。所以,要多复杂就可以写多复杂。
    
    但是,就算有数千个端点(*路径操作*),它们都可以使用同一个安全系统。
    
    而且,所有端点(或它们的任何部件)都可以利用这些依赖项或任何其它依赖项。
    
    所有*路径操作*只需 3 行代码就可以了:
    
    ```Python hl_lines="30-32"
    {!../../../docs_src/security/tutorial002.py!}
    ```
    
    ## 小结
    
    现在,我们可以直接在*路径操作函数*中获取当前用户。
    
    至此,安全的内容已经讲了一半。
    
    只要再为用户或客户端的*路径操作*添加真正发送 `username` 和 `password` 的功能就可以了。
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 22:46:46 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top