Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 572 for ximports (0.18 sec)

  1. src/cmd/go/internal/load/test.go

    			pmain.Internal.Imports = append(pmain.Internal.Imports, ptest)
    			pmain.Imports = append(pmain.Imports, ptest.ImportPath)
    			t.ImportTest = true
    		}
    		if pxtest != nil {
    			pmain.Internal.Imports = append(pmain.Internal.Imports, pxtest)
    			pmain.Imports = append(pmain.Imports, pxtest.ImportPath)
    			t.ImportXtest = true
    		}
    
    		// Sort and dedup pmain.Imports.
    		// Only matters for go list -test output.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 14:01:23 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/ast/astutil/imports.go

    					fset.File(gen.Rparen).MergeLine(line)
    				}
    			}
    			j--
    		}
    	}
    
    	// Delete imports from f.Imports.
    	for i := 0; i < len(f.Imports); i++ {
    		imp := f.Imports[i]
    		for j, del := range delspecs {
    			if imp == del {
    				copy(f.Imports[i:], f.Imports[i+1:])
    				f.Imports = f.Imports[:len(f.Imports)-1]
    				copy(delspecs[j:], delspecs[j+1:])
    				delspecs = delspecs[:len(delspecs)-1]
    				i--
    				break
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 21:56:21 UTC 2022
    - 13.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/types/typeutil/imports.go

    // license that can be found in the LICENSE file.
    
    package typeutil
    
    import "go/types"
    
    // Dependencies returns all dependencies of the specified packages.
    //
    // Dependent packages appear in topological order: if package P imports
    // package Q, Q appears earlier than P in the result.
    // The algorithm follows import statements in the order they
    // appear in the source code, so the result is a total order.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 21:56:21 UTC 2022
    - 883 bytes
    - Viewed (0)
  4. analysis/analysis-api/testData/components/compilerFacility/compilation/imports.txt

    public final class ImportsKt {
        // source: 'imports.kt'
        public final static method main(): void
        public synthetic static method main(p0: java.lang.String[]): void
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Dec 21 15:34:34 UTC 2023
    - 175 bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/internal/facts/imports.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package facts
    
    import (
    	"go/types"
    
    	"golang.org/x/tools/internal/aliases"
    )
    
    // importMap computes the import map for a package by traversing the
    // entire exported API each of its imports.
    //
    // This is a workaround for the fact that we cannot access the map used
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. src/go/internal/gcimporter/iimport.go

    	interfaceType
    	typeParamType
    	instanceType
    	unionType
    )
    
    // iImportData imports a package from the serialized package data
    // and returns the number of bytes consumed and a reference to the package.
    // If the export data version is not recognized or the format is otherwise
    // compromised, an error is returned.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  7. test/import6.go

    import "\x00"     // ERROR "import path"
    import `\x00`     // ERROR "import path"
    import "\x7f"     // ERROR "import path"
    import `\x7f`     // ERROR "import path"
    import "a!"       // ERROR "import path"
    import `a!`       // ERROR "import path"
    import "a b"      // ERROR "import path"
    import `a b`      // ERROR "import path"
    import "a\\b"     // ERROR "import path"
    import `a\\b`     // ERROR "import path"
    import "\"`a`\""  // ERROR "import path"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 11 02:26:58 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  8. hack/verify-imports.sh

    # listed in `staging/publishing/import-restrictions.yaml`.
    # Usage: `hack/verify-imports.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    kube::golang::setup_env
    
    GOPROXY=off go install ./cmd/importverifier
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:32 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  9. cmd/kubeadm/.import-restrictions

    rules:
      # prevent any k8s.io/kubernetes imports outside of this package
      - selectorRegexp: k8s[.]io/kubernetes
        allowedPrefixes:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 07 15:46:02 UTC 2023
    - 172 bytes
    - Viewed (0)
  10. hack/update-vanity-imports.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # This script fixes the vanity imports programmatically.
    # Usage: `hack/update-vanity-imports.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    kube::golang::verify_go_version
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 1K bytes
    - Viewed (0)
Back to top