Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,423 for Trailing (0.19 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/Util.h

     *  @param szString  The string to trim.
     */
    
    CU_EXPORT void CU_trim_right(char *szString);
    /**< 
     *  Trims trailing whitespace from the specified string.
     *  @param szString  The string to trim.
     */
    
    CU_EXPORT void CU_trim(char *szString);
    /**< 
     *  Trims leading and trailing whitespace from the specified string.
     *  @param szString  The string to trim.
     */
    
    CU_EXPORT size_t CU_number_width(int number);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  2. src/path/filepath/match.go

    func Match(pattern, name string) (matched bool, err error) {
    Pattern:
    	for len(pattern) > 0 {
    		var star bool
    		var chunk string
    		star, chunk, pattern = scanChunk(pattern)
    		if star && chunk == "" {
    			// Trailing * matches rest of string unless it has a /.
    			return !strings.Contains(name, string(Separator)), nil
    		}
    		// Look for match at current position.
    		t, ok, err := matchChunk(chunk, name)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  3. src/crypto/x509/pkcs1.go

    func ParsePKCS1PrivateKey(der []byte) (*rsa.PrivateKey, error) {
    	var priv pkcs1PrivateKey
    	rest, err := asn1.Unmarshal(der, &priv)
    	if len(rest) > 0 {
    		return nil, asn1.SyntaxError{Msg: "trailing data"}
    	}
    	if err != nil {
    		if _, err := asn1.Unmarshal(der, &ecPrivateKey{}); err == nil {
    			return nil, errors.New("x509: failed to parse private key (use ParseECPrivateKey instead for this key format)")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/authorization/path/path.go

    		p = strings.TrimPrefix(p, "/")
    		if len(p) == 0 {
    			// matches "/"
    			paths.Insert(p)
    			continue
    		}
    		if strings.ContainsRune(p[:len(p)-1], '*') {
    			return nil, fmt.Errorf("only trailing * allowed in %q", p)
    		}
    		if strings.HasSuffix(p, "*") {
    			prefixes = append(prefixes, p[:len(p)-1])
    		} else {
    			paths.Insert(p)
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 09 13:47:19 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  5. src/net/http/pattern.go

    func (p *pattern) lastSegment() segment {
    	return p.segments[len(p.segments)-1]
    }
    
    // A segment is a pattern piece that matches one or more path segments, or
    // a trailing slash.
    //
    // If wild is false, it matches a literal segment, or, if s == "/", a trailing slash.
    // Examples:
    //
    //	"a" => segment{s: "a"}
    //	"/{$}" => segment{s: "/"}
    //
    // If wild is true and multi is false, it matches a single path segment.
    // Example:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 16:36:30 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  6. platforms/core-execution/build-cache-http/src/main/java/org/gradle/caching/http/internal/HttpBuildCacheService.java

                throw UncheckedException.throwAsUncheckedException(e);
            }
        }
    
        /**
         * Add a trailing slash to the given URI's path if necessary.
         *
         * @param uri the original URI
         * @return a URI guaranteed to have a trailing slash in the path
         */
        private static URI withTrailingSlash(URI uri) {
            if (uri.getPath().endsWith("/")) {
                return uri;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 14:13:12 UTC 2024
    - 8K bytes
    - Viewed (0)
  7. src/internal/bytealg/count_s390x.s

    #define R_ITER R7
    #define R_CNT  R8
    #define R_MPTR R9
    
    // vector register assignments
    #define V_ZERO V0
    #define V_CHAR V1
    #define V_MASK V2
    #define V_VAL  V3
    #define V_CNT  V4
    
    // mask for trailing bytes in vector implementation
    GLOBL countbytemask<>(SB), RODATA, $16
    DATA countbytemask<>+0(SB)/8, $0x0101010101010101
    DATA countbytemask<>+8(SB)/8, $0x0101010101010101
    
    // func Count(b []byte, c byte) int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 15 21:04:43 UTC 2019
    - 5.4K bytes
    - Viewed (0)
  8. cmd/object-api-utils_test.go

    		{"␀␁␂␃␄␅␆␇␈␉␊␋␌␍␎␏␐␑␒␓␔␕␖␗␘␙␚␛␜␝␞␟␡", true},
    		{"trailing VT␋/trailing VT␋", true},
    		{"␋leading VT/␋leading VT", true},
    		{"~leading tilde", true},
    		{"\rleading CR", true},
    		{"\nleading LF", true},
    		{"\tleading HT", true},
    		{"trailing CR\r", true},
    		{"trailing LF\n", true},
    		{"trailing HT\t", true},
    		// cases for which test should fail.
    		// passing invalid object names.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  9. src/internal/types/testdata/check/decls2/decls2b.go

    func (Foo /* ERROR "undefined" */ ) _() int { return "foo" /* ERRORx "cannot use .* in return statement" */ }
    
    // Receiver declarations are regular parameter lists;
    // receiver types may use parentheses, and the list
    // may have a trailing comma.
    type T7 struct {}
    
    func (T7) m1() {}
    func ((T7)) m2() {}
    func ((*T7)) m3() {}
    func (x *(T7),) m4() {}
    func (x (*(T7)),) m5() {}
    func (x ((*((T7)))),) m6() {}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/locking/LockEntryFilterFactoryTest.groovy

            ['org:foo']             | ['org:foo:2.1']                   | ['com:bar:1.1']
            ['org:foo,']            | ['org:foo:2.1']                   | ['com:bar:1.1'] // Simply shows a trailing comma is ignored
            ['co*:ba*']             | ['com:bar:2.1']                   | ['org:foo:1.1']
            ['*:ba*']               | ['org:bar:2.1']                   | ['com:foo:1.1']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.9K bytes
    - Viewed (0)
Back to top