Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 155 for below (0.05 sec)

  1. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

      EXPECT_NE(clusters["test/read"], "");
      EXPECT_EQ(clusters["test/read"], clusters["test/reshape"]);
    }
    
    TEST(XlaCompilationTest, DontClusterMergingNodes) {
      // MatMulCombined below takes data from nodes on GPU0 and GPU1 and is placed
      // on GPU1. However, it should not be clustered with the previous node on
      // GPU1, because that will serialize production of its inputs that should be
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    [NOTE]
    ====
    If you are using Eclipse: By default, Eclipse also runs unit tests as modules using module patching (see <<#sec:java_testing_modular_patching,below>>).
    In an imported Gradle project, unit testing a module with the Eclipse test runner might fail.
    You then need to manually adjust the classpath/module path in the test run configuration or delegate test execution to Gradle.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbFile.java

     * a common base. This is slightly different from the corresponding
     * <code>java.io.File</code> usage; a '/' at the beginning of the second
     * parameter will still use the server component of the first parameter. The
     * examples below illustrate the resulting URLs when this second constructor
     * argument is used.
     *
     * <p>
     * <table border="1" cellpadding="3" cellspacing="0" width="100%" summary="Usage examples">
     * <tr bgcolor="#ccccff">
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  4. src/runtime/traceback.go

    		// The starting sp has been passed in as a uintptr, and the caller may
    		// have other uintptr-typed stack references as well.
    		// If during one of the calls that got us here or during one of the
    		// callbacks below the stack must be grown, all these uintptr references
    		// to the stack will not be updated, and traceback will continue
    		// to inspect the old stack memory, which may no longer be valid.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/debug.go

    	// One blockDebug per block. Initialized in allocBlock.
    	if cap(state.blockDebug) < f.NumBlocks() {
    		state.blockDebug = make([]BlockDebug, f.NumBlocks())
    	} else {
    		// This local variable, and the ones like it below, enable compiler
    		// optimizations. Don't inline them.
    		b := state.blockDebug[:f.NumBlocks()]
    		for i := range b {
    			b[i] = BlockDebug{}
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  6. cmd/object-api-multipart_test.go

    		inputDataSize   int64
    		expectedMd5     string
    	}{
    		// Case 1-4.
    		// Creating sequence of parts for same uploadID.
    		// Used to ensure that the ListMultipartResult produces one output for the four parts uploaded below for the given upload ID.
    		{bucketNames[0], objectNames[0], uploadIDs[0], 1, "abcd", "e2fc714c4727ee9395f324cd2e7f331f", int64(len("abcd")), "e2fc714c4727ee9395f324cd2e7f331f"},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 77.1K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/load.go

    				// rather than the main module's direct dependencies. The check below on the selected
    				// roots does not apply.
    				if cfg.BuildMod == "vendor" {
    					// In workspace vendor mode, we don't need to load the requirements of the workspace
    					// modules' dependencies so the check below doesn't work. But that's okay, because
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  8. src/cmd/go/go_test.go

    // external network in parallel. If non-nil, it contains one buffer slot per
    // test (send to acquire), with a low enough limit that the overall number of
    // connections (summed across subprocesses) stays at or below base.NetLimit.
    var netTestSem chan struct{}
    
    var exeSuffix string = func() string {
    	if runtime.GOOS == "windows" {
    		return ".exe"
    	}
    	return ""
    }()
    
    func tooSlow(t *testing.T, reason string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  9. src/cmd/cgo/out.go

    		for _, arg := range p.LdFlags {
    			fmt.Fprintf(fflg, "_CGO_LDFLAGS=%s\n", arg)
    		}
    		fflg.Close()
    	}
    
    	// Write C main file for using gcc to resolve imports.
    	fmt.Fprintf(fm, "#include <stddef.h>\n") // For size_t below.
    	fmt.Fprintf(fm, "int main() { return 0; }\n")
    	if *importRuntimeCgo {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  10. src/go/build/build.go

    	// If IsDir is nil, Import calls os.Stat and uses the result's IsDir method.
    	IsDir func(path string) bool
    
    	// HasSubdir reports whether dir is lexically a subdirectory of
    	// root, perhaps multiple levels below. It does not try to check
    	// whether dir exists.
    	// If so, HasSubdir sets rel to a slash-separated path that
    	// can be joined to root to produce a path equivalent to dir.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
Back to top