Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 129 for abcdeff (0.19 sec)

  1. cmd/kubeadm/app/util/config/initconfiguration.go

    )
    
    var (
    	// PlaceholderToken is only set statically to make kubeadm not randomize the token on every run
    	PlaceholderToken = bootstraptokenv1.BootstrapToken{
    		Token: &bootstraptokenv1.BootstrapTokenString{
    			ID:     "abcdef",
    			Secret: "0123456789abcdef",
    		},
    	}
    )
    
    // SetInitDynamicDefaults checks and sets configuration values for the InitConfiguration object
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 05 12:41:16 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  2. src/crypto/tls/tls_test.go

    		return fmt.Errorf("Read = %d, %v, data %q; want 6, nil, foobar", n, err, buf)
    	}
    
    	srv.Write([]byte("abcdef"))
    	srv.Close()
    	time.Sleep(delay)
    	n, err = conn.Read(buf)
    	if n != 6 || string(buf) != "abcdef" {
    		return fmt.Errorf("Read = %d, buf= %q; want 6, abcdef", n, buf)
    	}
    	if err != io.EOF {
    		return fmt.Errorf("Second Read error = %v; want io.EOF", err)
    	}
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  3. src/fmt/fmt_test.go

    	{"%5s", "abcdefghijklmnopqrstuvwxyz", "abcdefghijklmnopqrstuvwxyz"},
    	{"%5s", []byte("abcdefghijklmnopqrstuvwxyz"), "abcdefghijklmnopqrstuvwxyz"},
    	{"%.5s", "abcdefghijklmnopqrstuvwxyz", "abcde"},
    	{"%.5s", []byte("abcdefghijklmnopqrstuvwxyz"), "abcde"},
    	{"%.0s", "日本語日本語", ""},
    	{"%.0s", []byte("日本語日本語"), ""},
    	{"%.5s", "日本語日本語", "日本語日本"},
    	{"%.5s", []byte("日本語日本語"), "日本語日本"},
    	{"%.10s", "日本語日本語", "日本語日本語"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  4. src/internal/types/testdata/check/builtins0.go

    	_ = assert(min(-12345678901234567890, 0) == -12345678901234567890)
    
    	_ = assert(min(1, 2.3) == 1)
    	_ = assert(min(1, 2.3, 'a') == 1)
    
    	_ = assert(min("", "a") == "")
    	_ = assert(min("abcde", "xyz", "foo", "bar") == "abcde")
    
    	const (
    		_ int = min(1.0)
    		_ float32 = min(1, 2)
    		_ int = min(1, 2.3) // ok!
    		_ int = min /* ERROR "cannot use min(1.2, 3) (untyped float constant 1.2) as int value" */ (1.2, 3)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/CacheTest.kt

        transferKind.setBody(mockResponse, "ABCDE\nFGHIJKLMNOPQRSTUVWXYZ", 16)
        server.enqueue(truncateViolently(mockResponse, 16).build())
        server.enqueue(
          MockResponse.Builder()
            .body("Request #2")
            .build(),
        )
        val bodySource = get(server.url("/")).body.source()
        assertThat(bodySource.readUtf8Line()).isEqualTo("ABCDE")
        bodySource.use {
          assertFailsWith<IOException> {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 108.6K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/graph/Traverser.java

       * depth 1, then 2, and so on.
       *
       * <p><b>Example:</b> The following graph with {@code startNode} {@code a} would return nodes in
       * the order {@code abcdef} (assuming successors are returned in alphabetical order).
       *
       * <pre>{@code
       * b ---- a ---- d
       * |      |
       * |      |
       * e ---- c ---- f
       * }</pre>
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 30 20:12:45 UTC 2023
    - 19.8K bytes
    - Viewed (0)
  7. guava/src/com/google/common/graph/Traverser.java

       * depth 1, then 2, and so on.
       *
       * <p><b>Example:</b> The following graph with {@code startNode} {@code a} would return nodes in
       * the order {@code abcdef} (assuming successors are returned in alphabetical order).
       *
       * <pre>{@code
       * b ---- a ---- d
       * |      |
       * |      |
       * e ---- c ---- f
       * }</pre>
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 30 20:12:45 UTC 2023
    - 19.8K bytes
    - Viewed (0)
  8. src/internal/syscall/windows/registry/registry_test.go

    	{Type: registry.MULTI_SZ, Name: "MultiString2", Value: []string{"abc", "", "cba"}},
    	{Type: registry.MULTI_SZ, Name: "MultiString3", Value: []string{""}},
    	{Type: registry.MULTI_SZ, Name: "MultiString4", Value: []string{"abcdef"}},
    	{Type: registry.MULTI_SZ, Name: "MultiString5", Value: []string{"\000"}, WillFail: true},
    	{Type: registry.MULTI_SZ, Name: "MultiString6", Value: []string{"a\000b"}, 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)
  9. src/io/io_test.go

    		if got := sr.Size(); got != tt.want {
    			t.Errorf("Size = %v; want %v", got, tt.want)
    		}
    	}
    }
    
    func TestSectionReader_Max(t *testing.T) {
    	r := strings.NewReader("abcdef")
    	const maxint64 = 1<<63 - 1
    	sr := NewSectionReader(r, 3, maxint64)
    	n, err := sr.Read(make([]byte, 3))
    	if n != 3 || err != nil {
    		t.Errorf("Read = %v %v, want 3, nil", n, err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 09 22:04:41 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  10. src/bufio/bufio_test.go

    	for rno, read := range readers {
    		// Some input data that is longer than the minimum reader buffer size.
    		const n = 10
    		var buf bytes.Buffer
    		for i := 0; i < n; i++ {
    			buf.WriteString("abcdefg")
    		}
    
    		r := NewReaderSize(&buf, minReadBufferSize)
    		readTo := func(delim byte, want string) {
    			data, err := read(r, delim)
    			if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:56:01 UTC 2023
    - 51.5K bytes
    - Viewed (0)
Back to top