Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 234 for Hellox (0.13 sec)

  1. src/cmd/cgo/internal/test/test.go

    void G18298(T18298_1 t) {
    }
    
    // issue 18126
    // cgo check of void function returning errno.
    void Issue18126C(void **p) {}
    
    // issue 18720
    
    #define HELLO "hello"
    #define WORLD "world"
    #define HELLO_WORLD HELLO "\000" WORLD
    
    struct foo { char c; };
    #define SIZE_OF(x) sizeof(x)
    #define SIZE_OF_FOO SIZE_OF(struct foo)
    #define VAR1 VAR
    #define VAR var
    int var = 5;
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  2. pkg/apis/resource/validation/validation_resourceclaimparameters_test.go

    			parameters: func() *resource.ResourceClaimParameters {
    				parameters := testResourceClaimParameters(goodName, goodName, goodRequests)
    				parameters.Labels = map[string]string{
    					"hello-world": badValue,
    				}
    				return parameters
    			}(),
    		},
    		"good-annotations": {
    			parameters: func() *resource.ResourceClaimParameters {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:21:16 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  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. src/internal/trace/traceviewer/emitter.go

    	colorBlack          = "black"                        // 0, 0, 0
    	colorLightGrey      = "grey"                         // 221, 221, 221
    	colorWhite          = "white"                        // 255, 255, 255
    	colorYellow         = "yellow"                       // 255, 255, 0
    	colorOlive          = "olive"                        // 100, 100, 0
    	colorCornflowerBlue = "rail_response"                // 67, 135, 253
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:29:58 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  8. src/crypto/rsa/rsa_test.go

    	}
    }
    
    func TestAllocations(t *testing.T) {
    	if boring.Enabled {
    		t.Skip("skipping allocations test with BoringCrypto")
    	}
    	testenv.SkipIfOptimizationOff(t)
    
    	m := []byte("Hello Gophers")
    	c, err := EncryptPKCS1v15(rand.Reader, &test2048Key.PublicKey, m)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	if allocs := testing.AllocsPerRun(100, func() {
    		p, err := DecryptPKCS1v15(nil, test2048Key, c)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 12 00:55:41 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  9. pkg/apis/resource/validation/validation_resourceclaimtemplate_test.go

    			template: func() *resource.ResourceClaimTemplate {
    				template := testClaimTemplate(goodName, goodNS, goodClaimSpec)
    				template.Labels = map[string]string{
    					"hello-world": badValue,
    				}
    				return template
    			}(),
    		},
    		"good-annotations": {
    			template: func() *resource.ResourceClaimTemplate {
    				template := testClaimTemplate(goodName, goodNS, goodClaimSpec)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/AbstractCrossTaskIncrementalCompilationIntegrationTest.groovy

            source api: ["class A {}", "class B { }"], impl: ["class ImplA extends A {}", """import org.apache.commons.lang3.StringUtils;
    
                class ImplB extends B {
                   public static String HELLO = StringUtils.capitalize("hello");
                }"""]
            impl.snapshot { run language.compileTaskName }
    
            when:
            buildFile.text = buildFile.text.replace('3.3', '3.3.1')
            run "impl:${language.compileTaskName}"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:55:46 UTC 2024
    - 12.4K bytes
    - Viewed (0)
Back to top