Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 379 for ximports (0.36 sec)

  1. src/cmd/go/internal/imports/testdata/star/want.txt

    import1
    import2
    import3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 23:36:30 UTC 2019
    - 32 bytes
    - Viewed (0)
  2. src/go/internal/gccgoimporter/testdata/imports.gox

    v1;
    package imports;
    pkgpath imports;
    priority 7;
    import fmt fmt "fmt";
    init imports imports..import 7 math math..import 1 runtime runtime..import 1 strconv strconv..import 2 io io..import 3 reflect reflect..import 3 syscall syscall..import 3 time time..import 4 os os..import 5 fmt fmt..import 6;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 17 23:03:13 UTC 2015
    - 320 bytes
    - Viewed (0)
  3. src/cmd/dist/imports.go

    				r.readImport(&imports)
    			}
    			r.nextByte(false)
    		} else {
    			r.readImport(&imports)
    		}
    	}
    
    	for i := range imports {
    		unquoted, err := strconv.Unquote(imports[i])
    		if err != nil {
    			fatalf("reading imports from %s: %v", file, err)
    		}
    		imports[i] = unquoted
    	}
    
    	return imports
    }
    
    // resolveVendor returns a unique package path imported with the given import
    // path from srcDir.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 28 21:45:30 UTC 2019
    - 6.3K bytes
    - Viewed (0)
  4. 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)
  5. src/go/internal/gccgoimporter/testdata/imports.go

    package imports
    
    import "fmt"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 17 23:03:13 UTC 2015
    - 71 bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. test/import5.go

    // Verify that invalid imports are rejected by the compiler.
    // Does not compile.
    
    package main
    
    // Correct import paths.
    import _ "fmt"
    import _ `time`
    import _ "m\x61th"
    import _ "go/parser"
    
    // Correct import paths, but the packages don't exist.
    // Don't test.
    //import "a.b"
    //import "greek/αβ"
    
    // Import paths must be strings.
    import 42    // ERROR "import path must be a string"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 20:07:15 UTC 2017
    - 722 bytes
    - Viewed (0)
  10. 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)
Back to top