Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 337 for z0 (0.3 sec)

  1. platforms/software/maven/src/test/groovy/org/gradle/api/publish/maven/internal/publisher/ValidatingMavenPublisherTest.groovy

            "group-₦ガき∆"        | "artifact"            | "version"   | "groupId (group-₦ガき∆) is not a valid Maven identifier ([A-Za-z0-9_\\-.]+)"
            "group"             | "artifact with spaces" | "version"   | "artifactId (artifact with spaces) is not a valid Maven identifier ([A-Za-z0-9_\\-.]+)"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 12K bytes
    - Viewed (0)
  2. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                        maxLength: 253
                        pattern: ^$|^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$
                        type: string
                      kind:
                        description: kind is kind of the target resource.
                        maxLength: 63
                        minLength: 1
                        pattern: ^[a-zA-Z]([-a-zA-Z0-9]*[a-zA-Z0-9])?$
                        type: string
                      name:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  3. src/math/big/arith.go

    // Elementary operations on words
    //
    // These operations are used by the vector operations below.
    
    // z1<<_W + z0 = x*y
    func mulWW(x, y Word) (z1, z0 Word) {
    	hi, lo := bits.Mul(uint(x), uint(y))
    	return Word(hi), Word(lo)
    }
    
    // z1<<_W + z0 = x*y + c
    func mulAddWWW_g(x, y, c Word) (z1, z0 Word) {
    	hi, lo := bits.Mul(uint(x), uint(y))
    	var cc uint
    	lo, cc = bits.Add(lo, uint(c), 0)
    	return Word(hi + cc), Word(lo)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 28 20:09:27 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  4. src/net/netip/netip.go

    type addrDetail struct {
    	IsV6   bool   // IPv4 is false, IPv6 is true.
    	ZoneV6 string // != "" only if IsV6 is true.
    }
    
    // z0, z4, and z6noz are sentinel Addr.z values.
    // See the Addr type's field docs.
    var (
    	z0    unique.Handle[addrDetail]
    	z4    = unique.Make(addrDetail{})
    	z6noz = unique.Make(addrDetail{IsV6: true})
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/networking/v1beta1/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: Mon Nov 27 20:06:30 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  6. pkg/test/framework/label/filter.go

    func NewSelector(present []Instance, absent []Instance) Selector {
    	return Selector{
    		present: NewSet(present...),
    		absent:  NewSet(absent...),
    	}
    }
    
    var userLabelRegex = regexp.MustCompile(`^[a-zA-Z][a-zA-Z0-9_]*(\.[a-zA-Z0-9_]+)*$`)
    
    // ParseSelector parses and returns a new instance of Selector.
    func ParseSelector(s string) (Selector, error) {
    	var present, absent []Instance
    
    	parts := strings.Split(s, ",")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  7. 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)
  8. platforms/software/resources-s3/src/main/java/org/gradle/internal/resource/transport/aws/s3/S3RegionalResource.java

        private static final Pattern REGIONAL_ENDPOINT_PATTERN = Pattern.compile("^s3:\\/\\/(.+)?\\.s3[.-]([a-z0-9-]+)\\.amazonaws\\.com(\\.[a-z]+)?\\/(.+)");
    
        //https://docs.aws.amazon.com/AmazonS3/latest/userguide/access-bucket-intro.html#accessing-a-bucket-using-S3-format
        private static final Pattern FALLBACK_ENDPOINT_PATTERN = Pattern.compile("^[a-z0-9]+:\\/\\/([^\\/]+)\\/(.+)");
    
        private final URI uri;
        private Optional<Region> region;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3K bytes
    - Viewed (0)
  9. 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)
  10. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/feed-as-fetch.pbtxt

    node {
      name: "input"
      op: "Placeholder"
      attr {
        key: "dtype"
        value {
          type: DT_INT32
        }
      }
    }
    versions {
      producer: 27
    }
    
    # CHECK-LABEL: func @main
    # CHECK-SAME:  (%[[ARG_0:[a-z0-9]+]]: tensor<8xi32>) -> tensor<8xi32>
    # CHECK-SAME:  control_outputs = ""
    # CHECK-SAME:  inputs = "input"
    # CHECK-SAME:  outputs = "input"
    # CHECK:         %[[GRAPH:[0-9]+]] = tf_executor.graph
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 10 19:53:21 UTC 2020
    - 684 bytes
    - Viewed (0)
Back to top