Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 2,195 for SplitV (0.15 sec)

  1. build-logic/kotlin-dsl/src/main/kotlin/gradlebuild/kotlindsl/generator/codegen/FunctionSinceRepository.kt

    internal
    fun javaFunctionOf(functionSignature: String): JavaFunction<String> =
        JavaFunction(
            typeName = functionSignature.split('(')[0].dropLastWhile { it != '.' }.dropLast(1),
            name = functionSignature.split('(')[0].takeLastWhile { it != '.' },
            parameterTypes = functionSignature.split('(')[1].dropLast(1).split(",").map { it.trim() }.let { paramStrings ->
                paramStrings.mapIndexed { idx: Int, paramString: String ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 17:09:50 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  2. src/regexp/all_test.go

    			continue
    		}
    
    		split := re.Split(test.s, test.n)
    		if !slices.Equal(split, test.out) {
    			t.Errorf("#%d: %q: got %q; want %q", i, test.r, split, test.out)
    		}
    
    		if QuoteMeta(test.r) == test.r {
    			strsplit := strings.SplitN(test.s, test.r, test.n)
    			if !slices.Equal(split, strsplit) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  3. src/testing/match.go

    			// collides with the first occurrence of a subtest *explicitly* named
    			// "parent/subname#NN". Try the next number.
    			continue
    		}
    
    		return name
    	}
    }
    
    // parseSubtestNumber splits a subtest name into a "#%02d"-formatted int32
    // suffix (if present), and a prefix preceding that suffix (always).
    func parseSubtestNumber(s string) (prefix string, nn int32) {
    	i := strings.LastIndex(s, "#")
    	if i < 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 27 22:07:13 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  4. manifests/charts/istio-control/istio-discovery/templates/_helpers.tpl

    }}
    {{- end }}
    
    {{/* SD has metrics and logging split. Default metrics are enabled if SD is enabled */}}
    {{ define "default-sd-metrics" }}
    {{- and
      (not .Values.meshConfig.defaultProviders)
      .Values.telemetry.enabled .Values.telemetry.v2.enabled .Values.telemetry.v2.stackdriver.enabled
    }}
    {{- end }}
    
    {{/* SD has metrics and logging split. */}}
    {{ define "default-sd-logs" }}
    {{- and
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 13 03:23:36 UTC 2023
    - 817 bytes
    - Viewed (0)
  5. manifests/charts/istiod-remote/templates/_helpers.tpl

    }}
    {{- end }}
    
    {{/* SD has metrics and logging split. Default metrics are enabled if SD is enabled */}}
    {{ define "default-sd-metrics" }}
    {{- and
      (not .Values.meshConfig.defaultProviders)
      .Values.telemetry.enabled .Values.telemetry.v2.enabled .Values.telemetry.v2.stackdriver.enabled
    }}
    {{- end }}
    
    {{/* SD has metrics and logging split. */}}
    {{ define "default-sd-logs" }}
    {{- and
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 13 03:23:36 UTC 2023
    - 817 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/mod/example.com_split-incompatible_subpkg_v0.1.0.txt

    Test case for getting a package that has been moved to a nested module,
    with a +incompatible version (and thus no go.mod file) at the root module.
    
    -- .mod --
    module example.com/split-incompatible/subpkg
    -- .info --
    {"Version": "v0.1.0"}
    -- go.mod --
    module example.com/split-incompatible/subpkg
    
    go 1.16
    -- subpkg.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 24 04:11:43 UTC 2021
    - 353 bytes
    - Viewed (0)
  7. src/hash/marshal_test.go

    			buf := make([]byte, 256)
    			for i := range buf {
    				buf[i] = byte(i)
    			}
    
    			h := tt.new()
    			h.Write(buf[:256])
    			sum := h.Sum(nil)
    
    			h2 := tt.new()
    			h3 := tt.new()
    			const split = 249
    			for i := 0; i < split; i++ {
    				h2.Write(buf[i : i+1])
    			}
    			h2m, ok := h2.(encoding.BinaryMarshaler)
    			if !ok {
    				t.Fatalf("Hash does not implement MarshalBinary")
    			}
    			enc, err := h2m.MarshalBinary()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 06 07:45:46 UTC 2017
    - 5.4K bytes
    - Viewed (0)
  8. platforms/software/build-init/src/main/resources/org/gradle/buildinit/tasks/templates/javaapplication/multi/app/App.java.template

    import static ${basePackagePrefix.raw}utilities.StringUtils.split;
    import static ${basePackagePrefix.raw}app.MessageUtils.getMessage;
    
    import org.apache.commons.text.WordUtils;
    
    public class App {
        public static void main(String[] args) {
            LinkedList tokens;
            tokens = split(getMessage());
            String result = join(tokens);
            System.out.println(WordUtils.capitalize(result));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 19:39:09 UTC 2023
    - 586 bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/catalog/parser/TomlCatalogFileParser.java

            String mi = expectString(alias, librariesTable, "module");
            if (mi != null) {
                List<String> split = SPLITTER.splitToList(mi);
                if (split.size() == 2) {
                    group = notEmpty(split.get(0), "group", alias);
                    name = notEmpty(split.get(1), "name", alias);
                } else {
                    throw throwVersionCatalogProblemException(builder ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  10. platforms/software/build-init/src/main/resources/org/gradle/buildinit/tasks/templates/groovyapplication/multi/app/App.groovy.template

    import static ${basePackagePrefix.raw}utilities.StringUtils.join
    import static ${basePackagePrefix.raw}utilities.StringUtils.split
    import static ${basePackagePrefix.raw}app.MessageUtils.getMessage
    
    import org.apache.commons.text.WordUtils
    
    class App {
        static void main(String[] args) {
            LinkedList tokens
            tokens = split(getMessage())
            String result = join(tokens)
            println(WordUtils.capitalize(result))
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 19:39:09 UTC 2023
    - 548 bytes
    - Viewed (0)
Back to top