Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,080 for split3 (0.11 sec)

  1. pilot/pkg/config/file/util/kubeyaml/kubeyaml_test.go

    	"testing"
    
    	. "github.com/onsi/gomega"
    )
    
    var joinCases = []struct {
    	merged string
    	split  []string
    }{
    	{
    		merged: "",
    		split:  nil,
    	},
    	{
    		merged: `yaml: foo`,
    		split: []string{
    			`yaml: foo`,
    		},
    	},
    	{
    		merged: `
    yaml: foo
    ---
    bar: boo
    `,
    		split: []string{
    			`
    yaml: foo
    `,
    			`bar: boo
    `,
    		},
    	},
    	{
    		merged: `
    yaml: foo
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/model/bucket-extensions.kt

    package model
    
    import java.util.LinkedList
    import kotlin.math.min
    
    /**
     * Split a list of elements into nearly even sublist. If an element is too large, largeElementSplitFunction will be used to split the large element into several smaller pieces;
     * if some elements are too small, they will be aggregated by smallElementAggregateFunction.
     *
     * @param list the list to split, must be ordered by size desc
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 17 05:17:44 UTC 2022
    - 4K bytes
    - Viewed (0)
  3. operator/pkg/util/path.go

    func RemoveBrackets(pe string) (string, bool) {
    	if !strings.HasPrefix(pe, "[") || !strings.HasSuffix(pe, "]") {
    		return "", false
    	}
    	return pe[1 : len(pe)-1], true
    }
    
    // splitEscaped splits a string using the rune r as a separator. It does not split on r if it's prefixed by \.
    func splitEscaped(s string, r rune) []string {
    	var prev rune
    	if len(s) == 0 {
    		return []string{}
    	}
    	prevIdx := 0
    	var out []string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 12 17:12:54 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  4. pkg/test/framework/components/echo/config/source.go

    	YAMLOrFail(t test.Failer) string
    
    	// MustYAML calls GetYAML and panics if an error occurs.
    	MustYAML() string
    
    	// Split this source into individual CRDs.
    	Split() ([]Source, error)
    
    	// SplitOrFail calls Split and fails if an error occurs.
    	SplitOrFail(t test.Failer) []Source
    
    	// MustSplit calls Split and panics if an error occurs.
    	MustSplit() []Source
    
    	// Params returns a copy of the parameters for this Source.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 5.2K bytes
    - Viewed (0)
  5. src/cmd/internal/pgo/deserialize.go

    			}
    			return nil, fmt.Errorf("preprocessed profile entry missing weight")
    		}
    		readStr = scanner.Text()
    
    		split := strings.Split(readStr, " ")
    
    		if len(split) != 2 {
    			return nil, fmt.Errorf("preprocessed profile entry got %v want 2 fields", split)
    		}
    
    		co, err := strconv.Atoi(split[0])
    		if err != nil {
    			return nil, fmt.Errorf("preprocessed profile error processing call line: %w", err)
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:20:01 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  6. src/strings/strings_test.go

    	for _, tt := range splittests {
    		a := SplitN(tt.s, tt.sep, tt.n)
    		if !eq(a, tt.a) {
    			t.Errorf("Split(%q, %q, %d) = %v; want %v", tt.s, tt.sep, tt.n, a, tt.a)
    			continue
    		}
    		if tt.n == 0 {
    			continue
    		}
    		s := Join(a, tt.sep)
    		if s != tt.s {
    			t.Errorf("Join(Split(%q, %q, %d), %q) = %q", tt.s, tt.sep, tt.n, tt.sep, s)
    		}
    		if tt.n < 0 {
    			b := Split(tt.s, tt.sep)
    			if !reflect.DeepEqual(a, b) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/dependencysubstitution/ModuleSelectorStringNotationConverter.java

            assert notation != null;
            String[] split = notation.split(":");
    
            if (split.length < 2 || split.length > 3) {
                throw new UnsupportedNotationException(notation);
            }
            String group = validate(split[0].trim(), notation);
            String name = validate(split[1].trim(), notation);
    
            if (split.length == 2) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/notations/ModuleIdentifierNotationConverter.java

            assert notation != null;
            String[] split = notation.split(":");
            if (split.length != 2) {
                throw new UnsupportedNotationException(notation);
            }
            String group = validate(split[0].trim(), notation);
            String name = validate(split[1].trim(), notation);
            result.converted(moduleIdentifierFactory.module(group, name));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  9. istioctl/pkg/kubeinject/kubeinject_test.go

    			WantException:  true,
    		},
    		{ // case 1
    			Args:           strings.Split("-f missing.yaml", " "),
    			ExpectedRegexp: regexp.MustCompile(`open missing.yaml: no such file or directory`),
    			WantException:  true,
    		},
    		{ // case 2
    			Args: strings.Split(
    				"--meshConfigFile testdata/mesh-config.yaml"+
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  10. pkg/bootstrap/platform/azure.go

    		}
    		return tags
    	}
    	// fall back to tags if tagsList is not available
    	if at, ok := e.computeMetadata["tags"]; ok && len(at.(string)) > 0 {
    		for _, tag := range strings.Split(at.(string), ";") {
    			kv := strings.SplitN(tag, ":", 2)
    			switch len(kv) {
    			case 2:
    				tags[e.prefixName(kv[0])] = kv[1]
    			case 1:
    				tags[e.prefixName(kv[0])] = ""
    			}
    		}
    	}
    	return tags
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 6.2K bytes
    - Viewed (0)
Back to top