Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 67 for unwrapping (0.23 sec)

  1. src/go/doc/comment/wrap_test.go

    // It is OK if wrap returns a different sequence as long as that
    // sequence has the same score.
    func wrapSlow(words []string, max int) (seq []int, score int64) {
    	// Quadratic dynamic programming algorithm for line wrapping problem.
    	// best[i] tracks the best score possible for words[:i],
    	// assuming that for i < len(words) the line breaks after those words.
    	// bestleft[i] tracks the previous line break for best[i].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:45 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  2. src/go/format/format.go

    // or [ast.Stmt]. Node does not modify node. Imports are not sorted for
    // nodes representing partial source files (for instance, if the node is
    // not an *[ast.File] or a *[printer.CommentedNode] not wrapping an *[ast.File]).
    //
    // The function may return early (before the entire result is written)
    // and return a formatting error, for instance due to an incorrect AST.
    func Node(dst io.Writer, fset *token.FileSet, node any) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  3. src/net/http/transport_internal_test.go

    package http
    
    import (
    	"bytes"
    	"context"
    	"crypto/tls"
    	"errors"
    	"io"
    	"net"
    	"net/http/internal/testcert"
    	"strings"
    	"testing"
    )
    
    // Issue 15446: incorrect wrapping of errors when server closes an idle connection.
    func TestTransportPersistConnReadLoopEOF(t *testing.T) {
    	ln := newLocalListener(t)
    	defer ln.Close()
    
    	connc := make(chan net.Conn, 1)
    	go func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 15:57:17 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/labels/labels.go

    // perform any validation.
    // According to our measurements this is significantly faster
    // in codepaths that matter at high scale.
    // Note: this method copies the Set; if the Set is immutable, consider wrapping it with ValidatedSetSelector
    // instead, which does not copy.
    func (ls Set) AsSelectorPreValidated() Selector {
    	return SelectorFromValidatedSet(ls)
    }
    
    // FormatLabels converts label map into plain string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 14 16:39:04 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  5. 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)
  6. android/guava-tests/test/com/google/common/io/CharSequenceReaderTest.java

        assertThrows(IOException.class, () -> reader.mark(10));
    
        assertThrows(IOException.class, () -> reader.reset());
      }
    
      /**
       * Creates a CharSequenceReader wrapping the given CharSequence and tests that the reader produces
       * the same sequence when read using each type of read method it provides.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. src/crypto/x509/pkcs8.go

    			return nil, fmt.Errorf("x509: invalid X25519 private key: %v", err)
    		}
    		return ecdh.X25519().NewPrivateKey(curvePrivateKey)
    
    	default:
    		return nil, fmt.Errorf("x509: PKCS#8 wrapping contained private key with unknown algorithm: %v", privKey.Algo.Algorithm)
    	}
    }
    
    // MarshalPKCS8PrivateKey converts a private key to PKCS #8, ASN.1 DER form.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/walk/closure.go

    	// ensures it's compiled.
    	ir.CurFunc.Closures = append(ir.CurFunc.Closures, clofn)
    }
    
    func walkClosure(clo *ir.ClosureExpr, init *ir.Nodes) ir.Node {
    	clofn := clo.Func
    
    	// If no closure vars, don't bother wrapping.
    	if ir.IsTrivialClosure(clo) {
    		if base.Debug.Closure > 0 {
    			base.WarnfAt(clo.Pos(), "closure converted to global")
    		}
    		return clofn.Nname
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 15:56:08 UTC 2023
    - 6.5K bytes
    - Viewed (0)
Back to top