Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 161 for 1e23 (0.06 sec)

  1. okhttp/src/test/java/okhttp3/internal/http2/Http2Test.kt

        }.also { expected ->
          assertThat(expected.message)
            .isEqualTo("PROTOCOL_ERROR: FLAG_COMPRESSED without SETTINGS_COMPRESS_DATA")
        }
      }
    
      @Test fun readPaddedDataFrame() {
        val dataLength = 1123
        val expectedData = ByteArray(dataLength)
        Arrays.fill(expectedData, 2.toByte())
        val paddingLength = 254
        val padding = ByteArray(paddingLength)
        Arrays.fill(padding, 0.toByte())
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/GroovyIncrementalCompilationIntegrationTest.groovy

            when:
            file("src/main/${languageName}/TopLevel.${languageName}").text = """
                public class TopLevel {
                   static class Inner {
                      public static final int CONST = 1223;
                   }
                }
            """
    
            then:
            succeeds language.compileTaskName
            outputs.recompiledClasses('MyClass', 'MyAnnotation', 'TopLevel$Inner', 'TopLevel')
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  3. pkg/apis/apiserverinternal/validation/validation_test.go

    			DecodableVersions: []string{"v1", "mygroup_com/v2"},
    			ServedVersions:    []string{"v1", "mygroup_com/v2"},
    		},
    		expectedErr: `[].decodableVersions[1]: Invalid value: "mygroup_com/v2": group part: a lowercase RFC 1123 subdomain must consist of lower case alphanumeric characters, '-' or '.', and must start and end with an alphanumeric character (e.g. 'example.com', regex used for validation is '[a-z0-9]([-a-z0-9]*[a-z0-9])?(\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*')`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 13 21:43:49 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  4. docs/pt/docs/tutorial/schema-extra-example.md

    ```Python hl_lines="15-23"
    {!../../../docs_src/schema_extra_example/tutorial001.py!}
    ```
    
    Essas informações extras serão adicionadas como se encontram no **JSON Schema** de resposta desse modelo e serão usadas na documentação da API.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  5. pkg/apis/certificates/validation/validation_test.go

    					Request:    newCSRPEM(t),
    					SignerName: "example.com/",
    				},
    			},
    			errs: field.ErrorList{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 61K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/util/pkiutil/pki_helpers.go

    // altNames is passed in with a pointer, and the struct is modified
    // valid IP address strings are parsed and added to altNames.IPs as net.IP's
    // RFC-1123 compliant DNS strings are added to altNames.DNSNames as strings
    // RFC-1123 compliant wildcard DNS strings are added to altNames.DNSNames as strings
    // certNames is used to print user facing warnings and should be the name of the cert the altNames will be used for
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  7. cmd/erasure-decode_test.go

    	{dataBlocks: 3, onDisks: 6, offDisks: 0, blocksize: int64(blockSizeV2), data: int64(2 * blockSizeV2), offset: 1023, length: int64(blockSizeV2) + 1024, algorithm: DefaultBitrotAlgorithm, shouldFail: false, shouldFailQuorum: false},             // 28
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jan 30 20:43:25 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/cel/library/authz.go

    //
    // Returns an Authorizer configured to check authorization for the provided service account namespace and name.
    // If the name is not a valid DNS subdomain string (as defined by RFC 1123), an error is returned.
    // If the namespace is not a valid DNS label (as defined by RFC 1123), an error is returned.
    //
    //	<Authorizer>.serviceAccount(<string>, <string>) <Authorizer>
    //
    // Examples:
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 21:31:27 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  9. docs/ru/docs/tutorial/response-model.md

        {!> ../../../docs_src/response_model/tutorial001_01_py310.py!}
        ```
    
    === "Python 3.9+"
    
        ```Python hl_lines="18  23"
        {!> ../../../docs_src/response_model/tutorial001_01_py39.py!}
        ```
    
    === "Python 3.8+"
    
        ```Python hl_lines="18  23"
        {!> ../../../docs_src/response_model/tutorial001_01.py!}
        ```
    
    FastAPI будет использовать этот возвращаемый тип для:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  10. docs/em/docs/tutorial/response-model.md

    👆 💪 ⚙️ **🆎 ✍** 🎏 🌌 👆 🔜 🔢 💽 🔢 **🔢**, 👆 💪 ⚙️ Pydantic 🏷, 📇, 📖, 📊 💲 💖 🔢, 🎻, ♒️.
    
    === "🐍 3️⃣.6️⃣ &amp; 🔛"
    
        ```Python hl_lines="18  23"
        {!> ../../../docs_src/response_model/tutorial001_01.py!}
        ```
    
    === "🐍 3️⃣.9️⃣ &amp; 🔛"
    
        ```Python hl_lines="18  23"
        {!> ../../../docs_src/response_model/tutorial001_01_py39.py!}
        ```
    
    === "🐍 3️⃣.1️⃣0️⃣ &amp; 🔛"
    
        ```Python hl_lines="16  21"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 16K bytes
    - Viewed (0)
Back to top