Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for unwrapping (0.2 sec)

  1. src/cmd/compile/internal/ssa/rewrite.go

    // of the form: 0..01..10..0 or 1..10..01..1 or 1...1
    func isPPC64WordRotateMask(v64 int64) bool {
    	// Isolate rightmost 1 (if none 0) and add.
    	v := uint32(v64)
    	vp := (v & -v) + v
    	// Likewise, for the wrapping case.
    	vn := ^v
    	vpn := (vn & -vn) + vn
    	return (v&vp == 0 || vn&vpn == 0) && v != 0
    }
    
    // Compress mask and shift into single value of the form
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  2. .bazelrc

    # hope to provide a better mechanism for control over symbol exporting, and
    # then tackle this issue again.
    #
    # TODO: Remove the following two lines once TF doesn't depend on Bazel wrapping
    # all library archives in -whole_archive -no_whole_archive.
    build --noincompatible_remove_legacy_whole_archive
    build --features=-force_no_whole_archive
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/xcoff.go

    // at the very end, especially after relocation sections which needs symbols' index.
    func (f *xcoffFile) asmaixsym(ctxt *Link) {
    	ldr := ctxt.loader
    	// Get correct size for symbols wrapping others symbols like go.string.*
    	// sym.Size can be used directly as the symbols have already been written.
    	for name, size := range outerSymSize {
    		sym := ldr.Lookup(name, 0)
    		if sym == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    _Computes and applies all necessary control dependencies based on side effect analysis._
    
    This pass is intended to run after the split_into_island_per_op
    pass. That pass splits up multi-op islands into multiple individual islands
    wrapping a single op without applying any control deps between the new
    islands. So, this pass is needed in order to make preservation of the
    semantic ordering relationships between ops as determined by side effect
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    		// from it justifies increased memory usage, so for now we drop the cached
    		// serializations after dispatching this event.
    		//
    		// Given that CachingObject is just wrapping the object and not perfoming
    		// deep-copying (until some field is explicitly being modified), we create
    		// it unconditionally to ensure safety and reduce deep-copying.
    		//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  6. src/net/http/fs_test.go

    	// This test exercises a pattern which is incorrect,
    	// but has been observed enough in the world that we don't want to break it.
    	//
    	// The server is setting "Content-Encoding: gzip",
    	// wrapping the ResponseWriter in an implementation which gzips data written to it,
    	// and passing this ResponseWriter to ServeFile.
    	//
    	// This means ServeFile cannot properly set a Content-Length header, because it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  7. src/cmd/dist/test.go

    		// we have to serialize Writes in case the Writer is not concurrent
    		// safe. If we were just passing stdout/stderr through to exec, it would
    		// do this for us, but since we're wrapping stdout, we have to do it
    		// ourselves.
    		if stdout == stderr {
    			stdout = &lockedWriter{w: stdout}
    			stderr = stdout
    		}
    		f := &testJSONFilter{w: stdout, variant: opts.variant}
    		cmd.Stdout = f
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  8. src/runtime/mprof.go

    		alreadyFlushed = (prev & 0x1) != 0
    		next := prev | 0x1
    		if c.value.CompareAndSwap(prev, next) {
    			return cycle, alreadyFlushed
    		}
    	}
    }
    
    // increment increases the cycle count by one, wrapping the value at
    // mProfCycleWrap. It clears the flushed flag.
    func (c *mProfCycleHolder) increment() {
    	// We explicitly wrap mProfCycle rather than depending on
    	// uint wraparound because the memRecord.future ring does not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  9. src/runtime/malloc.go

    	// as the heap is likely fragmented after a reduction in heap size.
    	minHeapForMetadataHugePages = 1 << 30
    )
    
    // physPageSize is the size in bytes of the OS's physical pages.
    // Mapping and unmapping operations must be done at multiples of
    // physPageSize.
    //
    // This must be set by the OS init code (typically in osinit) before
    // mallocinit.
    var physPageSize uintptr
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    In that case it doesn't make much sense for Gradle to also do up-to-date checks.
    You can disable Gradle's up-to-date checks by using the `@link:{javadocPath}/org/gradle/api/tasks/UntrackedTask.html[UntrackedTask]` annotation on the task wrapping the tool.
    Alternatively, you can use the runtime API method `link:{groovyDslPath}/org.gradle.api.Task.html#org.gradle.api.Task:doNotTrackState(java.lang.String)[Task.doNotTrackState()]`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
Back to top