Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 6,622 for stringy (0.08 sec)

  1. pilot/cmd/pilot-agent/options/agent.go

    	var insecureRegistries []string
    	if wasmInsecureRegistries != "" {
    		insecureRegistries = strings.Split(wasmInsecureRegistries, ",")
    	}
    	o := &istioagent.AgentOptions{
    		XDSRootCerts:             xdsRootCA,
    		CARootCerts:              caRootCA,
    		XDSHeaders:               map[string]string{},
    		XdsUdsPath:               filepath.Join(cfg.ConfigPath, "XDS"),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/syntax/issues_test.go

    	}
    
    	for _, src := range tests {
    		// identify column position of @ and remove it from src
    		i := strings.Index(src, "@")
    		if i < 0 {
    			t.Errorf("%s: invalid test case (missing @)", src)
    			continue
    		}
    		src = src[:i] + src[i+1:]
    		want := colbase + uint(i)
    
    		f, err := Parse(nil, strings.NewReader(src), nil, nil, 0)
    		if err != nil {
    			t.Errorf("%s: %v", src, err)
    			continue
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 17:49:19 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. src/cmd/fix/buildtag.go

    	// some lines from a comment block - does format correctly.
    	fixed := false
    	for _, g := range f.Comments {
    		sawGoBuild := false
    		for i, c := range g.List {
    			if strings.HasPrefix(c.Text, "//go:build ") {
    				sawGoBuild = true
    			}
    			if sawGoBuild && strings.HasPrefix(c.Text, "// +build ") {
    				g.List = g.List[:i]
    				fixed = true
    				break
    			}
    		}
    	}
    
    	return fixed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 05:31:47 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  4. src/encoding/xml/xml_test.go

    		}
    	}
    }
    
    var procInstTests = []struct {
    	input  string
    	expect [2]string
    }{
    	{`version="1.0" encoding="utf-8"`, [2]string{"1.0", "utf-8"}},
    	{`version="1.0" encoding='utf-8'`, [2]string{"1.0", "utf-8"}},
    	{`version="1.0" encoding='utf-8' `, [2]string{"1.0", "utf-8"}},
    	{`version="1.0" encoding=utf-8`, [2]string{"1.0", ""}},
    	{`encoding="FOO" `, [2]string{"", "FOO"}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  5. pilot/pkg/bootstrap/webhook.go

    // httpsReadyClient can trigger this periodically when multiple concurrent probes are hitting this endpoint.
    func (*httpServerErrorLogWriter) Write(p []byte) (int, error) {
    	m := strings.TrimSuffix(string(p), "\n")
    	if strings.HasPrefix(m, "http: TLS handshake error") && strings.HasSuffix(m, ": EOF") {
    		istiolog.Debug(m)
    	} else {
    		istiolog.Info(m)
    	}
    	return len(p), nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 17:37:53 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  6. src/internal/trace/internal/testgen/go122/trace.go

    	g.batches = append(g.batches, b)
    	return b
    }
    
    // String registers a string with the trace.
    //
    // This is a convenience function for easily adding correct
    // strings to traces.
    func (g *Generation) String(s string) uint64 {
    	if len(s) == 0 {
    		return 0
    	}
    	if id, ok := g.strings[s]; ok {
    		return id
    	}
    	id := uint64(len(g.strings) + 1)
    	g.strings[s] = id
    	return id
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/translate/BUILD

            "@com_google_absl//absl/container:flat_hash_map",
            "@com_google_absl//absl/container:flat_hash_set",
            "@com_google_absl//absl/container:inlined_vector",
            "@com_google_absl//absl/strings",
            "@com_google_absl//absl/synchronization",
            "@llvm-project//llvm:Support",
            "@llvm-project//mlir:FuncDialect",
            "@llvm-project//mlir:IR",
            "@llvm-project//mlir:Pass",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 11K bytes
    - Viewed (0)
  8. android/guava-testlib/src/com/google/common/collect/testing/TestStringQueueGenerator.java

        String[] array = new String[elements.length];
        int i = 0;
        for (Object e : elements) {
          array[i++] = (String) e;
        }
        return create(array);
      }
    
      protected abstract Queue<String> create(String[] elements);
    
      @Override
      public String[] createArray(int length) {
        return new String[length];
      }
    
      /** Returns the original element list, unchanged. */
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. src/net/http/cgi/host.go

    //
    //	cgi.Handler{
    //	  ...
    //	  Env: []string{"SCRIPT_FILENAME=foo.php"},
    //	}
    func removeLeadingDuplicates(env []string) (ret []string) {
    	for i, e := range env {
    		found := false
    		if eq := strings.IndexByte(e, '='); eq != -1 {
    			keq := e[:eq+1] // "key="
    			for _, e2 := range env[i+1:] {
    				if strings.HasPrefix(e2, keq) {
    					found = true
    					break
    				}
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modindex/scan.go

    // which is the comment on import "C".
    func extractCgoDirectives(doc string) []string {
    	var out []string
    	for _, line := range strings.Split(doc, "\n") {
    		// Line is
    		//	#cgo [GOOS/GOARCH...] LDFLAGS: stuff
    		//
    		line = strings.TrimSpace(line)
    		if len(line) < 5 || line[:4] != "#cgo" || (line[4] != ' ' && line[4] != '\t') {
    			continue
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 8.5K bytes
    - Viewed (0)
Back to top