Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 150 for 0123456789_ (0.17 sec)

  1. test-site/activator.bat

        shift
        shift
        goto argsloop
      )
    
      if "%~1"=="-jvm-debug" (
        if not "%~2"=="" (
          rem This piece of magic somehow checks that an argument is a number
          for /F "delims=0123456789" %%i in ("%~2") do (
            set var="%%i"
          )
          if defined var (
            rem Not a number, assume no argument given and default to 9999
            set JPDA_PORT=9999
          ) else (
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 7.2K bytes
    - Viewed (0)
  2. src/slices/example_test.go

    	fmt.Println(grow)
    	fmt.Println(len(grow))
    	fmt.Println(cap(grow))
    	// Output:
    	// 4
    	// [0 42 -10 8]
    	// 4
    	// 8
    }
    
    func ExampleClip() {
    	a := [...]int{0, 1, 2, 3, 4, 5, 6, 7, 8, 9}
    	s := a[:4:10]
    	clip := slices.Clip(s)
    	fmt.Println(cap(s))
    	fmt.Println(clip)
    	fmt.Println(len(clip))
    	fmt.Println(cap(clip))
    	// Output:
    	// 10
    	// [0 1 2 3]
    	// 4
    	// 4
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 17:28:50 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/hash/Crc32cHashFunctionTest.java

      public void testSomeOtherKnownValues() {
        assertCrc(0x22620404, "The quick brown fox jumps over the lazy dog".getBytes(UTF_8));
        assertCrc(0xE3069283, "123456789".getBytes(UTF_8));
        assertCrc(0xf3dbd4fe, "1234567890".getBytes(UTF_8));
        assertCrc(0xBFE92A83, "23456789".getBytes(UTF_8));
      }
    
      public void testAgainstSimplerImplementation() {
        Random r = new Random(1234567);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Dec 23 18:30:33 UTC 2020
    - 6.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/envelope_test.go

    	"testing"
    
    	"k8s.io/apiserver/pkg/storage/value"
    	aestransformer "k8s.io/apiserver/pkg/storage/value/encrypt/aes"
    )
    
    const (
    	testText              = "abcdefghijklmnopqrstuvwxyz"
    	testContextText       = "0123456789"
    	testEnvelopeCacheSize = 10
    )
    
    // testEnvelopeService is a mock Envelope service which can be used to simulate remote Envelope services
    // for testing of Envelope based encryption providers.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 14:23:50 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/rsc.io/markdown/list.go

    			break
    		}
    		n++
    	}
    	bullet := t.peek()
    	var num int
    Switch:
    	switch bullet {
    	default:
    		return false
    	case '-', '*', '+':
    		t.trim(bullet)
    		n++
    	case '0', '1', '2', '3', '4', '5', '6', '7', '8', '9':
    		for j := t.i; ; j++ {
    			if j >= len(t.text) {
    				return false
    			}
    			c := t.text[j]
    			if c == '.' || c == ')' {
    				// success
    				bullet = c
    				j++
    				n += j - t.i
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  6. src/net/http/internal/chunked_test.go

    		// the same as the bufio ReaderSize below (the minimum), so even
    		// though we're going to try to Read with a buffer larger enough to also
    		// receive "foo", the second chunk header won't be read yet.
    		const fillBufChunk = "0123456789a"
    		const shortChunk = "foo"
    		w.Write([]byte(fillBufChunk))
    		w.Write([]byte(shortChunk))
    		w.Close()
    
    		r := NewChunkedReader(bufio.NewReaderSize(&b, 16))
    		buf := make([]byte, len(fillBufChunk)+len(shortChunk))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 04 20:45:19 UTC 2024
    - 8K bytes
    - Viewed (0)
  7. src/strconv/quote_test.go

    	{string(rune(28)), false},
    	{string(rune(29)), false},
    	{string(rune(30)), false},
    	{string(rune(31)), false},
    	{string(rune(0x7F)), false},
    	{`' !"#$%&'()*+,-./:;<=>?@[\]^_{|}~`, true},
    	{`0123456789`, true},
    	{`ABCDEFGHIJKLMNOPQRSTUVWXYZ`, true},
    	{`abcdefghijklmnopqrstuvwxyz`, true},
    	{`☺`, true},
    	{"\x80", false},
    	{"a\xe0\xa0z", false},
    	{"\ufeffabc", false},
    	{"a\ufeffz", false},
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 31 20:37:15 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  8. src/archive/tar/strconv.go

    	if err != nil {
    		return time.Time{}, ErrHeader
    	}
    	if len(sn) == 0 {
    		return time.Unix(secs, 0), nil // No sub-second values
    	}
    
    	// Parse the nanoseconds.
    	if strings.Trim(sn, "0123456789") != "" {
    		return time.Time{}, ErrHeader
    	}
    	if len(sn) < maxNanoSecondDigits {
    		sn += strings.Repeat("0", maxNanoSecondDigits-len(sn)) // Right pad
    	} else {
    		sn = sn[:maxNanoSecondDigits] // Right truncate
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 01 14:28:42 UTC 2023
    - 9K bytes
    - Viewed (0)
  9. pkg/kube/util_test.go

    		name             string
    		jobName          string
    		wantTypeMetadata metav1.TypeMeta
    		wantName         types.NamespacedName
    	}{
    		{
    			name:    "cron-job-name-sec",
    			jobName: "sec-1234567890",
    			wantTypeMetadata: metav1.TypeMeta{
    				Kind:       "CronJob",
    				APIVersion: "batch/v1",
    			},
    			wantName: types.NamespacedName{
    				Name: "sec",
    			},
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 04:16:49 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  10. src/cmd/asm/internal/asm/testdata/ppc64_p10.s

    	PSTXSD V1, $1, 12345678(R2)             // 041000bcb822614e
    	PSTXSSP V1, $1, 1234567890(R0)          // 04104996bc2002d2
    	PSTXSSP V1, $1, 1234567890(R1)          // 04104996bc2102d2
    	PSTXSSP V1, $0, 1234567890(R3)          // 04004996bc2302d2
    	PSTXV VS6, $1, 1234567890(R5)           // 04104996d8c502d2
    	PSTXVP VS2, $1, 12345678(R2)            // 041000bcf842614e
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 23 20:52:57 UTC 2023
    - 14.3K bytes
    - Viewed (0)
Back to top