Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 83 for Hyphen (0.32 sec)

  1. src/net/http/header.go

    		}
    	}
    	headerSorterPool.Put(sorter)
    	return nil
    }
    
    // CanonicalHeaderKey returns the canonical format of the
    // header key s. The canonicalization converts the first
    // letter and any letter following a hyphen to upper case;
    // the rest are converted to lowercase. For example, the
    // canonical key for "accept-encoding" is "Accept-Encoding".
    // If s contains a space or invalid header field bytes, it is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 22:14:00 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part3_gradle_dep_man.adoc

    }
    ----
    =====
    
    In this example, `libs.guava` and `libs.junit.jupiter` refer to the corresponding libraries defined in your version catalog.
    
    TIP: The `versions.junit.jupiter` syntax is used because the key contains a hyphen which is a special characters.
    
    A version catalog provides a number of advantages over declaring dependencies directly in build scripts:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 22:40:17 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  3. src/net/textproto/reader.go

    //
    //	code-message line 1
    //	code-message line 2
    //	...
    //	code message line n
    //
    // where code is a three-digit status code. The first line starts with the
    // code and a hyphen. The response is terminated by a line that starts
    // with the same code followed by a space. Each line in message is
    // separated by a newline (\n).
    //
    // See page 36 of RFC 959 (https://www.ietf.org/rfc/rfc959.txt) for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top