Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 72 for putrefy (0.15 sec)

  1. src/cmd/cover/cover.go

    		//
    		// Note that in the current implementation (Go 1.20) both
    		// routines are assembly stubs that forward calls to the
    		// internal/runtime/atomic equivalents, hence the infinite
    		// loop scenario is purely theoretical (maybe if in some
    		// future implementation one of these functions might be
    		// written in Go). See #57445 for more details.
    		if atomicOnAtomic() && (fname == "AddUint32" || fname == "StoreUint32") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

    // 1) Any resource loads after a store to that same resource is done
    // 2) Any resource stores except the last one.
    // TODO(ycao): Store-load forwarding implemented here is only correct when
    // computation is purely sequential (no concurrency). Need to support concurrent
    // computation as well.
    void ForwardStoreToLoad(Block* block) {
      // resource_handle_to_last_store_op keeps track of the most recent (last)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  3. src/regexp/regexp.go

    // [Regexp.FindSubmatchIndex].
    //
    // In the template, a variable is denoted by a substring of the form
    // $name or ${name}, where name is a non-empty sequence of letters,
    // digits, and underscores. A purely numeric name like $1 refers to
    // the submatch with the corresponding index; other names refer to
    // capturing parentheses named with the (?P<name>...) syntax. A
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:50:01 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  4. src/image/image.go

    // format's package so that, to decode a PNG image, it suffices to have
    //
    //	import _ "image/png"
    //
    // in a program's main package. The _ means to import a package purely for its
    // initialization side effects.
    //
    // See "The Go image package" for more details:
    // https://golang.org/doc/articles/image_package.html
    //
    // # Security Considerations
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 34.9K bytes
    - Viewed (0)
  5. src/path/filepath/path_test.go

    	{"/a/b/c/d", "/a/b/", "../.."},
    	{"/a/b/c/d/", "/a/b", "../.."},
    	{"/a/b/c/d/", "/a/b/", "../.."},
    	{"/../../a/b", "/../../a/b/c/d", "c/d"},
    	{".", "a/b", "a/b"},
    	{".", "..", ".."},
    
    	// can't do purely lexically
    	{"..", ".", "err"},
    	{"..", "a", "err"},
    	{"../..", "..", "err"},
    	{"a", "/a", "err"},
    	{"/a", "a", "err"},
    }
    
    var winreltests = []RelTests{
    	{`C:a\b\c`, `C:a/b/d`, `..\d`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:38:19 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

    // 1) `is_stateless` is true turns off automatic ordering and we purely rely on
    //    instance_key to distinguish collective groups. In this case, ordering
    //    tokens are irrelevant. Each collective group should have a unique
    //    instance_key at runtime.
    // 2) If at least one ordering token is present, then we purely rely on ordering
    //    tokens for side effect modeling and ignore the op-based effect
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  7. src/runtime/mgcmark.go

    	work.baseStacks = work.baseSpans + uint32(work.nSpanRoots)
    	work.baseEnd = work.baseStacks + uint32(work.nStackRoots)
    }
    
    // gcMarkRootCheck checks that all roots have been scanned. It is
    // purely for debugging.
    func gcMarkRootCheck() {
    	if work.markrootNext < work.markrootJobs {
    		print(work.markrootNext, " of ", work.markrootJobs, " markroot jobs done\n")
    		throw("left over markroot jobs")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    # the second iteration of a parameterized test
    gradle test --tests '*ParameterizedTest.*[2]'
    ```
    
    Note that the wildcard '*' has no special understanding of the '.' package separator. It's purely text based. So `--tests *.SomeTestClass` will match any package, regardless of its 'depth'.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/buildlist.go

    				return rs, errGoModDirty
    			}
    		}
    
    		// No explicit roots are missing and all roots are already at the versions
    		// we want to keep. Any other changes we would make are purely cosmetic,
    		// such as pruning redundant indirect dependencies. Per issue #34822, we
    		// ignore cosmetic changes when we cannot update the go.mod file.
    		return rs, nil
    	}
    
    	var (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/encapsulate_subgraphs_pass_test.cc

      TF_EXPECT_FUNCTIONDEFLIBRARY_EQ(library_expected, library);
    }
    
    // Test with two functions to transform, each with one outside_compilation
    // cluster, with the dependency between them purely from an outside_compilation
    // edge.
    TEST(EncapsulateSubgraphsTest, TwoFunctionsTwoOutsideDependencyFromOutside) {
      FunctionDefLibrary library;
      GraphDef graphdef;
    
      {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
Back to top