Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 407 for xHello (0.37 sec)

  1. src/internal/reflectlite/all_test.go

    				}
    			}
    		})
    	}
    }
    
    var _i = 7
    
    var valueToStringTests = []pair{
    	{123, "123"},
    	{123.5, "123.5"},
    	{byte(123), "123"},
    	{"abc", "abc"},
    	{T{123, 456.75, "hello", &_i}, "reflectlite_test.T{123, 456.75, hello, *int(&7)}"},
    	{new(chan *T), "*chan *reflectlite_test.T(&chan *reflectlite_test.T)"},
    	{[10]int{1, 2, 3, 4, 5, 6, 7, 8, 9, 10}, "[10]int{1, 2, 3, 4, 5, 6, 7, 8, 9, 10}"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 19:26:08 UTC 2023
    - 24.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/custom_plugins.adoc

    [[sec:writing_a_simple_plugin]]
    The following sample creates a `GreetingPlugin`, which adds a `hello` task to a project when applied:
    
    ====
    include::sample[dir="snippets/customPlugins/customPlugin/kotlin",files="build.gradle.kts[tag=no-script-plugin]"]
    include::sample[dir="snippets/customPlugins/customPlugin/groovy",files="build.gradle[tag=no-script-plugin]"]
    ====
    
    ----
    $ gradle -q hello
    include::{snippetsPath}/customPlugins/customPlugin/tests/customPlugin.out[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 21:49:49 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/plugins.adoc

    include::sample[dir="snippets/plugins/multiproject/groovy", files="settings.gradle[tags=include-subprojects];build.gradle[tags=plugins-on-subprojects];hello-a/build.gradle[];hello-b/build.gradle[];goodbye-c/build.gradle[]"]
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 04:11:37 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  4. pkg/apis/resource/structured/namedresources/validation/validation_test.go

    		},
    		"string-slice": {
    			resources: testResources([]resourceapi.NamedResourcesInstance{{Name: goodName, Attributes: []resourceapi.NamedResourcesAttribute{{Name: goodName, NamedResourcesAttributeValue: resourceapi.NamedResourcesAttributeValue{StringSliceValue: &resourceapi.NamedResourcesStringSlice{Strings: []string{"hello"}}}}}}}),
    		},
    		"version-okay": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:13 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  5. src/internal/syscall/windows/registry/registry_test.go

    	{Type: registry.SZ, Name: "String3", Value: "Hello World"},
    	{Type: registry.SZ, Name: "String4", Value: "Hello World\000", WillFail: true},
    	{Type: registry.EXPAND_SZ, Name: "ExpString1", Value: ""},
    	{Type: registry.EXPAND_SZ, Name: "ExpString2", Value: "\000", WillFail: true},
    	{Type: registry.EXPAND_SZ, Name: "ExpString3", Value: "Hello World"},
    	{Type: registry.EXPAND_SZ, Name: "ExpString4", Value: "Hello\000World", WillFail: true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 19:19:00 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/DiagnosticToProblemListener.java

         * <pre>
         * /.../src/main/java/Foo.java:10: error: ';' expected
         *                     String s = "Hello, World!"
         *                                               ^
         * /.../Bar.java:10: warning: [cast] redundant cast to String
         *                     String s = (String)"Hello World";
         *                                ^
         * 1 error
         * 1 warning
         * </pre>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 06:17:43 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  7. pkg/apis/resource/validation/validation_resourceclassparameters_test.go

    			parameters: func() *resource.ResourceClassParameters {
    				parameters := testResourceClassParameters(goodName, goodName, goodFilters)
    				parameters.Labels = map[string]string{
    					"hello-world": badValue,
    				}
    				return parameters
    			}(),
    		},
    		"good-annotations": {
    			parameters: func() *resource.ResourceClassParameters {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:21:16 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/RequestTest.kt

    import okio.Buffer
    import okio.ByteString.Companion.encodeUtf8
    import org.junit.jupiter.api.Test
    
    class RequestTest {
      @Test
      fun constructor() {
        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
    - 16.4K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top