Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 300 for importPos (0.23 sec)

  1. pkg/kubectl/cmd/convert/import_known_versions.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package convert
    
    // These imports are the API groups the client will support.
    // TODO: Remove these manual install once we don't need legacy scheme in convert
    import (
    	_ "k8s.io/kubernetes/pkg/apis/admission/install"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/api.go

    	// Otherwise SizesFor("gc", "amd64") is used instead.
    	Sizes Sizes
    
    	// If DisableUnusedImportCheck is set, packages are not checked
    	// for unused imports.
    	DisableUnusedImportCheck bool
    
    	// If a non-empty ErrorURL format string is provided, it is used
    	// to format an error URL link that is appended to the first line
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:48:53 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  3. src/go/internal/gcimporter/gcimporter.go

    		// "./x" -> "/this/directory/x.ext", "/this/directory/x"
    		noext = filepath.Join(srcDir, path)
    		id = noext
    
    	case filepath.IsAbs(path):
    		// for completeness only - go/build.Import
    		// does not support absolute imports
    		// "/x" -> "/x.ext", "/x"
    		noext = path
    		id = path
    	}
    
    	if false { // for debugging
    		if path != id {
    			fmt.Printf("%s -> %s\n", path, id)
    		}
    	}
    
    	// try extensions
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  4. src/go/types/api.go

    	// Otherwise SizesFor("gc", "amd64") is used instead.
    	Sizes Sizes
    
    	// If DisableUnusedImportCheck is set, packages are not checked
    	// for unused imports.
    	DisableUnusedImportCheck bool
    
    	// If a non-empty _ErrorURL format string is provided, it is used
    	// to format an error URL link that is appended to the first line
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  5. guava/src/com/google/common/io/Files.java

       * @deprecated Prefer {@code asCharSource(file, charset).read()}.
       */
      @Deprecated
      @InlineMe(
          replacement = "Files.asCharSource(file, charset).read()",
          imports = "com.google.common.io.Files")
      public static String toString(File file, Charset charset) throws IOException {
        return asCharSource(file, charset).read();
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  6. hack/update-vendor.sh

        tmp_go_deps="${TMP_DIR}/tidy_${repo/\//_}_deps.txt"
        cp go.mod "${tmp_go_mod}"
    
        echo "=== sorting ${repo}"
        # 'go list' calculates direct imports and updates go.mod so that go list -m lists our module dependencies
        echo "=== computing imports for ${repo}"
        go list all
        # ignore errors related to importing `package main` packages, but catch
        # other errors (https://github.com/golang/go/issues/59186)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:08 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  7. src/internal/godebugs/godebugs_test.go

    func incNonDefaults(t *testing.T) map[string]bool {
    	// Build list of all files importing internal/godebug.
    	// Tried a more sophisticated search in go list looking for
    	// imports containing "internal/godebug", but that turned
    	// up a bug in go list instead. #66218
    	out, err := exec.Command("go", "list", "-f={{.Dir}}", "std", "cmd").CombinedOutput()
    	if err != nil {
    		t.Fatalf("go list: %v\n%s", err, out)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 14:19:39 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. src/go/doc/reader.go

    type reader struct {
    	mode Mode
    
    	// package properties
    	doc       string // package documentation, if any
    	filenames []string
    	notes     map[string][]*Note
    
    	// imports
    	imports      map[string]int
    	hasDotImp    bool // if set, package contains a dot import
    	importByName map[string]string
    
    	// declarations
    	values []*Value // consts and vars
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/AccessorsClassPath.kt

    fun IO.writeAccessorsTo(
        outputFile: File,
        accessors: Iterable<String>,
        imports: List<String> = emptyList(),
        packageName: String = kotlinDslPackageName
    ) = io {
        outputFile.bufferedWriter().useToRun {
            appendReproducibleNewLine(fileHeaderWithImportsFor(packageName))
            if (imports.isNotEmpty()) {
                imports.forEach {
                    appendReproducibleNewLine("import $it")
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 22K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/unmarshal/unmarshal.go

    	// and (* "encoding/xml".Decoder).Decode are methods and can be a typeutil.Callee
    	// without directly importing their packages. So we cannot just skip this package
    	// when !analysisutil.Imports(pass.Pkg, "encoding/...").
    	// TODO(taking): Consider using a prepass to collect typeutil.Callees.
    
    	inspect := pass.ResultOf[inspect.Analyzer].(*inspector.Inspector)
    
    	nodeFilter := []ast.Node{
    		(*ast.CallExpr)(nil),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top