Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 407 for xHello (0.26 sec)

  1. pkg/controller/certificates/signer/signer_test.go

    		verify func(*testing.T, []testclient.Action)
    	}{
    		{
    			name:       "should sign if signerName is kubernetes.io/kube-apiserver-client",
    			signerName: "kubernetes.io/kube-apiserver-client",
    			commonName: "hello-world",
    			org:        []string{"some-org"},
    			usages:     []capi.KeyUsage{capi.UsageClientAuth, capi.UsageDigitalSignature, capi.UsageKeyEncipherment},
    			approved:   true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 02 21:12:04 UTC 2022
    - 15K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskTimeoutIntegrationTest.groovy

                }
            }
        }
    
        def "fails when negative timeout is specified"() {
            given:
            buildFile << """
                task broken() {
                    doLast {
                        println "Hello"
                    }
                    timeout = Duration.ofMillis(-1)
                }
                """
    
            expect:
            2.times {
                fails "broken"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/RequestCommonTest.kt

    import okhttp3.HttpUrl.Companion.toHttpUrl
    import okhttp3.RequestBody.Companion.toRequestBody
    
    class RequestCommonTest {
      @Test
      fun constructorNormal() {
        val url = "https://example.com/".toHttpUrl()
        val body = "hello".toRequestBody()
        val headers = headersOf("User-Agent", "RequestTest")
        val method = "PUT"
        val request =
          Request(
            url = url,
            headers = headers,
            method = method,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. pkg/credentialprovider/keyring_test.go

    		}
    	}
    }
    
    func TestDockerKeyringForGlob(t *testing.T) {
    	tests := []struct {
    		globURL   string
    		targetURL string
    	}{
    		{
    			globURL:   "https://hello.kubernetes.io",
    			targetURL: "hello.kubernetes.io",
    		},
    		{
    			globURL:   "https://*.docker.io",
    			targetURL: "prefix.docker.io",
    		},
    		{
    			globURL:   "https://prefix.*.io",
    			targetURL: "prefix.docker.io",
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 15 10:47:22 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/RepositoriesDeclaredInSettingsIntegrationTest.groovy

            pluginPortal.start()
            def taskName = 'pluginTask'
            def message = 'hello from plugin'
            def plugin = new PluginBuilder(testDirectory.file("some-plugin"))
                .addPluginWithPrintlnTask(taskName, message, 'org.gradle.test.hello-world')
                .publishAs("g", "a", "1.0", pluginPortal, createExecuter())
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:56:27 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  6. cmd/auth-handler_test.go

    		// Short Content-Md5 header.
    		{mustNewSignedShortMD5Request(http.MethodPut, "http://127.0.0.1:9000/", 5, bytes.NewReader([]byte("hello")), t), ErrInvalidDigest},
    		// When request is properly signed, but has bad Content-MD5 header.
    		{mustNewSignedBadMD5Request(http.MethodPut, "http://127.0.0.1:9000/", 5, bytes.NewReader([]byte("hello")), t), ErrBadDigest},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/apis/kubeadm/validation/validation_test.go

    		{[]string{"--foo=bar"}, true},
    		{[]string{"--config=hello"}, true},
    		{[]string{"--config=hello", "--ignore-preflight-errors=all"}, true},
    		// Expected to succeed, --config is mixed with skip-* flags only or no other flags
    		{[]string{"--config=hello", "--skip-token-print=true"}, true},
    		{[]string{"--config=hello", "--ignore-preflight-errors=baz", "--skip-token-print"}, true},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl-tooling-builders/src/crossVersionTest/groovy/org/gradle/kotlin/dsl/tooling/builders/r54/KotlinBuildScriptModelCrossVersionSpec.groovy

            withDefaultSettings()
            withBuildScript("""
                plugins {
                    id("org.gradle.hello-world") version "0.2"
                }
            """)
    
            expect:
            assertThat(
                canonicalClassPath().collect { it.name } as List<String>,
                hasItems("gradle-hello-world-plugin-0.2.jar")
            )
        }
    
        def "can fetch classpath of script plugin with buildscript block"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 08:52:51 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  9. docs/site-replication/run-ssec-object-replication.sh

    ./mc ready minio1 --insecure
    ./mc ready minio2 --insecure
    
    # Prepare data for tests
    echo -n "Preparing test data ..."
    mkdir -p /tmp/data
    echo "Hello world" >/tmp/data/plainfile
    echo "Hello from encrypted world" >/tmp/data/encrypted
    touch /tmp/data/defpartsize
    shred -s 500M /tmp/data/defpartsize
    touch /tmp/data/custpartsize
    shred -s 500M /tmp/data/custpartsize
    echo "done"
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  10. pkg/apis/resource/validation/validation_resourceclass_test.go

    			class: func() *resource.ResourceClass {
    				class := testClass(goodName, goodName)
    				class.Labels = map[string]string{
    					"hello-world": badValue,
    				}
    				return class
    			}(),
    		},
    		"good-annotations": {
    			class: func() *resource.ResourceClass {
    				class := testClass(goodName, goodName)
    				class.Annotations = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 10.6K bytes
    - Viewed (0)
Back to top