Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 468 for uspace (0.36 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/attributes/Usage.java

    import org.gradle.api.Named;
    
    /**
     * Represents the usage of a configuration. Typical usages include compilation or runtime.
     * This interface allows the user to customize usages by implementing this interface.
     *
     * @since 3.4
     */
    public interface Usage extends Named {
        Attribute<Usage> USAGE_ATTRIBUTE = Attribute.of("org.gradle.usage", Usage.class);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/pluggable_profiler/pluggable_profiler.cc

        profiler_fns_.stop(&profiler_, status.get());
        return tensorflow::StatusFromTF_Status(status.get());
      }
    
      Status CollectData(XSpace* space) override {
        tensorflow::TF_StatusPtr status(TF_NewStatus());
        // Get size of buffer required for Plugin to serialize XSpace into it.
        size_t size_in_bytes;
        profiler_fns_.collect_data_xspace(&profiler_, /*buffer=*/nullptr,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  3. src/cmd/gofmt/internal.go

    	// Otherwise, append output to leading space.
    	res = append(res, out...)
    
    	// Determine and append trailing space.
    	i = len(src)
    	for i > 0 && isSpace(src[i-1]) {
    		i--
    	}
    	return append(res, src[i:]...), nil
    }
    
    // isSpace reports whether the byte is a space character.
    // isSpace defines a space as being among the following bytes: ' ', '\t', '\n' and '\r'.
    func isSpace(b byte) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 28 14:23:08 UTC 2020
    - 5K bytes
    - Viewed (0)
  4. src/go/format/internal.go

    	// Otherwise, append output to leading space.
    	res = append(res, out...)
    
    	// Determine and append trailing space.
    	i = len(src)
    	for i > 0 && isSpace(src[i-1]) {
    		i--
    	}
    	return append(res, src[i:]...), nil
    }
    
    // isSpace reports whether the byte is a space character.
    // isSpace defines a space as being among the following bytes: ' ', '\t', '\n' and '\r'.
    func isSpace(b byte) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 28 14:23:08 UTC 2020
    - 5K bytes
    - Viewed (0)
  5. 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)
  6. src/unicode/graphic.go

    	}
    	return Is(Punct, r)
    }
    
    // IsSpace reports whether the rune is a space character as defined
    // by Unicode's White Space property; in the Latin-1 space
    // this is
    //
    //	'\t', '\n', '\v', '\f', '\r', ' ', U+0085 (NEL), U+00A0 (NBSP).
    //
    // Other definitions of spacing characters are set by category
    // Z and property [Pattern_White_Space].
    func IsSpace(r rune) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 20:02:46 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  7. src/unicode/example_test.go

    	fmt.Printf("%t\n", unicode.IsTitle('a'))
    	// Output:
    	// true
    	// false
    }
    
    func ExampleIsSpace() {
    	fmt.Printf("%t\n", unicode.IsSpace(' '))
    	fmt.Printf("%t\n", unicode.IsSpace('\n'))
    	fmt.Printf("%t\n", unicode.IsSpace('\t'))
    	fmt.Printf("%t\n", unicode.IsSpace('a'))
    	// Output:
    	// true
    	// true
    	// true
    	// false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 08 00:18:29 UTC 2021
    - 5.2K bytes
    - Viewed (0)
  8. src/internal/trace/raw/textreader.go

    		return nil, fmt.Errorf("unknown or unsupported Go version 1.%d", v)
    	}
    	tr.v = v
    	tr.specs = v.Specs()
    	tr.names = event.Names(tr.specs)
    	for _, r := range line {
    		if !unicode.IsSpace(r) {
    			return nil, fmt.Errorf("encountered unexpected non-space at the end of the header: %q", line)
    		}
    	}
    	return tr, nil
    }
    
    // Version returns the version of the trace that we're reading.
    func (r *TextReader) Version() version.Version {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  9. fess-crawler/src/main/java/org/codelibs/fess/crawler/util/TextUtil.java

                                    isSpace = removeLastDuplication(buf, alphanumSize, isSpace, termCache);
                                } else if (symbolSize > 0) {
                                    isSpace = removeLastDuplication(buf, symbolSize, isSpace, termCache);
                                }
                            }
                            // space
                            if (!isSpace && !isLastSpaceChar(buf)) {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  10. src/cmd/go/internal/work/shell_test.go

    	f.Add([]byte(`${FOO}`))
    	f.Add([]byte(`\${FOO}`))
    	f.Add([]byte(`$(/bin/false)`))
    	f.Add([]byte(`\$(/bin/false)`))
    	f.Add([]byte(`$((0))`))
    	f.Add([]byte(`\$((0))`))
    	f.Add([]byte(`unescaped space`))
    	f.Add([]byte(`escaped\ space`))
    	f.Add([]byte(`"unterminated quote`))
    	f.Add([]byte(`'unterminated quote`))
    	f.Add([]byte(`unterminated escape\`))
    	f.Add([]byte(`"quote with unterminated escape\`))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 15 15:30:05 UTC 2023
    - 4.5K bytes
    - Viewed (0)
Back to top