Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,016 for JOIN (1.78 sec)

  1. istioctl/pkg/workload/workload_test.go

    			"ingressIP":  "fd00:10:96::2",
    		},
    	}
    	for _, dir := range files {
    		if !dir.IsDir() {
    			continue
    		}
    		testdir := path.Join("testdata/vmconfig", dir.Name())
    		t.Cleanup(func() {
    			for k := range generated {
    				os.Remove(path.Join(testdir, k))
    			}
    		})
    		t.Run(dir.Name(), func(t *testing.T) {
    			createClientFunc := func(client kube.CLIClient) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  2. tensorflow/c/eager/parallel_device/parallel_device_lib.cc

      tensorflow::condition_variable finished_execute_;
      // Notifies a StartExecute that the previous Join has finished.
      tensorflow::condition_variable finished_join_;
    
      // Temporary state between `StartExecute` and `Join`.
      //
      //   Inputs; pointers are to objects not owned by the DeviceThread, but which
      //   are expected to live at least until `Join` finishes:
      TFE_Context* context_ TF_GUARDED_BY(execution_mutex_);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 07:47:20 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  3. 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)
  4. pkg/volume/fc/fc_util.go

    func makePDNameInternal(host volume.VolumeHost, wwns []string, lun string, wwids []string) string {
    	if len(wwns) != 0 {
    		w := strings.Join(wwns, "-")
    		return filepath.Join(host.GetPluginDir(fcPluginName), w+"-lun-"+lun)
    	}
    	return filepath.Join(host.GetPluginDir(fcPluginName), strings.Join(wwids, "-"))
    }
    
    // make a directory like /var/lib/kubelet/plugins/kubernetes.io/fc/volumeDevices/target-lun-0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 11:12:06 UTC 2022
    - 12.8K bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/testsanitizers/cc_test.go

    	cmd := exec.Command("go", subcommand)
    	cmd.Args = append(cmd.Args, c.goFlags...)
    	cmd.Args = append(cmd.Args, args...)
    	replaceEnv(cmd, "CGO_CFLAGS", strings.Join(c.cFlags, " "))
    	replaceEnv(cmd, "CGO_LDFLAGS", strings.Join(c.ldFlags, " "))
    	appendExperimentEnv(cmd, experiments)
    	return cmd
    }
    
    // skipIfCSanitizerBroken skips t if the C compiler does not produce working
    // binaries as configured.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 09 20:00:56 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/elf_test.go

    	dir := t.TempDir()
    
    	const prog = `
    package main
    
    import "net"
    
    func main() {
    	net.Dial("", "")
    }
    `
    	src := filepath.Join(dir, "issue33358.go")
    	if err := os.WriteFile(src, []byte(prog), 0666); err != nil {
    		t.Fatal(err)
    	}
    
    	binFile := filepath.Join(dir, "issue33358")
    	cmd := testenv.Command(t, testenv.GoToolPath(t), "build", "-o", binFile, src)
    	if out, err := cmd.CombinedOutput(); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 13:44:07 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  7. src/internal/coverage/cfile/emitdata_test.go

    	// with -covermode=atomic and one built non-atomic.
    	bdir1 := mkdir(t, filepath.Join(dir, "build1"))
    	hargs1 := []string{"-covermode=atomic", "-coverpkg=all"}
    	atomicHarnessPath := buildHarness(t, bdir1, hargs1)
    	nonAtomicMode := testing.CoverMode()
    	if testing.CoverMode() == "atomic" {
    		nonAtomicMode = "set"
    	}
    	bdir2 := mkdir(t, filepath.Join(dir, "build2"))
    	hargs2 := []string{"-coverpkg=all", "-covermode=" + nonAtomicMode}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  8. src/net/http/fcgi/fcgi_test.go

    	contentLengthB0 := byte(contentLength)
    	return bytes.Join([][]byte{
    		{1, byte(recordType), requestIdB1, requestIdB0, contentLengthB1,
    			contentLengthB0, 0, 0},
    		contentData,
    	},
    		nil)
    }
    
    // a series of FastCGI records that start a request and begin sending the
    // request body
    var streamBeginTypeStdin = bytes.Join([][]byte{
    	// set up request 1
    	makeRecord(typeBeginRequest, 1,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 11 18:51:39 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  9. tests/integration/helm/util.go

    		}
    	} else {
    		baseChartPath = filepath.Join(ManifestsChartPath, BaseChart)
    		discoveryChartPath = filepath.Join(ManifestsChartPath, ControlChartsDir, DiscoveryChartsDir)
    		gatewayChartPath = filepath.Join(ManifestsChartPath, version, GatewayChartsDir)
    		cniChartPath = filepath.Join(ManifestsChartPath, version, CniChartsDir)
    		ztunnelChartPath = filepath.Join(ManifestsChartPath, version, ZtunnelChartsDir)
    
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  10. src/runtime/runtime-gdb_test.go

    	start := time.Now()
    	args := []string{"-nx", "-batch",
    		"-iex", "add-auto-load-safe-path " + filepath.Join(testenv.GOROOT(t), "src", "runtime"),
    		"-ex", "set startup-with-shell off",
    		"-ex", "break main.eee",
    		"-ex", "run",
    		"-ex", "backtrace",
    		"-ex", "continue",
    		filepath.Join(dir, "a.exe"),
    	}
    	gdbArgsFixup(args)
    	cmd = testenv.Command(t, "gdb", args...)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 23.2K bytes
    - Viewed (0)
Back to top