Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 958 for JOIN (0.04 sec)

  1. src/crypto/tls/bogo_shim_test.go

    		}
    		bogoDir = j.Dir
    	}
    
    	cwd, err := os.Getwd()
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	resultsFile := filepath.Join(t.TempDir(), "results.json")
    
    	args := []string{
    		"test",
    		".",
    		fmt.Sprintf("-shim-config=%s", filepath.Join(cwd, "bogo_config.json")),
    		fmt.Sprintf("-shim-path=%s", os.Args[0]),
    		"-shim-extra-flags=-bogo-mode",
    		"-allow-unimplemented",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:25:39 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  2. cni/pkg/install/install.go

    // NewInstaller returns an instance of Installer with the given config
    func NewInstaller(cfg *config.InstallConfig, isReady *atomic.Value) *Installer {
    	return &Installer{
    		cfg:                cfg,
    		kubeconfigFilepath: filepath.Join(cfg.MountedCNINetDir, cfg.KubeconfigFilename),
    		isReady:            isReady,
    	}
    }
    
    func (in *Installer) installAll(ctx context.Context) (sets.String, error) {
    	// Install binaries
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  3. pkg/test/framework/components/echo/kube/deployment.go

    	grpcFallbackPort = 17777
    )
    
    var echoKubeTemplatesDir = path.Join(env.IstioSrc, "pkg/test/framework/components/echo/kube/templates")
    
    func getTemplate(tmplFilePath string) *template.Template {
    	yamlPath := path.Join(echoKubeTemplatesDir, tmplFilePath)
    	if filepath.IsAbs(tmplFilePath) {
    		yamlPath = tmplFilePath
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  4. security/pkg/nodeagent/cache/secretcache_test.go

    		if err := file.AtomicCopy(filepath.Join("./testdata", f), dir, f); err != nil {
    			t.Fatal(err)
    		}
    	}
    	sc.existingCertificateFile = security.SdsCertificateConfig{
    		CertificatePath:   filepath.Join(dir, "cert-chain.pem"),
    		PrivateKeyPath:    filepath.Join(dir, "key.pem"),
    		CaCertificatePath: filepath.Join(dir, "root-cert.pem"),
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  5. pilot/pkg/bootstrap/certcontroller.go

    	log.Infof("Generating K8S-signed cert for %v using signer %v", s.dnsNames, signerName)
    	certChain, keyPEM, _, err = chiron.GenKeyCertK8sCA(s.kubeClient.Kube(),
    		strings.Join(s.dnsNames, ","), "", signerName, true, SelfSignedCACertTTL.Get())
    	if err != nil {
    		return fmt.Errorf("failed generating key and cert by kubernetes: %v", err)
    	}
    	caBundle, err = s.RA.GetRootCertFromMeshConfig(signerName)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  6. pkg/volume/downwardapi/downwardapi_test.go

    	name string
    }
    
    func (step stepName) getName() string { return step.name }
    
    func doVerifyLinesInFile(t *testing.T, volumePath, filename string, expected string) {
    	data, err := os.ReadFile(filepath.Join(volumePath, filename))
    	if err != nil {
    		t.Errorf(err.Error())
    		return
    	}
    	actualStr := string(data)
    	expectedStr := expected
    	if actualStr != expectedStr {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 02 04:48:49 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  7. istioctl/pkg/multicluster/remote_secret_test.go

    			name: "missing service account",
    			opts: RemoteSecretOptions{
    				ServiceAccountName: testServiceAccountName,
    				KubeOptions: KubeOptions{
    					Namespace: testNamespace,
    				},
    				ManifestsPath: filepath.Join(env.IstioSrc, "manifests"),
    			},
    			wantErrStr: fmt.Sprintf("serviceaccounts %q not found", testServiceAccountName),
    		},
    	}
    
    	legacyCases := append([]tc{
    		{
    			name: "wrong number of secrets",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 20.6K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/primitives/DoublesTest.java

      public void testJoin() {
        assertThat(Doubles.join(",", EMPTY)).isEmpty();
        assertThat(Doubles.join(",", ARRAY1)).isEqualTo("1.0");
        assertThat(Doubles.join(",", (double) 1, (double) 2)).isEqualTo("1.0,2.0");
        assertThat(Doubles.join("", (double) 1, (double) 2, (double) 3)).isEqualTo("1.02.03.0");
      }
    
      public void testJoinNonTrivialDoubles() {
        assertThat(Doubles.join(",", EMPTY)).isEmpty();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 15:43:06 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  9. pkg/volume/csi/csi_block_test.go

    	}{
    		{
    			name:           "simple specName",
    			specVolumeName: "spec-0",
    			path:           filepath.Join(tmpDir, fmt.Sprintf("plugins/kubernetes.io/csi/volumeDevices/%s/%s", "spec-0", "dev")),
    		},
    		{
    			name:           "specName with dots",
    			specVolumeName: "test.spec.1",
    			path:           filepath.Join(tmpDir, fmt.Sprintf("plugins/kubernetes.io/csi/volumeDevices/%s/%s", "test.spec.1", "dev")),
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 06:07:40 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/syntax/parser_test.go

    		filename string
    		lines    uint
    	}
    
    	goroot := testenv.GOROOT(t)
    
    	results := make(chan parseResult)
    	go func() {
    		defer close(results)
    		for _, dir := range []string{
    			filepath.Join(goroot, "src"),
    			filepath.Join(goroot, "misc"),
    		} {
    			if filepath.Base(dir) == "misc" {
    				// cmd/distpack deletes GOROOT/misc, so skip that directory if it isn't present.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 16:30:19 UTC 2024
    - 12.2K bytes
    - Viewed (0)
Back to top