Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for 9s (0.14 sec)

  1. platforms/documentation/docs/src/snippets/workerApi/md5CustomTask/tests/md5Task1.out

    > Task :md5
    Generating MD5 for einstein.txt...
    Generating MD5 for feynman.txt...
    Generating MD5 for hawking.txt...
    
    BUILD SUCCESSFUL in 9s
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 170 bytes
    - Viewed (0)
  2. src/runtime/mksizeclasses.go

    			fmt.Printf("d=%d max=%d m=%d n=%d\n", d, max, m, n)
    			panic("bad 32-bit multiply magic")
    		}
    	}
    }
    
    func printComment(w io.Writer, classes []class) {
    	fmt.Fprintf(w, "// %-5s  %-9s  %-10s  %-7s  %-10s  %-9s  %-9s\n", "class", "bytes/obj", "bytes/span", "objects", "tail waste", "max waste", "min align")
    	prevSize := 0
    	var minAligns [pageShift + 1]int
    	for i, c := range classes {
    		if i == 0 {
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:31:27 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/mod/module/pseudo.go

    	return PseudoVersion(major, "", time.Time{}, "000000000000")
    }
    
    // incDecimal returns the decimal string incremented by 1.
    func incDecimal(decimal string) string {
    	// Scan right to left turning 9s to 0s until you find a digit to increment.
    	digits := []byte(decimal)
    	i := len(digits) - 1
    	for ; i >= 0 && digits[i] == '9'; i-- {
    		digits[i] = '0'
    	}
    	if i >= 0 {
    		digits[i]++
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  4. src/time/example_test.go

    	// Fractional seconds can be printed by adding a run of 0s or 9s after
    	// a decimal point in the seconds value in the layout string.
    	// If the layout digits are 0s, the fractional second is of the specified
    	// width. Note that the output has a trailing zero.
    	do("0s for fraction", "15:04:05.00000", "11:06:39.12340")
    
    	// If the fraction in the layout is 9s, trailing zeros are dropped.
    	do("9s for fraction", "15:04:05.99999999", "11:06:39.1234")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 13 01:05:00 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  5. internal/config/identity/openid/jwt_test.go

    		expectErr bool
    	}{
    		{
    			reqURL:   "http://127.0.0.1:8443/?Token=xxxxx",
    			duration: time.Duration(60) * time.Minute,
    		},
    		{
    			reqURL:    "http://127.0.0.1:8443/?DurationSeconds=9s",
    			expectErr: true,
    		},
    		{
    			reqURL:    "http://127.0.0.1:8443/?DurationSeconds=31536001",
    			expectErr: true,
    		},
    		{
    			reqURL:    "http://127.0.0.1:8443/?DurationSeconds=800",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  6. src/internal/gover/gover.go

    // if the decimal is all zeroes.
    // (Copied from golang.org/x/mod/module's decDecimal.)
    func DecInt(decimal string) string {
    	// Scan right to left turning 0s to 9s until you find a digit to decrement.
    	digits := []byte(decimal)
    	i := len(digits) - 1
    	for ; i >= 0 && digits[i] == '0'; i-- {
    		digits[i] = '9'
    	}
    	if i < 0 {
    		// decimal is all zeros
    		return ""
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 23:20:32 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  7. src/strconv/decimal.go

    		return
    	}
    
    	// round up
    	for i := nd - 1; i >= 0; i-- {
    		c := a.d[i]
    		if c < '9' { // can stop after this digit
    			a.d[i]++
    			a.nd = i + 1
    			return
    		}
    	}
    
    	// Number is all 9s.
    	// Change to single 1 with adjusted decimal point.
    	a.d[0] = '1'
    	a.nd = 1
    	a.dp++
    }
    
    // Extract integer part, rounded appropriately.
    // No guarantees about overflow.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jul 15 19:41:25 UTC 2017
    - 11K bytes
    - Viewed (0)
  8. samples/bookinfo/README.md

    + plat=linux/amd64
    + [[ '' == \t\r\u\e ]]
    + env TAG=test1.0 HUB=docker.io/user1 docker buildx bake -f samples/bookinfo/src/docker-bake.hcl --set '*.platform=linux/amd64'
    [+] Building 1.9s (123/133)
     => [examples-bookinfo-ratings-v-faulty internal] load build definition from Dockerfile                                                                                                               0.0s
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:37 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/logging/GroupedOutputFixtureTest.groovy

    \u001B[0K
    \u001B[0K
    \u001B[1A\u001B[1m<-------------> 0% EXECUTING [8s]\u001B[m\u001B[33D\u001B[1B\u001B[1m> :longRunningTask\u001B[m\u001B[18D\u001B[1B\u001B[2A\u001B[0K
    \u001B[0K
    \u001B[32;1mBUILD SUCCESSFUL\u001B[0;39m in 9s
    1 actionable task: 1 executed
    \u001B[2K
    """
            when:
            GroupedOutputFixture fixture = new GroupedOutputFixture(LogContent.of(consoleOutput))
    
            then:
            fixture.taskCount == 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  10. src/strconv/ftoa.go

    	//
    	// If upperdelta == 0, the digits of d and upper are the same so far.
    	//
    	// If upperdelta == 1, we saw a difference of 1 between d and upper on a
    	// previous digit and subsequently only 9s for d and 0s for upper.
    	// (Thus rounding up may fall outside the bound, if it is exclusive.)
    	//
    	// If upperdelta == 2, then the difference is greater than 1
    	// and we know that rounding up falls within the bound.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 13.9K bytes
    - Viewed (0)
Back to top