Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 102 for regular (0.14 sec)

  1. tests/integration/README.md

    | -istio.test.revision | string | Overwrite the default namespace label (istio-enabled=true) with revision lable (istio.io/rev=XXX). (default is no overwrite). |
    | -istio.test.skip | []string | Skip tests matching the regular expression. This follows the semantics of -test.run. |
    | -istio.test.skipVM | bool | Skip all the VM related parts in all the tests. (default is "false"). |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity.go

    	splitREString = "^([+-]?[0-9.]+)([eEinumkKMGTP]*[-+]?[0-9]*)$"
    )
    
    var (
    	// Errors that could happen while parsing a string.
    	ErrFormatWrong = errors.New("quantities must match the regular expression '" + splitREString + "'")
    	ErrNumeric     = errors.New("unable to parse numeric part of quantity")
    	ErrSuffix      = errors.New("unable to parse quantity's suffix")
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/preemption/preemption.go

    //     In this case, a non-nil PostFilterResult is returned and result.NominatingMode instructs how to deal with
    //     the nominatedNodeName.
    //
    //   - <non-nil PostFilterResult, Success>. It's the regular happy path
    //     and the non-empty nominatedNodeName will be applied to the preemptor pod.
    func (ev *Evaluator) Preempt(ctx context.Context, pod *v1.Pod, m framework.NodeToStatusMap) (*framework.PostFilterResult, *framework.Status) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation.go

    		} else if !info.Mode().IsRegular() {
    			allErrs = append(allErrs, field.Invalid(fldPath.Child("connectionInfo", "kubeConfigFile"), *c.ConnectionInfo.KubeConfigFile, "must be a regular file"))
    		}
    	default:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  5. cmd/utils.go

    func iamPolicyClaimNameOpenID() string {
    	return globalIAMSys.OpenIDConfig.GetIAMPolicyClaimName()
    }
    
    func iamPolicyClaimNameSA() string {
    	return "sa-policy"
    }
    
    // On MinIO a directory object is stored as a regular object with "__XLDIR__" suffix.
    // For ex. "prefix/" is stored as "prefix__XLDIR__"
    func encodeDirObject(object string) string {
    	if HasSuffix(object, slashSeparator) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 22:00:34 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  6. cmd/common-main.go

    	files, err := root.Readdir(-1)
    	if err != nil {
    		return nil, nil, false, err
    	}
    	for _, file := range files {
    		// Ignore all
    		// - regular files
    		// - "CAs" directory
    		// - any directory which starts with ".."
    		if file.Mode().IsRegular() || file.Name() == "CAs" || strings.HasPrefix(file.Name(), "..") {
    			continue
    		}
    		if file.Mode()&os.ModeSymlink == os.ModeSymlink {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  7. src/runtime/traceruntime.go

    	// ourselves specifically to keep running. The two contexts look different, but can be summarized
    	// fairly succinctly. In the former, we're a regular running goroutine and proc, if we have either.
    	// In the latter, we're a goroutine in a syscall.
    	goStatus := traceGoRunning
    	procStatus := traceProcRunning
    	if inSyscall {
    		goStatus = traceGoSyscall
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  8. cmd/config-current.go

    				key, subSys)
    		}
    		h = config.HelpKVS{value}
    	}
    
    	help := config.HelpKVS{}
    
    	// Only for multiple targets, make sure
    	// to list the ENV, for regular k/v EnableKey is
    	// implicit, for ENVs we cannot make it implicit.
    	if subSysHelp.MultipleTargets {
    		key := madmin.EnableKey
    		if envOnly {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 08:14:58 UTC 2024
    - 30.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/css/base.css

    /* Lato (bold, regular) */
    @font-face {
        font-display: swap;
        font-family: Lato;
        font-weight: 500;
        font-style: normal;
        src: url("https://assets.gradle.com/lato/fonts/lato-semibold/lato-semibold.woff2") format("woff2"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  10. pkg/controller/statefulset/stateful_set_utils.go

    	if o[i].CreationTimestamp.Equal(&o[j].CreationTimestamp) {
    		return o[i].Name < o[j].Name
    	}
    	return o[i].CreationTimestamp.Before(&o[j].CreationTimestamp)
    }
    
    // statefulPodRegex is a regular expression that extracts the parent StatefulSet and ordinal from the Name of a Pod
    var statefulPodRegex = regexp.MustCompile("(.*)-([0-9]+)$")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 26.7K bytes
    - Viewed (0)
Back to top