Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for z0 (0.13 sec)

  1. pkg/apis/resource/validation/validation_resourceclass_test.go

    			class:        testClass(badName, goodName),
    		},
    		"generate-name": {
    			class: func() *resource.ResourceClass {
    				class := testClass(goodName, goodName)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  2. pkg/apis/resource/validation/validation_resourceclaimtemplate_test.go

    			template:     testClaimTemplate(badName, goodNS, goodClaimSpec),
    		},
    		"missing-namespace": {
    			wantFailures: field.ErrorList{field.Required(field.NewPath("metadata", "namespace"), "")},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  3. pkg/apis/resource/validation/validation_resourceclaim_test.go

    			claim:        testClaim(badName, goodNS, goodClaimSpec),
    		},
    		"missing-namespace": {
    			wantFailures: field.ErrorList{field.Required(field.NewPath("metadata", "namespace"), "")},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  4. test/codegen/bits.go

    // check direct operation on memory with constant and shifted constant sources
    func bitOpOnMem(a []uint32, b, c, d uint32) {
    	// amd64:`ANDL\s[$]200,\s\([A-Z][A-Z0-9]+\)`
    	a[0] &= 200
    	// amd64:`ORL\s[$]220,\s4\([A-Z][A-Z0-9]+\)`
    	a[1] |= 220
    	// amd64:`XORL\s[$]240,\s8\([A-Z][A-Z0-9]+\)`
    	a[2] ^= 240
    }
    
    func bitcheckMostNegative(b uint8) bool {
    	// amd64:"TESTB"
    	return b&0x80 == 0x80
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  5. 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)
  6. pkg/proxy/nftables/proxier.go

    func servicePortChainNameBase(servicePortName *proxy.ServicePortName, protocol string) string {
    	// nftables chains can contain the characters [A-Za-z0-9_./-] (but must start with
    	// a letter, underscore, or dot).
    	//
    	// Namespace, Service, and Port names can contain [a-z0-9-] (with some additional
    	// restrictions that aren't relevant here).
    	//
    	// Protocol is /(tcp|udp|sctp)/.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  7. pkg/config/validation/validation.go

    	// ServiceEntry.Endpoint.Address message.
    	UnixAddressPrefix = "unix://"
    
    	matchExact  = "exact:"
    	matchPrefix = "prefix:"
    )
    
    var validHeaderRegex = regexp.MustCompile("^[-_A-Za-z0-9]+$")
    
    const (
    	kb = 1024
    	mb = 1024 * kb
    )
    
    var (
    	// envoy supported retry on header values
    	supportedRetryOnPolicies = sets.New(
    		// 'x-envoy-retry-on' supported policies:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  8. cluster/gce/gci/configure-helper.sh

        log-wrap 'SourceKubeMasterCerts' source "${KUBE_HOME}/kube-master-certs"
      fi
    
      log-start 'VerifyKubeUser'
      if [[ -n "${KUBE_USER:-}" ]]; then
        if ! [[ "${KUBE_USER}" =~ ^[-._@a-zA-Z0-9]+$ ]]; then
          echo "Bad KUBE_USER format."
          exit 1
        fi
      fi
      log-end 'VerifyKubeUser'
    
      log-start 'GenerateTokens'
      KUBE_CONTROLLER_MANAGER_TOKEN="$(secure_random 32)"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
Back to top