Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for defghijk (0.15 sec)

  1. test/fixedbugs/issue44739.go

    // until link time (e.g. gostrings).
    
    package main
    
    import (
    	"fmt"
    )
    
    type T struct {
    	x [4]byte
    	y [8]byte
    }
    
    var st T
    
    const (
    	gostring1 = "abc"
    	gostring2 = "defghijk"
    	gostring3 = "lmnopqrs"
    )
    
    func f(a T, _ byte, b T) bool {
    	// initialization of a,b
    	// tests unaligned store
    	return a.y == b.y
    }
    
    func g(a T) {
    	// test load of unaligned
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 10 19:33:23 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/join_test.go

    			flags: map[string]string{
    				options.TokenStr:                 "aaaaaa.0123456789aaaaaa",
    				options.TLSBootstrapToken:        "abcdef.0123456789abcdef",
    				options.TokenDiscovery:           "defghi.0123456789defghi",
    				options.TokenDiscoverySkipCAHash: "true",
    			},
    			validate: func(t *testing.T, data *joinData) {
    				// validate that TLSBootstrapToken and BootstrapToken.Token values are preserved into join data
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 12:26:20 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/util/internal/DisconnectableInputStreamTest.groovy

            def instr = new DisconnectableInputStream(source, toActionExecuter(executorFactory), 10)
    
            run {
                syncAt(1)
                assertReads(instr, 'abc')
                assertReads(instr, 'defghi')
                assertReads(instr, 'j')
            }
    
            instr.close()
        }
    
        @Test
        void readerThreadStopsReadingAfterClose() {
            def source = stream()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 07 08:18:46 UTC 2021
    - 8.5K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/EventListenerTest.kt

            .bodyDelay(responseBodyStartDelay, TimeUnit.MILLISECONDS)
            .throttleBody(5, responseBodyEndDelay, TimeUnit.MILLISECONDS)
            .body("fghijk")
            .build(),
        )
        call.execute().use { response ->
          assertThat(response.body.string()).isEqualTo("fghijk")
        }
    
        // Confirm the events occur when expected.
        listener.takeEvent(CallStart::class.java, 0L)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 56.9K bytes
    - Viewed (0)
Back to top