Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 82 for unwrapping (0.32 sec)

  1. src/cmd/compile/internal/inline/interleaved/interleaved.go

    	// removed them all.
    
    	var parens []*ir.ParenExpr
    	var mark func(ir.Node) ir.Node
    	mark = func(n ir.Node) ir.Node {
    		if _, ok := n.(*ir.ParenExpr); ok {
    			return n // already visited n.X before wrapping
    		}
    
    		ok := match(n)
    
    		ir.EditChildren(n, mark)
    
    		if ok {
    			paren := ir.NewParenExpr(n.Pos(), n)
    			paren.SetType(n.Type())
    			paren.SetTypecheck(n.Typecheck())
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:42:52 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. src/os/error.go

    	return ok && terr.Timeout()
    }
    
    func underlyingErrorIs(err, target error) bool {
    	// Note that this function is not errors.Is:
    	// underlyingError only unwraps the specific error-wrapping types
    	// that it historically did, not all errors implementing Unwrap().
    	err = underlyingError(err)
    	if err == target {
    		return true
    	}
    	// To preserve prior behavior, only examine syscall errors.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssagen/abi.go

    	pos := base.AutogeneratedPos
    	base.Pos = pos
    
    	// At the moment we don't support wrapping a method, we'd need machinery
    	// below to handle the receiver. Panic if we see this scenario.
    	ft := f.Nname.Type()
    	if ft.NumRecvs() != 0 {
    		base.ErrorfAt(f.Pos(), 0, "makeABIWrapper support for wrapping methods not implemented")
    		return
    	}
    
    	// Reuse f's types.Sym to create a new ODCLFUNC/function.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  4. src/os/file.go

    var (
    	Stdin  = NewFile(uintptr(syscall.Stdin), "/dev/stdin")
    	Stdout = NewFile(uintptr(syscall.Stdout), "/dev/stdout")
    	Stderr = NewFile(uintptr(syscall.Stderr), "/dev/stderr")
    )
    
    // Flags to OpenFile wrapping those of the underlying system. Not all
    // flags may be implemented on a given system.
    const (
    	// Exactly one of O_RDONLY, O_WRONLY, or O_RDWR must be specified.
    	O_RDONLY int = syscall.O_RDONLY // open the file read-only.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:37 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/session/scope/internal/SessionScope.java

                        + "a org.eclipse.sisu.Typed or javax.enterprise.inject.Typed annotation");
            }
        }
    
        /**
         * A provider wrapping an existing provider with a cache
         * @param <T> the provided type
         */
        protected static class CachingProvider<T> implements Provider<T> {
            private final Provider<T> provider;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/configuration/project/LifecycleProjectEvaluator.java

    import org.gradle.internal.operations.RunnableBuildOperation;
    import org.gradle.util.Path;
    
    import java.io.File;
    
    /**
     * Notifies listeners before and after delegating to the provided delegate to the actual evaluation,
     * wrapping the work in build operations.
     *
     * The build operation structure is:
     *
     * - Evaluate project
     * -- Notify before evaluate
     * -- Notify after evaluate
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/pin_ops_with_side_effects.cc

              }).wasInterrupted()) {
          ops_with_side_effects.push_back(&op);
        }
      }
    
      OpBuilder builder(fn.getContext());
      // The control tokens generated by the last ControlNodeOp wrapping.  Will be
      // empty until the first ControlNodeOp was generated, then have constant size
      // 1.
      llvm::SmallVector<Value, 1> control_tokens;
      for (auto *op : ops_with_side_effects) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7K bytes
    - Viewed (0)
  8. src/log/slog/doc.go

    method handles these cases carefully, avoiding infinite loops and unbounded recursion.
    Handler authors and others may wish to use [Value.Resolve] instead of calling LogValue directly.
    
    # Wrapping output methods
    
    The logger functions use reflection over the call stack to find the file name
    and line number of the logging call within the application. This can produce
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 15 14:35:48 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/classpath/intercept/DefaultCallSiteDecorator.java

        private final Set<String> interceptedCallSiteNames = new HashSet<>();
    
        // There is no information about the type returned by the constructor invocation in the bytecode, so the
        // dynamic dispatch has to happen somewhere. Wrapping the dispatch logic into the CallInterceptor allows
        // to reuse the common MethodHandle decoration routine in maybeDecorateIndyCallSite instead of using a
        // dedicated MethodHandle decorator method just for constructors.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:46:35 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  10. cmd/api-router.go

    			tracedHandler = httpTraceHdrs(f)
    		} else {
    			tracedHandler = httpTraceAll(f)
    		}
    
    		// Skip wrapping with the gzip middleware if specified.
    		var gzippedHandler http.HandlerFunc = tracedHandler
    		if !handlerFlags.has(noGZS3HFlag) {
    			gzippedHandler = gzipHandler(gzippedHandler)
    		}
    
    		// Skip wrapping with throttling middleware if specified.
    		var throttledHandler http.HandlerFunc = gzippedHandler
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 22.8K bytes
    - Viewed (0)
Back to top