Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 90 for 2s (0.22 sec)

  1. src/fmt/scan_test.go

    	{"%d%%", "42%", &intVal, 42}, // %% at end of string.
    
    	// Corner cases
    	{"%x", "FFFFFFFF\n", &uint32Val, uint32(0xFFFFFFFF)},
    
    	// Custom scanner.
    	{"%s", "  sss ", &xVal, Xs("sss")},
    	{"%2s", "sssss", &xVal, Xs("ss")},
    
    	// Fixed bugs
    	{"%d\n", "27\n", &intVal, 27},         // ok
    	{"%d\n", "28 \n", &intVal, 28},        // was: "unexpected newline"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 20:25:13 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/inst.go

    	case ArrangementH:
    		result = ".H"
    	case Arrangement4H:
    		result = ".4H"
    	case Arrangement8H:
    		result = ".8H"
    	case ArrangementS:
    		result = ".S"
    	case Arrangement2S:
    		result = ".2S"
    	case Arrangement4S:
    		result = ".4S"
    	case ArrangementD:
    		result = ".D"
    	case Arrangement1D:
    		result = ".1D"
    	case Arrangement2D:
    		result = ".2D"
    	case Arrangement1Q:
    		result = ".1Q"
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  3. pkg/test/kube/dump.go

    				// already failed.
    				// We add backoff because we may see transient warming errors during cleanup of resources.
    				attempts := 0
    				backoff := time.Second * 1 // Try after 0s, 1s, 2s, 4s, 8s, or 7s total
    				for {
    					attempts++
    					warming := isWarming(cfgDump)
    					if warming == "" {
    						// Not warming
    						break
    					}
    					if attempts > 3 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  4. src/main/webapp/css/font-awesome.min.css

    a-pull-left,.fal.fa-pull-left,.far.fa-pull-left,.fas.fa-pull-left{margin-right:.3em}.fa.fa-pull-right,.fab.fa-pull-right,.fal.fa-pull-right,.far.fa-pull-right,.fas.fa-pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s linear infinite;animation:fa-spin 2s linear infinite}.fa-pulse{-webkit-animation:fa-spin 1s steps(8) infinite;animation:fa-spin 1s steps(8) infinite}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn)...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Dec 14 21:22:25 UTC 2019
    - 55.8K bytes
    - Viewed (0)
  5. pkg/controller/deployment/deployment_controller.go

    	// With the current rate-limiter in use (5ms*2^(maxRetries-1)) the following numbers represent the times
    	// a deployment is going to be requeued:
    	//
    	// 5ms, 10ms, 20ms, 40ms, 80ms, 160ms, 320ms, 640ms, 1.3s, 2.6s, 5.1s, 10.2s, 20.4s, 41s, 82s
    	maxRetries = 15
    )
    
    // controllerKind contains the schema.GroupVersionKind for this controller type.
    var controllerKind = apps.SchemeGroupVersion.WithKind("Deployment")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  6. pkg/registry/core/service/ipallocator/controller/repairip.go

    	// sequence of delays between successive queuings of a service.
    	//
    	// 5ms, 10ms, 20ms, 40ms, 80ms, 160ms, 320ms, 640ms, 1.3s, 2.6s, 5.1s, 10.2s, 20.4s, 41s, 82s
    	maxRetries = 15
    	workers    = 5
    )
    
    // Repair is a controller loop that examines all service ClusterIP allocations and logs any errors,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  7. src/main/webapp/css/admin/font-awesome.min.css

    a-pull-left,.fal.fa-pull-left,.far.fa-pull-left,.fas.fa-pull-left{margin-right:.3em}.fa.fa-pull-right,.fab.fa-pull-right,.fal.fa-pull-right,.far.fa-pull-right,.fas.fa-pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s linear infinite;animation:fa-spin 2s linear infinite}.fa-pulse{-webkit-animation:fa-spin 1s steps(8) infinite;animation:fa-spin 1s steps(8) infinite}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn)...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Dec 14 21:22:25 UTC 2019
    - 55.8K bytes
    - Viewed (0)
  8. pkg/controller/endpoint/endpoints_controller.go

    	// sequence of delays between successive queuings of a service.
    	//
    	// 5ms, 10ms, 20ms, 40ms, 80ms, 160ms, 320ms, 640ms, 1.3s, 2.6s, 5.1s, 10.2s, 20.4s, 41s, 82s
    	maxRetries = 15
    
    	// maxCapacity represents the maximum number of addresses that should be
    	// stored in an Endpoints resource. In a future release, this controller
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  9. src/fmt/fmt_test.go

    	{"%q", rune(0x110000), `'�'`},
    	{"%q", int64(0xFFFFFFFFF), `'�'`},
    	{"%q", uint64(0xFFFFFFFFF), `'�'`},
    
    	// width
    	{"%5s", "abc", "  abc"},
    	{"%5s", []byte("abc"), "  abc"},
    	{"%2s", "\u263a", " ☺"},
    	{"%2s", []byte("\u263a"), " ☺"},
    	{"%-5s", "abc", "abc  "},
    	{"%-5s", []byte("abc"), "abc  "},
    	{"%05s", "abc", "00abc"},
    	{"%05s", []byte("abc"), "00abc"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  10. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // and doesn't spam the readiness endpoint too much
      //
      // If the probe is disabled, it is recommended to have delay=1s,period=2s,failureThreshold=30.
      // This ensures the startup is reasonable fast (polling every 2s). 1s delay is used since the startup is not often ready instantly.
      google.protobuf.BoolValue enabled = 1;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
Back to top