Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 43 of 43 for 2345678 (0.14 sec)

  1. src/time/format_test.go

    	}
    	if time.Second() != 57 {
    		t.Errorf("%s: bad second: %d not %d", test.name, time.Second(), 57)
    	}
    	// Nanoseconds must be checked against the precision of the input.
    	nanosec, err := strconv.ParseUint("012345678"[:test.fracDigits]+"000000000"[:9-test.fracDigits], 10, 0)
    	if err != nil {
    		panic(err)
    	}
    	if time.Nanosecond() != int(nanosec) {
    		t.Errorf("%s: bad nanosecond: %d not %d", test.name, time.Nanosecond(), nanosec)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:58:29 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  2. pkg/kubelet/apis/config/types.go

    	// - The URL path of an imageMatch must be a prefix of the target image URL path.
    	// - If the imageMatch contains a port, then the port must match in the image as well.
    	//
    	// Example values of matchImages:
    	//   - `123456789.dkr.ecr.us-east-1.amazonaws.com`
    	//   - `*.azurecr.io`
    	//   - `gcr.io`
    	//   - `*.*.registry.io`
    	//   - `registry.io:8080/path`
    	MatchImages []string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  3. src/cmd/link/link_test.go

    		break
    	}
    	if !found {
    		t.Errorf("no LC_BUILD_VERSION load command found")
    	}
    }
    
    const Issue34788src = `
    
    package blah
    
    func Blah(i int) int {
    	a := [...]int{1, 2, 3, 4, 5, 6, 7, 8}
    	return a[i&7]
    }
    `
    
    func TestIssue34788Android386TLSSequence(t *testing.T) {
    	testenv.MustHaveGoBuild(t)
    
    	// This is a cross-compilation test, so it doesn't make
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:02 UTC 2024
    - 43.5K bytes
    - Viewed (0)
Back to top