Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 158 for isspace (0.16 sec)

  1. src/cmd/cgo/internal/testcarchive/carchive_test.go

    	cc = []string{string(ccOut)}
    
    	out := goEnv("GOGCCFLAGS")
    	quote := '\000'
    	start := 0
    	lastSpace := true
    	backslash := false
    	s := string(out)
    	for i, c := range s {
    		if quote == '\000' && unicode.IsSpace(c) {
    			if !lastSpace {
    				cc = append(cc, s[start:i])
    				lastSpace = true
    			}
    		} else {
    			if lastSpace {
    				start = i
    				lastSpace = false
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:43:51 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

      ::std::set<const char*> defined_test_names_;
    };
    
    // Skips to the first non-space char after the first comma in 'str';
    // returns NULL if no comma is found in 'str'.
    inline const char* SkipComma(const char* str) {
      const char* comma = strchr(str, ',');
      if (comma == NULL) {
        return NULL;
      }
      while (IsSpace(*(++comma))) {}
      return comma;
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

      ::std::set<const char*> defined_test_names_;
    };
    
    // Skips to the first non-space char after the first comma in 'str';
    // returns NULL if no comma is found in 'str'.
    inline const char* SkipComma(const char* str) {
      const char* comma = strchr(str, ',');
      if (comma == NULL) {
        return NULL;
      }
      while (IsSpace(*(++comma))) {}
      return comma;
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 43.1K bytes
    - Viewed (0)
  4. src/cmd/cgo/gcc.go

    		p.LdFlags = append(p.LdFlags, args...)
    	}
    }
    
    // splitQuoted splits the string s around each instance of one or more consecutive
    // white space characters while taking into account quotes and escaping, and
    // returns an array of substrings of s or an empty list if s contains only white space.
    // Single quotes and double quotes are recognized to prevent splitting within the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  5. src/go/printer/nodes.go

    	// U+FFFD."
    	if s == "" {
    		return lit
    	}
    	const illegalChars = `!"#$%&'()*,:;<=>?[\]^{|}` + "`\uFFFD"
    	for _, r := range s {
    		if !unicode.IsGraphic(r) || unicode.IsSpace(r) || strings.ContainsRune(illegalChars, r) {
    			return lit
    		}
    	}
    
    	// otherwise, return the double-quoted path
    	s = strconv.Quote(s)
    	if s == lit.Value {
    		return lit // nothing wrong with lit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  6. src/cmd/internal/testdir/testdir_test.go

    		m[key] = true
    	}
    	return m
    }
    
    // splitQuoted splits the string s around each instance of one or more consecutive
    // white space characters while taking into account quotes and escaping, and
    // returns an array of substrings of s or an empty list if s contains only white space.
    // Single quotes and double quotes are recognized to prevent splitting within the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  7. src/cmd/cgo/out.go

    // involving symbol versions, they won't be) they must contain only
    // graphic characters and must not contain Go comments.
    func checkImportSymName(s string) {
    	for _, c := range s {
    		if !unicode.IsGraphic(c) || unicode.IsSpace(c) {
    			fatalf("dynamic symbol %q contains unsupported character", s)
    		}
    	}
    	if strings.Contains(s, "//") || strings.Contains(s, "/*") {
    		fatalf("dynamic symbol %q contains Go comment")
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  8. src/go/build/build.go

    		}
    	}
    	return true
    }
    
    // splitQuoted splits the string s around each instance of one or more consecutive
    // white space characters while taking into account quotes and escaping, and
    // returns an array of substrings of s or an empty list if s contains only white space.
    // Single quotes and double quotes are recognized to prevent splitting within the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  9. samples/kind-lb/setupkind.sh

      ipv4Range="- ${ipv4Prefix}.${IPSPACE}.200-${ipv4Prefix}.${IPSPACE}.240"
      ipv6Range=""
    elif [[ "${IPFAMILY}" == "ipv6" ]]; then
      addrName="GlobalIPv6Address"
      ipv4Range=""
      ipv6Range="- ${ipv6Prefix}::${IPSPACE}:200-${ipv6Prefix}::${IPSPACE}:240"
    else
      if [[ "${IPV6GW}" == "true" ]]; then
        addrName="GlobalIPv6Address"
      fi
    
      ipv4Range="- ${ipv4Prefix}.${IPSPACE}.200-${ipv4Prefix}.${IPSPACE}.240"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 02 19:08:19 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/typecheck/subr.go

    			return ir.OCONVNOP, ""
    		}
    		if src.IsShape() || dst.IsShape() {
    			// Conversion between a shape type and one of the types
    			// it represents also needs no conversion.
    			return ir.OCONVNOP, ""
    		}
    	}
    
    	// 3. dst is an interface type and src implements dst.
    	if dst.IsInterface() && src.Kind() != types.TNIL {
    		if src.IsShape() {
    			// Shape types implement things they have already
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 19:45:58 UTC 2023
    - 20.2K bytes
    - Viewed (0)
Back to top