Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 105 for package_a (0.14 sec)

  1. src/cmd/cgo/gcc.go

    	}
    	return args, err
    }
    
    // Translate rewrites f.AST, the original Go input, to remove
    // references to the imported package C, replacing them with
    // references to the equivalent Go types, functions, and variables.
    func (p *Package) Translate(f *File) {
    	for _, cref := range f.Ref {
    		// Convert C.ulong to C.unsigned long, etc.
    		cref.Name.C = cname(cref.Name.Go)
    	}
    
    	var conv typeConv
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  2. src/runtime/mprof.go

    // collector performs sweeping, the profile only accounts for allocations
    // that have had a chance to be freed by the garbage collector.
    //
    // Most clients should use the runtime/pprof package or
    // the testing package's -test.memprofile flag instead
    // of calling MemProfile directly.
    func MemProfile(p []MemProfileRecord, inuseZero bool) (n int, ok bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  3. src/time/time.go

    func (t Time) Clock() (hour, min, sec int) {
    	return absClock(t.abs())
    }
    
    // absClock is like clock but operates on an absolute time.
    //
    // absClock should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/phuslu/log
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname absClock
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  4. src/crypto/tls/common.go

    	// Deprecated: SSLv3 is cryptographically broken, and is no longer
    	// supported by this package. See golang.org/issue/32716.
    	VersionSSL30 = 0x0300
    )
    
    // VersionName returns the name for the provided TLS version number
    // (e.g. "TLS 1.3"), or a fallback representation of the value if the
    // version is not implemented by this package.
    func VersionName(version uint16) string {
    	switch version {
    	case VersionSSL30:
    		return "SSLv3"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

        /** The symbol is available from the local scope and hence cannot be imported or overwritten. */
        LOCAL,
    
        /** Explicitly imported by user. */
        EXPLICIT,
    
        /** Implicitly imported from package. */
        PACKAGE,
    
        /** Explicitly imported by Kotlin default. For example, `kotlin.String`. */
        DEFAULT_EXPLICIT,
    
        /** Star imported (star import) by user. */
        STAR,
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  6. src/crypto/x509/x509.go

    // profiles, as the primary goal of the package is to provide compatibility
    // with the publicly trusted TLS certificate ecosystem and its policies and
    // constraints.
    //
    // On macOS and Windows, certificate verification is handled by system APIs, but
    // the package aims to apply consistent validation rules across operating
    // systems.
    package x509
    
    import (
    	"bytes"
    	"crypto"
    	"crypto/ecdh"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/BUILD

    load("//tensorflow/core/platform:rules_cc.bzl", "cc_library")
    
    package(
        # copybara:uncomment default_applicable_licenses = ["//tensorflow:LICENSE"],
        default_visibility = ["//visibility:public"],
        licenses = ["notice"],
    )
    
    package_group(
        name = "friends",
        packages = [
            "//learning/brain/experimental/mlir/tflite/tfmrt/...",
            "//learning/brain/mlir/...",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/BUILD

    )
    
    package_group(
        name = "internal",
        includes = [
            "//tensorflow/compiler/tf2xla:internal",
        ],
        packages = [
            "//tensorflow/c/...",
            "//tensorflow/compiler/tests/...",
            "//tensorflow/core/tfrt/saved_model/...",
            "//tensorflow/python/...",
        ],
    )
    
    package_group(
        name = "friends",
        includes = [
            "//tensorflow/compiler/tf2xla:friends",
        ],
    )
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 61.5K bytes
    - Viewed (0)
  9. src/net/http/transport.go

    // and call ConfigureTransport. See the package docs for more about HTTP/2.
    //
    // Responses with status codes in the 1xx range are either handled
    // automatically (100 expect-continue) or ignored. The one
    // exception is HTTP status code 101 (Switching Protocols), which is
    // considered a terminal status and returned by [Transport.RoundTrip]. To see the
    // ignored 1xx responses, use the httptrace trace package's
    // ClientTrace.Got1xxResponse.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/syntax/parser.go

    	f.pos = p.pos()
    
    	// PackageClause
    	f.GoVersion = p.goVersion
    	p.top = false
    	if !p.got(_Package) {
    		p.syntaxError("package statement must be first")
    		return nil
    	}
    	f.Pragma = p.takePragma()
    	f.PkgName = p.name()
    	p.want(_Semi)
    
    	// don't bother continuing if package clause has errors
    	if p.first != nil {
    		return nil
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
Back to top