Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 137 for z0 (0.07 sec)

  1. src/cmd/vendor/rsc.io/markdown/link.go

    	// CommonMark 0.30:
    	//
    	//	An email address, for these purposes, is anything that matches
    	//	the non-normative regex from the HTML5 spec:
    	//
    	//	/^[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$/
    
    	j := i
    	if j+1 >= len(s) || s[j] != '<' || !isUser(s[j+1]) {
    		return nil, 0, false
    	}
    	j++
    	for j < len(s) && isUser(s[j]) {
    		j++
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/avx512enc/avx512cd.s

    	VPLZCNTD 17(SP)(BP*4), K3, Z3                      // 62f27d4b449cac11000000
    	VPLZCNTD Z21, K3, Z0                               // 62b27d4b44c5
    	VPLZCNTD Z13, K3, Z0                               // 62d27d4b44c5
    	VPLZCNTD 17(SP)(BP*8), K3, Z0                      // 62f27d4b4484ec11000000
    	VPLZCNTD 17(SP)(BP*4), K3, Z0                      // 62f27d4b4484ac11000000
    	VPLZCNTQ X9, K2, X13                               // 6252fd0a44e9
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 22 14:57:15 UTC 2018
    - 12.9K bytes
    - Viewed (0)
  3. cluster/common.sh

    # make sure to remove these vars when not used anymore
    export 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]*))?$"
    export KUBE_RELEASE_VERSION_DASHED_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]*))?"
    
    # KUBE_CI_VERSION_REGEX matches things like "v1.2.3-alpha.4.56+abcdefg" and "v1.2.3-56+abcdefg"
    #
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 17 15:36:33 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/embedding_program_key.mlir

      return
    }
    
    // -----
    
    // CHECK-LABEL: func @compile_not_in_launch
    func.func @compile_not_in_launch() {
      // CHECK: [[KEY:%[a-z0-9]*]] = "tf._TPUCompileMlir
      // CHECK: %[[CONSTANT:[a-z0-9]*]] = "tf.Const"
      // CHECK: "tf.OpA"([[KEY]]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 10 14:28:22 UTC 2023
    - 16.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/networking/v1/generated.proto

      // ---
      // The regex it matches is (dns1123SubdomainFmt/)?(qualifiedNameFmt)
      // +optional
      // +kubebuilder:validation:Required
      // +kubebuilder:validation:Pattern=`^([a-z0-9]([-a-z0-9]*[a-z0-9])?(\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*/)?(([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9])$`
      // +kubebuilder:validation:MaxLength=316
      optional string error = 3;
    }
    
    // IngressRule represents the rules mapping the paths under a specified host to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  6. src/math/big/nat.go

    	//
    	// the product x*y can be obtained with 3 products z2, z1, z0
    	// instead of 4:
    	//
    	//   x*y = x1*y1*b*b + (x1*y0 + x0*y1)*b + x0*y0
    	//       =    z2*b*b +              z1*b +    z0
    	//
    	// with:
    	//
    	//   xd = x1 - x0
    	//   yd = y0 - y1
    	//
    	//   z1 =      xd*yd                    + z2 + z0
    	//      = (x1-x0)*(y0 - y1)             + z2 + z0
    	//      = x1*y0 - x1*y1 - x0*y0 + x0*y1 + z2 + z0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/networking/v1/types.go

    	// ---
    	// The regex it matches is (dns1123SubdomainFmt/)?(qualifiedNameFmt)
    	// +optional
    	// +kubebuilder:validation:Required
    	// +kubebuilder:validation:Pattern=`^([a-z0-9]([-a-z0-9]*[a-z0-9])?(\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*/)?(([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9])$`
    	// +kubebuilder:validation:MaxLength=316
    	Error *string `json:"error,omitempty" protobuf:"bytes,3,opt,name=error"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/networking/v1/generated.proto

      // ---
      // The regex it matches is (dns1123SubdomainFmt/)?(qualifiedNameFmt)
      // +optional
      // +kubebuilder:validation:Required
      // +kubebuilder:validation:Pattern=`^([a-z0-9]([-a-z0-9]*[a-z0-9])?(\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*/)?(([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9])$`
      // +kubebuilder:validation:MaxLength=316
      optional string error = 3;
    }
    
    // IngressRule represents the rules mapping the paths under a specified host to
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top