Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 51 for unwrapping (0.16 sec)

  1. src/cmd/compile/internal/ir/func.go

    // outerfn is the enclosing function, if any. The returned function is
    // appending to pkg.Funcs.
    //
    // why is the reason we're generating this Func. It can be OCLOSURE
    // (for a normal function literal) or OGO or ODEFER (for wrapping a
    // call expression that has parameters or results).
    func NewClosureFunc(fpos, cpos src.XPos, why Op, typ *types.Type, outerfn *Func, pkg *Package) *Func {
    	fn := NewFunc(fpos, fpos, closureName(outerfn, cpos, why), typ)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  2. 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)
  3. android/guava-tests/test/com/google/common/util/concurrent/JSR166TestCase.java

        threadFail("should throw " + exceptionName);
      }
    
      /**
       * Records the given exception using {@link #threadRecordFailure}, then rethrows the exception,
       * wrapping it in an AssertionFailedError if necessary.
       */
      public void threadUnexpectedException(Throwable t) {
        threadRecordFailure(t);
        t.printStackTrace();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  4. pkg/volume/util/util.go

    			globalMapPath, string(podUID), mapErr)
    	}
    
    	return nil
    }
    
    // UnmapBlockVolume is a utility function to provide a common way of unmapping
    // block device path for a specified volume and pod.  This function should be
    // called by volume plugins that implements volume.BlockVolumeMapper.Map() method.
    func UnmapBlockVolume(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  5. .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)
  6. 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)
  7. src/os/exec/exec.go

    	// If the command exits with a success status after Cancel is
    	// called, and Cancel does not return an error equivalent to
    	// os.ErrProcessDone, then Wait and similar methods will return a non-nil
    	// error: either an error wrapping the one returned by Cancel,
    	// or the error from the Context.
    	// (If the command exits with a non-success status, or Cancel
    	// returns an error that wraps os.ErrProcessDone, Wait and similar methods
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  8. src/net/netip/netip.go

    // IPv6 addresses.
    func (ip Addr) Is6() bool {
    	return ip.z != z0 && ip.z != z4
    }
    
    // Unmap returns ip with any IPv4-mapped IPv6 address prefix removed.
    //
    // That is, if ip is an IPv6 address wrapping an IPv4 address, it
    // returns the wrapped IPv4 address. Otherwise it returns ip unmodified.
    func (ip Addr) Unmap() Addr {
    	if ip.Is4In6() {
    		ip.z = z4
    	}
    	return ip
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top