Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 88 for 3902 (0.09 sec)

  1. src/test/java/jcifs/internal/smb2/nego/Smb2NegotiateRequestTest.java

            assertTrue(contexts[0] instanceof PreauthIntegrityNegotiateContext);
            assertArrayEquals(testSalt, request.getPreauthSalt());
        }
    
        @Test
        @DisplayName("Should not add negotiate contexts for SMB 3.0.2 and below")
        void testNoNegotiateContextsSmb302() {
            // Given
            when(mockConfig.getMaximumVersion()).thenReturn(DialectVersion.SMB302);
    
            // When
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 20.7K bytes
    - Viewed (0)
  2. docs/ko/docs/tutorial/first-steps.md

    다음과 같이 시작하는 JSON을 확인할 수 있습니다:
    
    ```JSON
    {
        "openapi": "3.0.2",
        "info": {
            "title": "FastAPI",
            "version": "0.1.0"
        },
        "paths": {
            "/items/": {
                "get": {
                    "responses": {
                        "200": {
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. docs/ko/docs/tutorial/path-params.md

    경로 매개변수가 정수형으로 명시된 것을 확인할 수 있습니다.
    
    ///
    
    ## 표준 기반의 이점, 대체 문서
    
    그리고 생성된 스키마는 <a href="https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.0.2.md" class="external-link" target="_blank">OpenAPI</a> 표준에서 나온 것이기 때문에 호환되는 도구가 많이 있습니다.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  4. cmd/apierrorcode_string.go

    	_ = x[ErrIncorrectSQLFunctionArgumentType-297]
    	_ = x[ErrValueParseFailure-298]
    	_ = x[ErrEvaluatorInvalidArguments-299]
    	_ = x[ErrIntegerOverflow-300]
    	_ = x[ErrLikeInvalidInputs-301]
    	_ = x[ErrCastFailed-302]
    	_ = x[ErrInvalidCast-303]
    	_ = x[ErrEvaluatorInvalidTimestampFormatPattern-304]
    	_ = x[ErrEvaluatorInvalidTimestampFormatPatternSymbolForParsing-305]
    	_ = x[ErrEvaluatorTimestampFormatPatternDuplicateFields-306]
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Wed Apr 16 07:34:24 UTC 2025
    - 21.6K bytes
    - Viewed (0)
  5. docs/fr/docs/tutorial/first-steps.md

    Le schéma devrait ressembler à ceci :
    
    
    ```JSON
    {
        "openapi": "3.0.2",
        "info": {
            "title": "FastAPI",
            "version": "0.1.0"
        },
        "paths": {
            "/items/": {
                "get": {
                    "responses": {
                        "200": {
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sat Nov 09 16:39:20 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  6. docs/pt/docs/tutorial/first-steps.md

    Ele mostrará um JSON começando com algo como:
    
    ```JSON
    {
        "openapi": "3.0.2",
        "info": {
            "title": "FastAPI",
            "version": "0.1.0"
        },
        "paths": {
            "/items/": {
                "get": {
                    "responses": {
                        "200": {
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Thu Jan 09 20:41:07 UTC 2025
    - 10.8K bytes
    - Viewed (0)
  7. go.mod

    	go.opentelemetry.io/otel/sdk/metric v1.35.0 // indirect
    	go.opentelemetry.io/otel/trace v1.35.0 // indirect
    	go.uber.org/multierr v1.11.0 // indirect
    	golang.org/x/mod v0.24.0 // indirect
    	golang.org/x/net v0.39.0 // indirect
    	golang.org/x/text v0.24.0 // indirect
    	golang.org/x/tools v0.32.0 // indirect
    	google.golang.org/genproto v0.0.0-20250422160041-2d3770c4ea7f // indirect
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Sat Sep 06 17:33:19 UTC 2025
    - 12.3K bytes
    - Viewed (0)
  8. src/test/java/jcifs/http/NtlmSspTest.java

            message[35] = 0;
    
            // User (8 bytes "user" in Unicode at offset 124)
            message[36] = 8; // Length
            message[37] = 0;
            message[38] = 8; // Max Length
            message[39] = 0;
            message[40] = 124; // Offset
            message[41] = 0;
            message[42] = 0;
            message[43] = 0;
    
            // Workstation (22 bytes "WORKSTATION" in Unicode at offset 132)
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 04:51:33 UTC 2025
    - 11.4K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/util/concurrent/RateLimiterTest.java

        RateLimiter limiter = RateLimiter.create(5.0, 4000, MILLISECONDS, 1.0, stopwatch);
        for (int i = 0; i < 8; i++) {
          limiter.acquire(); // #1
        }
        stopwatch.sleepMillis(340); // #2
        for (int i = 0; i < 8; i++) {
          limiter.acquire(); // #3
        }
        assertEvents(
            "R0.00, R0.20, R0.20, R0.20, R0.20, R0.20, R0.20, R0.20", // #1
            "U0.34", // #2
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 21.9K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/util/concurrent/RateLimiterTest.java

        RateLimiter limiter = RateLimiter.create(5.0, 4000, MILLISECONDS, 1.0, stopwatch);
        for (int i = 0; i < 8; i++) {
          limiter.acquire(); // #1
        }
        stopwatch.sleepMillis(340); // #2
        for (int i = 0; i < 8; i++) {
          limiter.acquire(); // #3
        }
        assertEvents(
            "R0.00, R0.20, R0.20, R0.20, R0.20, R0.20, R0.20, R0.20", // #1
            "U0.34", // #2
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 21.9K bytes
    - Viewed (0)
Back to top