Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 39 for exportable (0.23 sec)

  1. src/cmd/go/internal/modload/import.go

    	}
    	if filepath.IsAbs(path) {
    		return invalidf("%q is not a package path; see 'go help packages'", path)
    	}
    	if search.IsMetaPackage(path) {
    		return invalidf("%q is not an importable package; see 'go help packages'", path)
    	}
    
    	if path == "C" {
    		// There's no directory for import "C".
    		return module.Version{}, "", "", nil, nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  2. src/net/net.go

    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    /*
    Package net provides a portable interface for network I/O, including
    TCP/IP, UDP, domain name resolution, and Unix domain sockets.
    
    Although the package provides access to low-level networking
    primitives, most clients will need only the basic interface provided
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/types.go

    	// 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.
    	//
    	// The scheme must be "https"; the URL must begin with "https://".
    	//
    	// A path is optional, and if present may be any string permissible in
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/load.go

    	}
    	return pkg, nil
    }
    
    var (
    	errDirectoryNotFound = errors.New("directory not found")
    	errPkgIsGorootSrc    = errors.New("GOROOT/src is not an importable package")
    	errPkgIsBuiltin      = errors.New(`"builtin" is a pseudo-package, not an importable package`)
    )
    
    // pathInModuleCache returns the import path of the directory dir,
    // if dir is in the module cache copy of a module in our build list.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      // 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.
      //
      // The scheme must be "https"; the URL must begin with "https://".
      //
      // A path is optional, and if present may be any string permissible in
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  6. src/runtime/mprof.go

    	}
    }
    
    func (prof *mLockProfile) store() {
    	// Report any contention we experience within this function as "lost"; it's
    	// important that the act of reporting a contention event not lead to a
    	// reportable contention event. This also means we can use prof.stack
    	// without copying, since it won't change during this function.
    	mp := acquirem()
    	prof.disabled = true
    
    	nstk := int(debug.profstackdepth)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// 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.
    	//
    	// The scheme must be "https"; the URL must begin with "https://".
    	//
    	// A path is optional, and if present may be any string permissible in
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. docs/en/docs/release-notes.md

        * It also detects if the correct package `python-multipart` is installed instead of the incorrect `multipart` (both importable as `multipart`).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
Back to top