Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 122 for striped (0.2 sec)

  1. pkg/test/framework/suite.go

    	exitCodeInitError = -1
    
    	// Indicates an error due to the setup function supplied by the user
    	exitCodeSetupError = -2
    )
    
    var (
    	rt   *runtime
    	rtMu sync.Mutex
    
    	// Well-known paths which are stripped when generating test IDs.
    	// Note: Order matters! Always specify the most specific directory first.
    	wellKnownPaths = mustCompileAll(
    		// This allows us to trim test IDs on the istio.io/istio.io repo.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  2. cmd/object-api-interface.go

    	GetDisks(poolIdx, setIdx int) ([]StorageAPI, error) // return the disks belonging to pool and set.
    	SetDriveCounts() []int                              // list of erasure stripe size for each pool in order.
    
    	// Healing operations.
    	HealFormat(ctx context.Context, dryRun bool) (madmin.HealResultItem, error)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 06 20:27:52 UTC 2024
    - 17K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/flowcontrol/v1/types.go

    	//   is a boolean false or has an invalid boolean representation
    	//   (if the cluster operator sets it to 'false' it will be stomped)
    	// - any changes to the spec made by the cluster operator will be
    	//   stomped, except for changes to the `nominalConcurrencyShares`
    	//   and `lendablePercent` fields of the PriorityLevelConfiguration
    	//   named "exempt".
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  4. pilot/pkg/bootstrap/server.go

    					s.grpcServer.Stop()
    					if s.secureGrpcServer != nil {
    						s.secureGrpcServer.Stop()
    					}
    					close(stopped)
    				}
    			}()
    			s.grpcServer.GracefulStop()
    			if s.secureGrpcServer != nil {
    				s.secureGrpcServer.GracefulStop()
    			}
    			close(stopped)
    		}()
    
    		t := time.NewTimer(s.shutdownDuration)
    		select {
    		case <-t.C:
    			s.grpcServer.Stop()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  5. pkg/volume/testing/testing.go

    // commands to expect. Calling more commands using fe than those scripted will
    // result in a panic. By default, the fe does not enforce command argument checking
    // or order -- if you have given an Output to the command, the first command scripted
    // will return its output on the first command call, even if the command called is
    // different than the one scripted. This is mostly useful to make sure that the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  6. src/time/time.go

    // Because t.AddDate(y, m, d), t.Round(d), and t.Truncate(d) are wall time
    // computations, they always strip any monotonic clock reading from their results.
    // Because t.In, t.Local, and t.UTC are used for their effect on the interpretation
    // of the wall time, they also strip any monotonic clock reading from their results.
    // The canonical way to strip a monotonic clock reading is to use t = t.Round(0).
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  7. pilot/cmd/pilot-agent/status/server.go

    		if req.URL.Hostname() != via[0].URL.Hostname() {
    			return http.ErrUseLastResponse
    		}
    		// Default behavior: stop after 10 redirects.
    		if len(via) >= 10 {
    			return errors.New("stopped after 10 redirects")
    		}
    		return nil
    	}
    }
    
    func validateAppKubeProber(path string, prober *Prober) error {
    	if !appProberPattern.MatchString(path) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 31.1K bytes
    - Viewed (1)
  8. src/runtime/stubs.go

    // intArgRegs is used by the various register assignment
    // algorithm implementations in the runtime. These include:.
    // - Finalizers (mfinal.go)
    // - Windows callbacks (syscall_windows.go)
    //
    // Both are stripped-down versions of the algorithm since they
    // only have to deal with a subset of cases (finalizers only
    // take a pointer or interface argument, Go Windows callbacks
    // don't support floating point).
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  9. src/go/ast/filter.go

    // and their associated information (such as type, initial value, or function
    // body) are removed. Non-exported fields and methods of exported types are
    // stripped. The [File.Comments] list is not changed.
    //
    // FileExports reports whether there are exported declarations.
    func FileExports(src *File) bool {
    	return filterFile(src, exportFilter, true)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  10. pkg/controller/job/backoff_utils_test.go

    					},
    				},
    				ObjectMeta: metav1.ObjectMeta{
    					CreationTimestamp: metav1.Time{Time: defaultTestTime},
    				},
    			},
    			wantFinishTime: defaultTestTime,
    		},
    		// In this case, init container is stopped after the regular containers.
    		// This is because with the sidecar (restartable init) containers,
    		// sidecar containers will always finish later than regular containers.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 07:46:41 UTC 2024
    - 16.7K bytes
    - Viewed (0)
Back to top