Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for metacharacter (0.22 sec)

  1. platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt

    #   set -- "\${ARGS[@]}" "\$@"
    #
    # but POSIX shell has neither arrays nor command substitution, so instead we
    # post-process each arg (as a line of input to sed) to backslash-escape any
    # character that might be a shell metacharacter, then use eval to reverse
    # that process (while maintaining the separation between arguments), and wrap
    # the whole thing up as a single "set" statement.
    #
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 13:43:33 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. src/cmd/go/main.go

    			// or C:\PROGRA~1. Only ~ as a path prefix has meaning to the shell.
    			if strings.HasPrefix(p, "~") {
    				fmt.Fprintf(os.Stderr, "go: GOPATH entry cannot start with shell metacharacter '~': %q\n", p)
    				os.Exit(2)
    			}
    			if !filepath.IsAbs(p) {
    				if cfg.Getenv("GOPATH") == "" {
    					// We inferred $GOPATH from $HOME and did a bad job at it.
    					// Instead of dying, uninfer it.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:09:11 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. src/cmd/go/internal/envcmd/env.go

    		case "", "auto", "on", "off":
    		default:
    			return fmt.Errorf("invalid %s value %q", key, val)
    		}
    	case "GOPATH":
    		if strings.HasPrefix(val, "~") {
    			return fmt.Errorf("GOPATH entry cannot start with shell metacharacter '~': %q", val)
    		}
    		if !filepath.IsAbs(val) && val != "" {
    			return fmt.Errorf("GOPATH entry is relative; must be absolute path: %q", val)
    		}
    	case "GOMODCACHE":
    		if !filepath.IsAbs(val) && val != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  4. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/TikaExtractorTest.java

            assertEquals("2012-05-18T22:44:00Z", extractData.getValues("dcterms:modified")[0]);
            assertEquals("3", extractData.getValues("meta:character-count")[0]);
            assertEquals("じょうたい", extractData.getValues("cp:contentStatus")[0]);
            assertEquals("3", extractData.getValues("meta:character-count-with-spaces")[0]);
            assertEquals("たいとる", extractData.getValues("dc:title")[0]);
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  5. src/regexp/regexp.go

    		specialBytes[b%16] |= 1 << (b / 16)
    	}
    }
    
    // QuoteMeta returns a string that escapes all regular expression metacharacters
    // inside the argument text; the returned string is a regular expression matching
    // the literal text.
    func QuoteMeta(s string) string {
    	// A byte loop is correct because all metacharacters are ASCII.
    	var i int
    	for i = 0; i < len(s); i++ {
    		if special(s[i]) {
    			break
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:50:01 UTC 2024
    - 38.5K bytes
    - Viewed (0)
Back to top