Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 441 for inNode (0.2 sec)

  1. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.Node.pb

    SataQiu <******@****.***> 1713430345 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. .github/workflows/mint/nginx-4-node.conf

    Harshavardhana <******@****.***> 1715791949 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 16:52:29 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. .github/workflows/mint/nginx-8-node.conf

    Harshavardhana <******@****.***> 1715791949 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 16:52:29 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/HEAD/core.v1.Node.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 13 23:06:39 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. docs_src/security/tutorial007_an_py39.py

    ):
        current_username_bytes = credentials.username.encode("utf8")
        correct_username_bytes = b"stanleyjobson"
        is_correct_username = secrets.compare_digest(
            current_username_bytes, correct_username_bytes
        )
        current_password_bytes = credentials.password.encode("utf8")
        correct_password_bytes = b"swordfish"
        is_correct_password = secrets.compare_digest(
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Mar 26 16:56:53 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/executer/TaskOrderSpecsTest.groovy

                [':b', ':z', ':s'],
                [':z', ':a', ':x', ':y', ':b', ':d'],
                [ ':a' ],
                [ ':c' ],
                []
            ]
        }
    
        def "can match on 'any' rule nested inside 'exact' rule (#executedTasks)"() {
            def spec = exact(any(':a', ':b'), ':c')
    
            when:
            spec.assertMatches(-1, executedTasks)
    
            then:
            noExceptionThrown()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  7. analysis/analysis-api-impl-base/src/org/jetbrains/kotlin/analysis/api/impl/base/permissions/KaBaseWriteActionStartedChecker.kt

    import com.intellij.openapi.application.ApplicationListener
    import com.intellij.openapi.application.ApplicationManager
    
    /**
     * Ensures that a [WriteActionStartedInAnalysisContextException] is thrown if a write action was started *inside* an
     * [analyze][org.jetbrains.kotlin.analysis.api.analyze] call.
     */
    internal class KaBaseWriteActionStartedChecker(parentDisposable: Disposable) {
        private val currentAnalyzeCallDepth = ThreadLocal.withInitial { 0 }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:22:24 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/core/misc/Base64UtilTest.java

        /**
         * @throws Exception
         */
        public void testEncode() throws Exception {
            assertEquals("1", ENCODED_DATA, Base64Util.encode(BINARY_DATA));
            System.out.println(Base64Util.encode(new byte[] { 'a', 'b', 'c' }));
        }
    
        /**
         * @throws Exception
         */
        public void testDecode() throws Exception {
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. testing/smoke-test/src/smokeTest/resources/org/gradle/smoketests/kotlin-multiplatform-js-jvm-example/src/jvmMain/kotlin/samples/Base64.kt

    import java.util.Base64
    
    actual object Base64Factory {
        actual fun createEncoder(): Base64Encoder = JvmBase64Encoder
    }
    
    object JvmBase64Encoder : Base64Encoder {
        override fun encode(src: ByteArray): ByteArray {
            return Base64.getEncoder().encode(src)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 07:33:24 UTC 2024
    - 907 bytes
    - Viewed (0)
  10. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/Unsupported.kt

    
    inline fun <reified T : Any> unsupported(
        documentationSection: DocumentationSection = DocumentationSection.RequirementsDisallowedTypes
    ): Codec<T> = codec(
        encode = { value ->
            logUnsupportedBaseType("serialize", T::class, unpackType(value), documentationSection)
        },
        decode = {
            logUnsupported("deserialize", T::class, documentationSection)
            null
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 20:43:52 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top