Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 79 for 012345678 (0.28 sec)

  1. src/cmd/internal/pkgpath/pkgpath.go

    // encoding to the underscore encoding character.
    var v3UnderscoreCodes = map[byte]byte{
    	'_': '_',
    	'.': '0',
    	'/': '1',
    	'*': '2',
    	',': '3',
    	'{': '4',
    	'}': '5',
    	'[': '6',
    	']': '7',
    	'(': '8',
    	')': '9',
    	'"': 'a',
    	' ': 'b',
    	';': 'c',
    }
    
    // toSymbolV3 converts a package path using the third mangling scheme.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 20 02:13:02 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  2. src/os/env.go

    }
    
    // isShellSpecialVar reports whether the character identifies a special
    // shell variable such as $*.
    func isShellSpecialVar(c uint8) bool {
    	switch c {
    	case '*', '#', '$', '@', '!', '?', '-', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9':
    		return true
    	}
    	return false
    }
    
    // isAlphaNum reports whether the byte is an ASCII letter, number, or underscore.
    func isAlphaNum(c uint8) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  3. src/syscall/dirent_test.go

    func TestDirent(t *testing.T) {
    	const (
    		direntBufSize   = 2048 // arbitrary? See https://go.dev/issue/37323.
    		filenameMinSize = 11
    	)
    
    	d := t.TempDir()
    	t.Logf("tmpdir: %s", d)
    
    	for i, c := range []byte("0123456789") {
    		name := string(bytes.Repeat([]byte{c}, filenameMinSize+i))
    		err := os.WriteFile(filepath.Join(d, name), nil, 0644)
    		if err != nil {
    			t.Fatalf("writefile: %v", err)
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. android/guava-tests/benchmark/com/google/common/base/AsciiBenchmark.java

     *
     * @author Kevin Bourrillion
     */
    public class AsciiBenchmark {
      private static final String ALPHA = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
      private static final String NONALPHA = "0123456789`~-_=+[]{}|;:',.<>/?!@#$%^&*()\"\\";
    
      @Param({"20", "2000"})
      int size;
    
      @Param({"2", "20"})
      int nonAlphaRatio; // one non-alpha char per this many chars
    
      @Param boolean noWorkToDo;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 4.8K bytes
    - Viewed (0)
  5. guava-tests/benchmark/com/google/common/base/AsciiBenchmark.java

     *
     * @author Kevin Bourrillion
     */
    public class AsciiBenchmark {
      private static final String ALPHA = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
      private static final String NONALPHA = "0123456789`~-_=+[]{}|;:',.<>/?!@#$%^&*()\"\\";
    
      @Param({"20", "2000"})
      int size;
    
      @Param({"2", "20"})
      int nonAlphaRatio; // one non-alpha char per this many chars
    
      @Param boolean noWorkToDo;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 4.8K bytes
    - Viewed (0)
  6. pkg/kubelet/kuberuntime/kuberuntime_container_windows_test.go

    		},
    	}
    
    	gmsaCredSpecName := "gmsa spec name"
    	gmsaCredSpec := "credential spec"
    	username := "ContainerAdministrator"
    	asHostProcess := true
    	pod := &v1.Pod{
    		ObjectMeta: metav1.ObjectMeta{
    			UID:       "12345678",
    			Name:      "bar",
    			Namespace: "new",
    		},
    		Spec: v1.PodSpec{
    			Containers: []v1.Container{
    				{
    					Name:            "foo",
    					Image:           "busybox",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  7. src/go/doc/comment/markdown.go

    	if len(line) == 0 {
    		return
    	}
    	switch line[0] {
    	case '+', '-', '*', '#':
    		// Escape what would be the start of an unordered list or heading.
    		out.WriteByte('\\')
    	case '0', '1', '2', '3', '4', '5', '6', '7', '8', '9':
    		i := 1
    		for i < len(line) && '0' <= line[i] && line[i] <= '9' {
    			i++
    		}
    		if i < len(line) && (line[i] == '.' || line[i] == ')') {
    			// Escape what would be the start of an ordered list.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:48 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/util/Hexdump.java

            ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' '
        };
    
        public static final char[] HEX_DIGITS = { 
            '0', '1', '2', '3', '4', '5',
            '6', '7', '8', '9', 'A', 'B',
            'C', 'D', 'E', 'F'
        };
    
    /** 
     * Generate "hexdump" output of the buffer at src like the following:
     *
     * <p><blockquote><pre>
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 5.4K bytes
    - Viewed (0)
  9. src/go/printer/testdata/linebreaks.golden

    	_ = []byte(`
    foo bar foo bar foo bar
    `) //TODO-
    }
    
    func _() {
    	_ = "abc"		// foo
    	_ = `abc_0123456789_`	// foo
    }
    
    func _() {
    	_ = "abc"	// foo
    	_ = `abc
    0123456789
    ` // foo
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 11 22:03:18 UTC 2018
    - 5.1K bytes
    - Viewed (0)
  10. src/go/printer/testdata/linebreaks.input

    	_ = []byte(`
    foo bar foo bar foo bar
    `) //TODO-
    }
    
    func _() {
    	_ = "abc" // foo
    	_ = `abc_0123456789_` // foo
    }
    
    func _() {
    	_ = "abc" // foo
    	_ = `abc
    0123456789
    ` // foo
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 11 22:03:18 UTC 2018
    - 5.1K bytes
    - Viewed (0)
Back to top