Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 358 for xHello (0.09 sec)

  1. okhttp/src/test/java/okhttp3/MultipartBodyTest.kt

        }
      }
    
      @Test
      fun singlePart() {
        val expected =
          """
          |--123
          |
          |Hello, World!
          |--123--
          |
          """.trimMargin().replace("\n", "\r\n")
        val body =
          MultipartBody.Builder("123")
            .addPart("Hello, World!".toRequestBody(null))
            .build()
        assertThat(body.boundary).isEqualTo("123")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/platform/BinaryNativePlatformIntegrationTest.groovy

            testApp.executable.writeSources(file("src/exe"))
            testApp.library.writeSources(file("src/hello"))
            when:
            buildFile << """
    model {
        components {
            exe(NativeExecutableSpec) {
                sources {
                    cpp.lib library: 'hello', linkage: 'static'
                }
            }
            hello(NativeLibrarySpec)
        }
    }
    """
    
            and:
            succeeds "exeExecutable"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  3. src/regexp/all_test.go

    	{"hello, (.+)", "goodbye, ${1}", "hello, world", "goodbye, world"},
    	{"hello, (.+)", "goodbye, $1x", "hello, world", "goodbye, "},
    	{"hello, (.+)", "goodbye, ${1}x", "hello, world", "goodbye, worldx"},
    	{"hello, (.+)", "<$0><$1><$2><$3>", "hello, world", "<hello, world><world><><>"},
    	{"hello, (?P<noun>.+)", "goodbye, $noun!", "hello, world", "goodbye, world!"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/ProcessInTaskIntegrationTest.groovy

            buildFile("""
                tasks.register("sneakyTask", SneakyTask) {}
            """)
    
            when:
            configurationCacheFails(":sneakyTask")
    
            then:
            failure.assertOutputContains("Hello")
            problems.assertFailureHasProblems(failure) {
                withProblem("$location: external process started")
            }
    
            where:
            snippetsFactory                      | location
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskDefinitionIntegrationTest.groovy

            when:
            run 'myTask'
    
            then:
            outputContains("hello 42")
    
            where:
            description | constructorArgs
            'List'      | "['hello', 42]"
            'Object[]'  | "(['hello', 42] as Object[])"
        }
    
        def "task constructor can use identity properties of task"() {
            given:
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 14:43:53 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  6. src/encoding/xml/read_test.go

    			`<table xmlns="http://www.w3.org/TR/html4/">hello</table>` +
    			`<table xmlns="http://www.w3schools.com/furniture">world</table>` +
    			`</Tables>`,
    		tab: Tables{"hello", "world"},
    	},
    	{
    		xml: `<Tables>` +
    			`<table xmlns="http://www.w3schools.com/furniture">world</table>` +
    			`<table xmlns="http://www.w3.org/TR/html4/">hello</table>` +
    			`</Tables>`,
    		tab: Tables{"hello", "world"},
    	},
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  7. src/crypto/tls/handshake_server_tls13.go

    	hs.transcript.Write(chHash)
    
    	helloRetryRequest := &serverHelloMsg{
    		vers:              hs.hello.vers,
    		random:            helloRetryRequestRandom,
    		sessionId:         hs.hello.sessionId,
    		cipherSuite:       hs.hello.cipherSuite,
    		compressionMethod: hs.hello.compressionMethod,
    		supportedVersion:  hs.hello.supportedVersion,
    		selectedGroup:     selectedGroup,
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/server/DefaultDaemonConnectionTest.groovy

        }
    
        def "forwards queued input events to stdin handler until end of input received"() {
            StdinHandler handler = Mock()
            def input1 = new ForwardInput("hello".bytes)
            def input2 = new ForwardInput("hello".bytes)
            def closeInput = new CloseInput()
            def received = new CountDownLatch(1)
    
            when:
            daemonConnection.onStdin(handler)
            connection.queueIncoming(input1)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:37 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/sourceset/GeneratedSourcesIntegrationTest.groovy

            buildFile << """
    apply plugin: 'c'
    
    model {
        components {
            main(NativeExecutableSpec) {
                sources {
                    c.lib library: 'hello', linkage: 'static'
                }
            }
            hello(NativeLibrarySpec) {
                sources {
                    c {
                        generatedBy tasks.generateCSources
                    }
                }
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/NativeBinariesIntegrationTest.groovy

        components {
            main(NativeLibrarySpec)
        }
    }
    """
    
            and:
            file("src/main/cpp/hello1.cpp") << """
                void hello() {
                }
    """
    
            and:
            file("src/main/cpp/hello2.cpp") << """
                void hello() {
                }
    """
    
            when:
            fails "mainSharedLibrary"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 11.3K bytes
    - Viewed (0)
Back to top