Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 771 for JOIN (0.05 sec)

  1. src/net/smtp/smtp_test.go

    		bcmdbuf.Flush()
    		actualcmds := cmdbuf.String()
    		client := strings.Join(strings.Split(basicClient, "\n"), "\r\n")
    		if client != actualcmds {
    			t.Fatalf("Got:\n%s\nExpected:\n%s", actualcmds, client)
    		}
    	})
    }
    
    func TestNewClient(t *testing.T) {
    	server := strings.Join(strings.Split(newClientServer, "\n"), "\r\n")
    	client := strings.Join(strings.Split(newClientClient, "\n"), "\r\n")
    
    	var cmdbuf strings.Builder
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  2. pilot/pkg/bootstrap/istio_ca.go

    				path.Join(LocalCertDir.Get(), ca.TLSSecretRootCertFile),
    			},
    			SigningCertFile: tlsSigningFile,
    			SigningKeyFile:  path.Join(LocalCertDir.Get(), ca.TLSSecretCAPrivateKeyFile),
    		}, nil
    	} else if !os.IsNotExist(err) {
    		return ca.SigningCAFileBundle{}, err
    	}
    
    	log.Info("Using istiod file format for signing ca files")
    	// default ca file format
    	return ca.SigningCAFileBundle{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/telemetry/internal/upload/findwork.go

    	// count files end in .v1.count
    	// reports end in .json. If they are not to be uploaded they
    	// start with local.
    	for _, fi := range fis {
    		if strings.HasSuffix(fi.Name(), ".v1.count") {
    			fname := filepath.Join(localdir, fi.Name())
    			_, expiry, err := u.counterDateSpan(fname)
    			switch {
    			case err != nil:
    				u.logger.Printf("Error reading expiry for count file %s: %v", fi.Name(), err)
    			case expiry.After(u.startTime):
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:12:15 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. cmd/kube-scheduler/app/server_test.go

    	// https server
    	server := httptest.NewTLSServer(http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
    		w.WriteHeader(200)
    		w.Write([]byte(`ok`))
    	}))
    	defer server.Close()
    
    	configKubeconfig := filepath.Join(tmpDir, "config.kubeconfig")
    	if err := os.WriteFile(configKubeconfig, []byte(fmt.Sprintf(`
    apiVersion: v1
    kind: Config
    clusters:
    - cluster:
        insecure-skip-tls-verify: true
        server: %s
      name: default
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/options/serving_test.go

    			}
    			signatures := map[string]int{
    				serverSig: -1,
    			}
    			for j, c := range test.SNICerts {
    				sniDir := filepath.Join(certDir, specToName(c.TestCertSpec))
    				certBundleFile := filepath.Join(sniDir, "cert")
    				keyFile := filepath.Join(sniDir, "key")
    				err := getOrCreateTestCertFiles(certBundleFile, keyFile, c.TestCertSpec)
    				if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 15:52:39 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/fmahash_test.go

    		t.Skipf("Slow test, usually avoid it, arch=%s not amd64 or arm64", runtime.GOARCH)
    	}
    
    	testenv.MustHaveGoBuild(t)
    	gocmd := testenv.GoToolPath(t)
    	tmpdir := t.TempDir()
    	source := filepath.Join("testdata", "fma.go")
    	output := filepath.Join(tmpdir, "fma.exe")
    	cmd := testenv.Command(t, gocmd, "build", "-o", output, source)
    	// The hash-dependence on file path name is dodged by specifying "all hashes ending in 1" plus "all hashes ending in 0"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 21:57:53 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/exception/DefaultExceptionHandler.java

                    fullMessage = join(fullMessage, "Unknown host " + exceptionMessage);
                } else if (!fullMessage.contains(exceptionMessage)) {
                    fullMessage = join(fullMessage, exceptionMessage);
                }
    
                if (!dejaVu.add(t)) {
                    fullMessage = join(fullMessage, "[CIRCULAR REFERENCE]");
                    break;
                }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 10:31:03 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/JavaPluginImplementation.groovy

            sourceFile << """
                import ${Action.name};
                import ${Project.name};
                import ${Plugin.name};
                import ${Task.name};
                ${read.requiredImports().collect { "import $it;" }.join("\n")}
    
                public class SneakyPlugin implements Plugin<Project> {
                    public void apply(Project project) {
                        Object value = ${read.javaExpression};
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. src/cmd/go/internal/clean/clean.go

    			subdirs, _ := filepath.Glob(filepath.Join(str.QuoteGlob(dir), "[0-9a-f][0-9a-f]"))
    			printedErrors := false
    			if len(subdirs) > 0 {
    				if err := sh.RemoveAll(subdirs...); err != nil && !printedErrors {
    					printedErrors = true
    					base.Error(err)
    				}
    			}
    
    			logFile := filepath.Join(dir, "log.txt")
    			if err := sh.RemoveAll(logFile); err != nil && !printedErrors {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. src/cmd/go/internal/envcmd/env.go

    		return nil
    	}
    	cmd := b.GccCmd(".", "")
    
    	join := func(s []string) string {
    		q, err := quoted.Join(s)
    		if err != nil {
    			return strings.Join(s, " ")
    		}
    		return q
    	}
    
    	ret := []cfg.EnvVar{
    		// Note: Update the switch in runEnv below when adding to this list.
    		{Name: "CGO_CFLAGS", Value: join(cflags)},
    		{Name: "CGO_CPPFLAGS", Value: join(cppflags)},
    		{Name: "CGO_CXXFLAGS", Value: join(cxxflags)},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.6K bytes
    - Viewed (0)
Back to top