Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 82 for unwrapping (0.14 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/printf/printf.go

    			return
    		}
    		if state.hasIndex {
    			anyIndex = true
    		}
    		if state.verb == 'w' {
    			switch kind {
    			case KindNone, KindPrint, KindPrintf:
    				pass.Reportf(call.Pos(), "%s does not support error-wrapping directive %%w", state.name)
    				return
    			}
    		}
    		if len(state.argNums) > 0 {
    			// Continue with the next sequential argument.
    			argNum = state.argNums[len(state.argNums)-1] + 1
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

       *       ClosingFuture} call {@link #from(ListenableFuture)}.
       *   <li>In case this step doesn't create new closeables, you can adapt an API that returns a
       *       {@link ListenableFuture} to return a {@code ClosingFuture} by wrapping it with a call to
       *       {@link #withoutCloser(AsyncFunction)}
       * </ul>
       *
       * <p>Example usage:
       *
       * <pre>{@code
       * // Result.getRowsClosingFuture() returns a ClosingFuture.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  3. guava/src/com/google/common/util/concurrent/ClosingFuture.java

       *       ClosingFuture} call {@link #from(ListenableFuture)}.
       *   <li>In case this step doesn't create new closeables, you can adapt an API that returns a
       *       {@link ListenableFuture} to return a {@code ClosingFuture} by wrapping it with a call to
       *       {@link #withoutCloser(AsyncFunction)}
       * </ul>
       *
       * <p>Example usage:
       *
       * <pre>{@code
       * // Result.getRowsClosingFuture() returns a ClosingFuture.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 98.7K bytes
    - Viewed (0)
  4. .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)
  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/cmd/go/internal/vcs/vcs.go

    	}
    	return err
    }
    
    func (e *importError) Error() string {
    	return e.err.Error()
    }
    
    func (e *importError) Unwrap() error {
    	// Don't return e.err directly, since we're only wrapping an error if %w
    	// was passed to ImportErrorf.
    	return errors.Unwrap(e.err)
    }
    
    func (e *importError) ImportPath() string {
    	return e.importPath
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 46.2K 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