Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,016 for JOIN (0.16 sec)

  1. src/path/filepath/path.go

    func Split(path string) (dir, file string) {
    	return filepathlite.Split(path)
    }
    
    // Join joins any number of path elements into a single path,
    // separating them with an OS specific [Separator]. Empty elements
    // are ignored. The result is Cleaned. However, if the argument
    // list is empty or all its elements are empty, Join returns
    // an empty string.
    // On Windows, the result will only be a UNC path if the first
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  2. 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)
  3. cmd/kube-apiserver/app/testing/testserver.go

    		// write the key to disk
    		privateKeyPath := filepath.Join(s.SecureServing.ServerCert.CertDirectory, "misty-crt.key")
    		encodedPrivateKey, err := keyutil.MarshalPrivateKeyToPEM(signer)
    		if err != nil {
    			return result, err
    		}
    		if err := keyutil.WriteKey(privateKeyPath, encodedPrivateKey); err != nil {
    			return result, err
    		}
    
    		s.ProxyClientKeyFile = filepath.Join(s.SecureServing.ServerCert.CertDirectory, "misty-crt.key")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  4. cmd/data-usage_test.go

    }
    
    func createUsageTestFiles(t *testing.T, base, bucket string, files []usageTestFile) {
    	for _, f := range files {
    		err := os.MkdirAll(filepath.Dir(filepath.Join(base, bucket, f.name)), os.ModePerm)
    		if err != nil {
    			t.Fatal(err)
    		}
    		err = os.WriteFile(filepath.Join(base, bucket, f.name), make([]byte, f.size), os.ModePerm)
    		if err != nil {
    			t.Fatal(err)
    		}
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Mar 27 15:10:40 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/driver/interactive.go

    			values := append([]string{}, f.choices...)
    			sort.Strings(values)
    			comment = "[" + strings.Join(values, " | ") + "]"
    		case n == "sample_index":
    			st := sampleTypes(p)
    			if v == "" {
    				// Apply default (last sample index).
    				v = st[len(st)-1]
    			}
    			// Add comments for all sample types in profile.
    			comment = "[" + strings.Join(st, " | ") + "]"
    		case n == "source_path":
    			continue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 10.6K bytes
    - Viewed (0)
  6. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/TikaExtractorTest.java

            for (final String key : extractData.getKeySet()) {
                logger.info("{}={}", key, String.join("|", extractData.getValues(key)));
            }
            assertEquals("4", extractData.getValues("cp:revision")[0]);
            assertEquals("こめんと", extractData.getValues("w:Comments")[0]);
            assertEquals("たぐ|さぶたいとる", String.join("|", extractData.getValues("dc:subject")));
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  7. cmd/kube-scheduler/app/options/options_test.go

    			username = "none, http"
    		}
    		w.WriteHeader(200)
    		w.Write([]byte(`ok`))
    	}))
    	defer insecureserver.Close()
    
    	// config file and kubeconfig
    	configFile := filepath.Join(tmpDir, "scheduler.yaml")
    	configKubeconfig := filepath.Join(tmpDir, "config.kubeconfig")
    	if err := os.WriteFile(configFile, []byte(fmt.Sprintf(`
    apiVersion: kubescheduler.config.k8s.io/v1
    kind: KubeSchedulerConfiguration
    clientConnection:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 13 07:42:19 UTC 2023
    - 30.3K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/primitives/UnsignedLongsTest.java

        assertThat(UnsignedLongs.join(",")).isEmpty();
        assertThat(UnsignedLongs.join(",", 1)).isEqualTo("1");
        assertThat(UnsignedLongs.join(",", 1, 2)).isEqualTo("1,2");
        assertThat(UnsignedLongs.join(",", -1, Long.MIN_VALUE))
            .isEqualTo("18446744073709551615,9223372036854775808");
        assertThat(UnsignedLongs.join("", 1, 2, 3)).isEqualTo("123");
        assertThat(UnsignedLongs.join("", -1, Long.MIN_VALUE))
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:36:17 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  9. 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)
  10. cmd/signature-v4-parser_test.go

    			t.Errorf("Test %d: Expected the APIErrCode to be %d, got %d", i+1, testCase.expectedErrCode, actualErrCode)
    		}
    		if actualErrCode == ErrNone {
    			if strings.Join(testCase.expectedSignedHeaders, ",") != strings.Join(actualSignedHeaders, ",") {
    				t.Errorf("Test %d: Expected the result to be \"%v\", but got \"%v\". ", i+1, testCase.expectedSignedHeaders, actualSignedHeaders)
    			}
    		}
    
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 27.4K bytes
    - Viewed (0)
Back to top