Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 39 for Hyphen (0.2 sec)

  1. src/crypto/x509/name_constraints_test.go

    		{"uri:example.com.", constraintParseError},
    		{"uri:1.2.3.4", constraintParseError},
    		{"uri:ffff::1", constraintParseError},
    		{"dns:not–hyphen.com", encodingError},
    		{"email:foo@not–hyphen.com", encodingError},
    		{"uri:not–hyphen.com", encodingError},
    	}
    
    	priv, err := ecdsa.GenerateKey(elliptic.P256(), rand.Reader)
    	if err != nil {
    		panic(err)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 22:40:21 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  2. src/mime/multipart/multipart.go

    }
    
    func (r *Reader) isBoundaryDelimiterLine(line []byte) (ret bool) {
    	// https://tools.ietf.org/html/rfc2046#section-5.1
    	//   The boundary delimiter line is then defined as a line
    	//   consisting entirely of two hyphen characters ("-",
    	//   decimal value 45) followed by the boundary parameter
    	//   value from the Content-Type header field, optional linear
    	//   whitespace, and a terminating CRLF.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 16:12:35 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. cmd/object-api-utils.go

    // characters long, and it must be a sequence of one or more labels
    // separated by periods. Each label can contain lowercase ascii
    // letters, decimal digits and hyphens, but must not begin or end with
    // a hyphen. See:
    // http://docs.aws.amazon.com/AmazonS3/latest/dev/BucketRestrictions.html
    func IsValidBucketName(bucket string) bool {
    	// Special case when bucket is equal to one of the meta buckets.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/text/internal/language/language.go

    	for p++; s[p] != 'u'; p++ {
    		if s[p] > 'u' {
    			p--
    			return p, p, p, false
    		}
    		if p = nextExtension(s, p); p == len(s) {
    			return len(s), len(s), len(s), false
    		}
    	}
    	// Proceed to the hyphen following the extension name.
    	p++
    
    	// curKey is the key currently being processed.
    	curKey := ""
    
    	// Iterate over keys until we get the end of a section.
    	for {
    		end = p
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/net/idna/idna9.0.0.go

    		o.trie = trie
    		o.checkJoiners = enable
    	}
    }
    
    // StrictDomainName limits the set of permissible ASCII characters to those
    // allowed in domain names as defined in RFC 1034 (A-Z, a-z, 0-9 and the
    // hyphen). This is set by default for MapForLookup and ValidateForRegistration,
    // but is only useful if ValidateLabels is set.
    //
    // This option is useful, for instance, for browsers that allow characters
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  6. src/strconv/quote.go

    			// All the ASCII is printable from space through DEL-1.
    			return true
    		}
    		if 0xA1 <= r && r <= 0xFF {
    			// Similarly for ¡ through ÿ...
    			return r != 0xAD // ...except for the bizarre soft hyphen.
    		}
    		return false
    	}
    
    	// Same algorithm, either on uint16 or uint32 value.
    	// First, find first i such that isPrint[i] >= x.
    	// This is the index of either the start or end of a pair that might span x.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/net/idna/idna10.0.0.go

    		o.trie = trie
    		o.checkJoiners = enable
    	}
    }
    
    // StrictDomainName limits the set of permissible ASCII characters to those
    // allowed in domain names as defined in RFC 1034 (A-Z, a-z, 0-9 and the
    // hyphen). This is set by default for MapForLookup and ValidateForRegistration,
    // but is only useful if ValidateLabels is set.
    //
    // This option is useful, for instance, for browsers that allow characters
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/batch/v1/generated.proto

      // separated by commas. The numbers are listed in increasing order. Three or
      // more consecutive numbers are compressed and represented by the first and
      // last element of the series, separated by a hyphen.
      // For example, if the completed indexes are 1, 3, 4, 5 and 7, they are
      // represented as "1,3-5,7".
      // +optional
      optional string completedIndexes = 7;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/rsc.io/markdown/link.go

    	//
    	//	For purposes of this spec, a scheme is any sequence of 2–32 characters
    	//	beginning with an ASCII letter and followed by any combination of
    	//	ASCII letters, digits, or the symbols plus (”+”), period (”.”), or
    	//	hyphen (”-”).
    	//
    	//	An absolute URI, for these purposes, consists of a scheme followed by
    	//	a colon (:) followed by zero or more characters other ASCII control
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  10. pkg/controller/resourceclaim/controller.go

    		if annotations == nil {
    			annotations = make(map[string]string)
    		}
    		annotations[podResourceClaimAnnotation] = podClaim.Name
    		generateName := pod.Name + "-" + podClaim.Name + "-"
    		maxBaseLen := 57 // Leave space for hyphen and 5 random characters in a name with 63 characters.
    		if len(generateName) > maxBaseLen {
    			// We could leave truncation to the apiserver, but as
    			// it removes at the end, we would loose everything
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 37.1K bytes
    - Viewed (0)
Back to top