Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for 9s (0.02 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/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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. cmd/kubeadm/app/cmd/token.go

    	ttl := "<forever>"
    	expires := "<never>"
    	if obj.Expires != nil {
    		ttl = duration.ShortHumanDuration(time.Until(obj.Expires.Time))
    		expires = obj.Expires.Format(time.RFC3339)
    	}
    	ttl = fmt.Sprintf("%-9s", ttl)
    
    	usages := strings.Join(obj.Usages, ",")
    	if len(usages) == 0 {
    		usages = "<none>"
    	}
    	usages = fmt.Sprintf("%-22s", usages)
    
    	description := obj.Description
    	if len(description) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 05:47:48 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.js

          result += " │ " + diffText(box.sumneg, box.sumpos);
        }
        return result;
      }
    
      // diffText returns text that displays from and to alongside their percentages.
      // E.g., 9s (45%) 🠆 10s (50%)
      function diffText(from, to) {
        return percentText(from) + " 🠆 " + percentText(to);
      }
    
      // percentText returns text that displays v in appropriate units alongside its
      // percentange.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  10. guava/src/com/google/thirdparty/publicsuffix/PublicSuffixPatterns.java

    ??s!.&gro?moc?ten?ude?vog???tc-retarebsnegmrev--nx?u&lc!.&elej,snduolc,ysrab,?smas??p!.ysrab,??wp-gnutarebsnegmrev--nx??c&1&1q54--nx?hbgw--nx??2e9c2czf--nx?4&4ub1km--nx?a1e--nx?byj9q--nx?erd5a9b1kcb--nx??8&4xx2g--nx?c9jrb2h--nx??9jr&b&2h--nx?54--nx?9s--nx??c&eg--nx?h3--nx?s2--nx???a!.&gro?kcabdeef,lim?moc?rrd,smrof,ten?ude?vog??3a09--nx!.&ca1o--nx?gva1c--nx?h&ca1o--nx?za09--nx??ta1d--nx?ua08--nx????b&a?b?ci?f76a0c7ylqbgm--nx?sh??c!.&eugaelysatnaf,gnipparcs,liamwt,nwaps.secnatsni,revres-emag,s&nd...
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 21 21:04:43 UTC 2024
    - 72.4K bytes
    - Viewed (0)
Back to top