Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for exportable (0.13 sec)

  1. src/crypto/sha512/sha512_test.go

    	},
    	{
    		"db05bf4d0f73325208755f4af96cfac6cb3db5dbfc323d675d68f938",
    		"C is as portable as Stonehedge!!",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 03 21:17:08 UTC 2023
    - 105.6K bytes
    - Viewed (0)
  2. src/cmd/go/alldocs.go

    // However, it is still used to store downloaded source code (in GOPATH/pkg/mod)
    // and compiled commands (in GOPATH/bin).
    //
    // # Internal Directories
    //
    // Code in or below a directory named "internal" is importable only
    // by code in the directory tree rooted at the parent of "internal".
    // Here's an extended version of the directory layout above:
    //
    //	/home/user/go/
    //	    src/
    //	        crash/
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  3. src/cmd/go/internal/load/pkg.go

    			return p, perr
    		}
    	}
    
    	if p.Name == "main" && parent != nil && parent.Dir != p.Dir {
    		perr := &PackageError{
    			ImportStack: stk.Copy(),
    			Err:         ImportErrorf(path, "import %q is a program, not an importable package", path),
    		}
    		perr.setPos(importPos)
    		return p, perr
    	}
    
    	if p.Internal.Local && parent != nil && !parent.Internal.Local {
    		var err error
    		if path == "." {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__apiextensions.k8s.io__v1_openapi.json

    address.\n\nPlease note that using `localhost` or `127.0.0.1` as a `host` is risky unless you take great care to run this webhook on all hosts which run an apiserver which might need to make calls to this webhook. Such installs are likely to be non-portable, i.e., not easy to turn up in a new cluster.\n\nThe scheme must be \"https\"; the URL must begin with \"https://\".\n\nA path is optional, and if present may be any string permissible in a URL. You may use the path to pass an arbitrary string to...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 178.6K bytes
    - Viewed (0)
  5. doc/go1.17_spec.html

    provides facilities for low-level programming including operations
    that violate the type system. A package using <code>unsafe</code>
    must be vetted manually for type safety and may not be portable.
    The package provides the following interface:
    </p>
    
    <pre class="grammar">
    package unsafe
    
    type ArbitraryType int  // shorthand for an arbitrary Go type; it is not a real type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
Back to top