Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 973 for JOIN (0.05 sec)

  1. src/cmd/go/internal/cfg/cfg.go

    	BuildContext.GOROOT = goroot
    
    	GOROOT = goroot
    	if goroot == "" {
    		GOROOTbin = ""
    		GOROOTpkg = ""
    		GOROOTsrc = ""
    	} else {
    		GOROOTbin = filepath.Join(goroot, "bin")
    		GOROOTpkg = filepath.Join(goroot, "pkg")
    		GOROOTsrc = filepath.Join(goroot, "src")
    	}
    
    	installedGOOS = runtime.GOOS
    	installedGOARCH = runtime.GOARCH
    	if isTestGo {
    		if testOS := os.Getenv("TESTGO_GOHOSTOS"); testOS != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  2. pkg/kubelet/kubeletconfig/util/files/files_test.go

    		// allocate dirs
    		for _, f := range c.expects {
    			if f.mode.IsDir() {
    				path := filepath.Join(dir, f.name)
    				if _, ok := dirs[path]; !ok {
    					dirs[path] = map[string]string{}
    				}
    			} else if f.mode.IsRegular() {
    				path := filepath.Join(dir, filepath.Dir(f.name))
    				if _, ok := dirs[path]; !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 07 11:36:13 UTC 2022
    - 11.7K bytes
    - Viewed (0)
  3. operator/cmd/mesh/manifest-generate_test.go

    	tmpDir := t.TempDir()
    	tmpCharts := chartSourceType(filepath.Join(tmpDir, operatorSubdirFilePath))
    	err := copyDir(string(liveCharts), string(tmpCharts))
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	rs, err := readFile(filepath.Join(testDataDir, "input-extra-resources", testResourceFile+".yaml"))
    	if err != nil {
    		t.Fatal(err)
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/test/groovy/org/gradle/util/internal/CollectionUtilsTest.groovy

        def "joining"() {
            expect:
            join(",", [1, 2, 3]) == "1,2,3"
            join(",", [1]) == "1"
            join(",", []) == ""
    
            and:
            join(",", [1, 2, 3].toArray()) == "1,2,3"
            join(",", [1].toArray()) == "1"
            join(",", [].toArray()) == ""
        }
    
        def "joining with nulls"() {
            when:
            join(separator, objects)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  5. pilot/pkg/xds/sds_test.go

    		credentials.GenericScrtKey:    readFile(filepath.Join(certDir, "dns/key.pem")),
    		credentials.GenericScrtCaCert: readFile(filepath.Join(certDir, "dns/root-cert.pem")),
    	})
    	genericMtlsCertCrl = makeSecret("generic-mtls-crl", map[string]string{
    		credentials.GenericScrtCert:   readFile(filepath.Join(certDir, "dns/cert-chain.pem")),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  6. tests/integration/pilot/istioctl_test.go

    			jsonOutput := jsonUnmarshallOrFail(t, strings.Join(args, " "), output)
    			g.Expect(jsonOutput).To(HaveKey("bootstrap"))
    
    			args = []string{
    				"--namespace=dummy",
    				"pc", "cluster", fmt.Sprintf("%s.%s", podID, apps.Namespace.Name()), "-o", "json",
    			}
    			output, _ = istioCtl.InvokeOrFail(t, args)
    			jsonOutput = jsonUnmarshallOrFail(t, strings.Join(args, " "), output)
    			g.Expect(jsonOutput).To(Not(BeEmpty()))
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 15K bytes
    - Viewed (0)
  7. src/go/types/stdlib_test.go

    		// cmd/distpack also requires GOROOT/VERSION to exist, so use that to
    		// suppress false-positive skips.
    		if _, err := os.Stat(filepath.Join(testenv.GOROOT(t), "test")); os.IsNotExist(err) {
    			if _, err := os.Stat(filepath.Join(testenv.GOROOT(t), "VERSION")); err == nil {
    				t.Skipf("skipping: GOROOT/test not present")
    			}
    		}
    		t.Fatal(err)
    	}
    
    	excluded := make(map[string]bool)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 19 04:39:56 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/util/concurrent/AbstractExecutionThreadServiceTest.java

        service.stopAsync().awaitTerminated();
        assertTrue(service.shutDownCalled);
        assertEquals(Service.State.TERMINATED, service.state());
        executionThread.join();
      }
    
      public void testServiceStopIdempotence() throws Exception {
        WaitOnRunService service = new WaitOnRunService();
    
        service.startAsync().awaitRunning();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  9. src/cmd/internal/moddeps/moddeps_test.go

    			return err
    		}
    		if info.IsDir() && src == filepath.Join(testenv.GOROOT(t), ".git") {
    			return filepath.SkipDir
    		}
    
    		rel, err := filepath.Rel(testenv.GOROOT(t), src)
    		if err != nil {
    			return fmt.Errorf("filepath.Rel(%q, %q): %v", testenv.GOROOT(t), src, err)
    		}
    		dst := filepath.Join(gorootCopyDir, rel)
    
    		if info.IsDir() && (src == filepath.Join(testenv.GOROOT(t), "bin") ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  10. istioctl/pkg/writer/envoy/configdump/listener.go

    				if includeConfigType {
    					name := fmt.Sprintf("listener/%s", l.Name)
    					fmt.Fprintf(w, "%v\t%v\t%v\t%v\t%v\n", name, strings.Join(addresses, ","), port, match.match, match.destination)
    				} else {
    					fmt.Fprintf(w, "%v\t%v\t%v\t%v\n", strings.Join(addresses, ","), port, match.match, match.destination)
    				}
    			}
    		} else {
    			listenerType := retrieveListenerType(l)
    			if includeConfigType {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 29 12:37:14 UTC 2023
    - 18.1K bytes
    - Viewed (0)
Back to top