Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 87 for content_es (0.12 sec)

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

    Similarly, the IgnoredFiles field provides the names of Go and non-Go
    source files that are not part of this package with the current build
    configuration but may be part of other build configurations.
    The contents of these files may be read using Pass.ReadFile;
    see the "asmdecl" or "buildtags" analyzers for examples of loading
    non-Go files and reporting diagnostics against them.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. src/runtime/string.go

    	return s[:n]
    }
    
    // rawstring allocates storage for a new string. The returned
    // string and byte slice both refer to the same storage.
    // The storage is not zeroed. Callers should use
    // b to set the string contents and then drop b.
    func rawstring(size int) (s string, b []byte) {
    	p := mallocgc(uintptr(size), nil, false)
    	return unsafe.String((*byte)(p), size), unsafe.Slice((*byte)(p), size)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  3. src/crypto/tls/auth.go

    	"crypto/ecdsa"
    	"crypto/ed25519"
    	"crypto/elliptic"
    	"crypto/rsa"
    	"errors"
    	"fmt"
    	"hash"
    	"io"
    )
    
    // verifyHandshakeSignature verifies a signature against pre-hashed
    // (if required) handshake contents.
    func verifyHandshakeSignature(sigType uint8, pubkey crypto.PublicKey, hashFunc crypto.Hash, signed, sig []byte) error {
    	switch sigType {
    	case signatureECDSA:
    		pubKey, ok := pubkey.(*ecdsa.PublicKey)
    		if !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:45:37 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. src/go/types/eval_test.go

    	}
    	fset := token.NewFileSet()
    	for _, test := range tests {
    		testEval(t, fset, nil, nopos, test, Typ[UntypedBool], "", "true")
    	}
    }
    
    func TestEvalPos(t *testing.T) {
    	testenv.MustHaveGoBuild(t)
    
    	// The contents of /*-style comments are of the form
    	//	expr => value, type
    	// where value may be the empty string.
    	// Each expr is evaluated at the position of the comment
    	// and the result is compared with the expected value
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 19:56:15 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  5. src/archive/tar/writer.go

    	}
    	if _, tw.err = tw.w.Write(zeroBlock[:tw.pad]); tw.err != nil {
    		return tw.err
    	}
    	tw.pad = 0
    	return nil
    }
    
    // WriteHeader writes hdr and prepares to accept the file's contents.
    // The Header.Size determines how many bytes can be written for the next file.
    // If the current file is not fully written, then this returns an error.
    // This implicitly flushes any padding necessary before writing the header.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/init.go

    			rs = overrideRoots(ctx, rs, []module.Version{{Path: "go", Version: v}})
    
    			// We need to add a 'go' version to the go.mod file, but we must assume
    			// that its existing contents match something between Go 1.11 and 1.16.
    			// Go 1.11 through 1.16 do not support graph pruning, but the latest Go
    			// version uses a pruned module graph — so we need to convert the
    			// requirements to support pruning.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  7. src/cmd/link/link_test.go

    		t.Errorf("linking with -strictdups=2 did not fail")
    	}
    	// NB: on amd64 we get the 'new length' error, on arm64 the 'different
    	// contents' error.
    	if !(bytes.Contains(out, []byte("mismatched payload: new length")) ||
    		bytes.Contains(out, []byte("mismatched payload: same length but different contents"))) ||
    		!bytes.Contains(out, []byte("mismatched payload: different sizes")) {
    		t.Errorf("unexpected output:\n%s", out)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:02 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/analysis/analysis.go

    	// The map keys are the elements of Analysis.Required,
    	// and the type of each corresponding value is the required
    	// analysis's ResultType.
    	ResultOf map[*Analyzer]interface{}
    
    	// ReadFile returns the contents of the named file.
    	//
    	// The only valid file names are the elements of OtherFiles
    	// and IgnoredFiles, and names returned by
    	// Fset.File(f.FileStart).Name() for each f in Files.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  9. src/go/types/infer.go

    // function arguments args, if any. There must be at least one type parameter, no more type arguments
    // than type parameters, and params and args must match in number (incl. zero).
    // If reverse is set, an error message's contents are reversed for a better error message for some
    // errors related to reverse type inference (where the function call is synthetic).
    // If successful, infer returns the complete list of given and inferred type arguments, one for each
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  10. src/crypto/internal/bigmod/nat.go

    	if leading < m.leading {
    		return nil, errors.New("input overflows the modulus size")
    	}
    	x.maybeSubtractModulus(no, m)
    	return x, nil
    }
    
    // bigEndianUint returns the contents of buf interpreted as a
    // big-endian encoded uint value.
    func bigEndianUint(buf []byte) uint {
    	if _W == 64 {
    		return uint(byteorder.BeUint64(buf))
    	}
    	return uint(byteorder.BeUint32(buf))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 24K bytes
    - Viewed (0)
Back to top