Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 337 for z0 (0.02 sec)

  1. common-protos/k8s.io/api/admissionregistration/v1alpha1/generated.proto

      // must start and end with an alphanumeric character (e.g. 'MyName',  or 'my.name',  or
      // '123-abc', regex used for validation is '([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9]') with an
      // optional DNS subdomain prefix and '/' (e.g. 'example.com/MyName')
      //
      // Required.
      optional string name = 1;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/stringer.go

    	"strings"
    )
    
    var (
    	input  = flag.String("i", "", "input file name")
    	output = flag.String("o", "", "output file name")
    	pkg    = flag.String("p", "", "package name")
    )
    
    var Are = regexp.MustCompile(`^\tA([A-Za-z0-9]+)`)
    
    func main() {
    	flag.Parse()
    	if *input == "" || *output == "" || *pkg == "" {
    		flag.Usage()
    		os.Exit(2)
    	}
    	in, err := os.Open(*input)
    	if err != nil {
    		log.Fatal(err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/x86/pcrelative_test.go

    	if err != nil {
    		t.Fatalf("error %s output %s", err, objout)
    	}
    
    	return objout
    }
    
    func TestVexEvexPCrelative(t *testing.T) {
    	testenv.MustHaveGoBuild(t)
    LOOP:
    	for _, reg := range []string{"Y0", "Y8", "Z0", "Z8", "Z16", "Z24"} {
    		asm := fmt.Sprintf(asmData, reg)
    		objout := objdumpOutput(t, "pcrelative", asm)
    		data := bytes.Split(objout, []byte("\n"))
    		for idx := len(data) - 1; idx >= 0; idx-- {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 23:16:01 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. pkg/apis/admissionregistration/validation/validation_test.go

    	}, {
    		name: "expression is required",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 147.1K bytes
    - Viewed (0)
  5. cluster/get-kube.sh

    KUBE_RELEASE_VERSION_REGEX="^v(0|[1-9][0-9]*)\\.(0|[1-9][0-9]*)\\.(0|[1-9][0-9]*)(-([a-zA-Z0-9]+)\\.(0|[1-9][0-9]*))?$"
    #                       v1                .26               .0              -(rc            .0                .)?0              (  +014f      )?
    KUBE_CI_VERSION_REGEX="^v(0|[1-9][0-9]*)\\.(0|[1-9][0-9]*)\\.(0|[1-9][0-9]*)-([a-zA-Z0-9]+\\.(0|[1-9][0-9]*)\\.)?(0|[1-9][0-9]*)(\\+[-0-9a-z]*)?$"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 18 22:47:29 UTC 2023
    - 9K bytes
    - Viewed (0)
  6. pkg/apis/storagemigration/validation/validation.go

    	}
    
    	return allErrs
    }
    func isValidConditionReason(value string) []string {
    	const conditionReasonFmt string = "[A-Za-z]([A-Za-z0-9_,:]*[A-Za-z0-9_])?"
    	const conditionReasonErrMsg string = "a condition reason must start with alphabetic character, optionally followed by a string of alphanumeric characters or '_,:', and must end with an alphanumeric character or '_'"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  7. src/log/log_test.go

    	Rmicroseconds = `\.[0-9][0-9][0-9][0-9][0-9][0-9]`
    	Rline         = `(63|65):` // must update if the calls to l.Printf / l.Print below move
    	Rlongfile     = `.*/[A-Za-z0-9_\-]+\.go:` + Rline
    	Rshortfile    = `[A-Za-z0-9_\-]+\.go:` + Rline
    )
    
    type tester struct {
    	flag    int
    	prefix  string
    	pattern string // regexp that log output must match; we add ^ and expected_text$ always
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 20:04:37 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  8. cluster/gce/windows/k8s-node-setup.psm1

        Time_Format %b %d %H:%M:%S
        Time_Keep   On
    
    [PARSER]
        Name    kube-custom
        Format  regex
        Regex   (?<tag>[^.]+)?\.?(?<pod_name>[a-z0-9](?:[-a-z0-9]*[a-z0-9])?(?:\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*)_(?<namespace_name>[^_]+)_(?<container_name>.+)-(?<docker_id>[a-z0-9]{64})\.log$
    '@
    
    
    # ----------- Stackdriver logging setup --------------------------
    # This section would be deprecated soon
    #
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  9. tests/integration/pilot/istioctl_test.go

    			// This test accepts any version with a "." (period) in it -- we mostly want to fail on "MISSING CP VERSION"
    			controlPlaneRegex := regexp.MustCompile(`control plane version: [a-z0-9\-]+\.[a-z0-9\-]+`)
    			if controlPlaneRegex.MatchString(output) {
    				return
    			}
    
    			t.Fatalf("Did not find valid control plane version: %v", output)
    		})
    }
    
    func TestDescribe(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 15K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/admissionregistration/v1alpha1/generated.proto

      // must start and end with an alphanumeric character (e.g. 'MyName',  or 'my.name',  or
      // '123-abc', regex used for validation is '([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9]') with an
      // optional DNS subdomain prefix and '/' (e.g. 'example.com/MyName')
      //
      // Required.
      optional string name = 1;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 29.9K bytes
    - Viewed (0)
Back to top