Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of about 10,000 for stringy (0.17 sec)

  1. istioctl/pkg/kubeinject/kubeinject_test.go

    		},
    		{ // 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"+
    					" --injectConfigFile testdata/inject-config.yaml -f testdata/deployment/hello.yaml"+
    					" --valuesFile testdata/inject-values.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)
  2. istioctl/pkg/proxystatus/proxystatus_test.go

    type execTestCase struct {
    	args     []string
    	revision string
    	noIstiod bool
    
    	// Typically use one of the three
    	expectedOutput string // Expected constant output
    	expectedString string // String output is expected to contain
    
    	wantException bool
    }
    
    func TestProxyStatus(t *testing.T) {
    	cases := []execTestCase{
    		{ // case 0, with no Isitod instance
    			args:           []string{},
    			noIstiod:       true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 08:28:50 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/buildtag/buildtag_old.go

    		}
    	}
    	return nil
    }
    
    func checkArguments(fields []string) error {
    	for _, arg := range fields[1:] {
    		for _, elem := range strings.Split(arg, ",") {
    			if strings.HasPrefix(elem, "!!") {
    				return fmt.Errorf("invalid double negative in build constraint: %s", arg)
    			}
    			elem = strings.TrimPrefix(elem, "!")
    			for _, c := range elem {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. pkg/test/util/yml/cache_test.go

    	by, err := os.ReadFile(file)
    	g.Expect(err).To(BeNil())
    	g.Expect(strings.TrimSpace(string(by))).To(Equal(strings.TrimSpace(gateway)))
    
    	keys, err = c.Apply(updatedGateway)
    	g.Expect(err).To(BeNil())
    	file = c.GetFileFor(keys[0])
    	by, err = os.ReadFile(file)
    	g.Expect(err).To(BeNil())
    	g.Expect(strings.TrimSpace(string(by))).To(Equal(strings.TrimSpace(updatedGateway)))
    
    	applyKeys := keys
    	keys = c.AllKeys()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  5. src/crypto/purego_test.go

    	}
    	pkgs := strings.Split(strings.TrimSpace(string(out)), "\n")
    
    	cmd = exec.Command(testenv.GoToolPath(t), "tool", "dist", "list")
    	cmd.Stderr = os.Stderr
    	out, err = cmd.Output()
    	if err != nil {
    		log.Fatalf("loading architecture list: %v\n%s", err, out)
    	}
    	allGOARCH := make(map[string]bool)
    	for _, pair := range strings.Split(strings.TrimSpace(string(out)), "\n") {
    		GOARCH := strings.Split(pair, "/")[1]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. schema/index.go

    	for _, value := range strings.Split(field.Tag.Get("gorm"), ";") {
    		if value != "" {
    			v := strings.Split(value, ":")
    			k := strings.TrimSpace(strings.ToUpper(v[0]))
    			if k == "INDEX" || k == "UNIQUEINDEX" {
    				var (
    					name       string
    					tag        = strings.Join(v[1:], ":")
    					idx        = strings.Index(tag, ",")
    					tagSetting = strings.Join(strings.Split(tag, ",")[1:], ",")
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Sun Feb 04 07:49:19 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  7. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/kryo/StringDeduplicatingKryoBackedDecoder.java

                String string = null;
                if (idx >= strings.length) {
                    String[] grow = new String[strings.length * 3 / 2];
                    System.arraycopy(strings, 0, grow, 0, strings.length);
                    strings = grow;
                } else {
                    string = strings[idx];
                }
                if (string == null) {
                    string = input.readString();
                    strings[idx] = string;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/telemetry/internal/telemetry/proginfo.go

    // special characters.
    func ProgramInfo(info *debug.BuildInfo) (goVers, progPath, progVers string) {
    	goVers = info.GoVersion
    	if strings.Contains(goVers, "devel") || strings.Contains(goVers, "-") {
    		goVers = "devel"
    	}
    
    	progPath = info.Path
    	if progPath == "" {
    		progPath = strings.TrimSuffix(filepath.Base(os.Args[0]), ".exe")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:09:33 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/configurationCache/sharedObjects/groovy/build.gradle

    abstract class StatefulTask extends DefaultTask {
        @Internal
        StateObject stateObject
    
        @Internal
        List<String> strings
    }
    
    
    tasks.register("checkEquality", StatefulTask) {
        def objectValue = new StateObject()
        def stringsValue = ["a", "b"] as ArrayList<String>
    
        stateObject = objectValue
        strings = stringsValue
    
        doLast { // <1>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 641 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/configurationCache/sharedObjects/kotlin/build.gradle.kts

        @get:Internal
        var stateObject: StateObject? = null
    
        @get:Internal
        var strings: List<String>? = null
    }
    
    
    tasks.register<StatefulTask>("checkEquality") {
        val objectValue = StateObject()
        val stringsValue = arrayListOf("a", "b")
    
        stateObject = objectValue
        strings = stringsValue
    
        doLast { // <1>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 657 bytes
    - Viewed (0)
Back to top