Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for vendor$ (0.17 sec)

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

    		return filepath.Join(filepath.Dir(WorkFilePath()), "vendor")
    	}
    	// Even if -mod=vendor, we could be operating with no mod root (and thus no
    	// vendor directory). As long as there are no dependencies that is expected
    	// to work. See script/vendor_outside_module.txt.
    	modRoot := MainModules.ModRoot(MainModules.mustGetSingleMainModule())
    	if modRoot == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/load.go

    		//
    		// Do the same for importers beginning with the prefix 'vendor/' even if we
    		// are *inside* of the 'std' module: the 'vendor/' packages that resolve
    		// globally from GOROOT/src/vendor (and are listed as part of 'go list std')
    		// are distinct from the real module dependencies, and cannot import
    		// internal packages from the real module.
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  3. src/go/build/build.go

    					return false
    				}
    				for {
    					vendor := ctxt.joinPath(root, sub, "vendor")
    					if ctxt.isDir(vendor) {
    						dir := ctxt.joinPath(vendor, path)
    						if ctxt.isDir(dir) && hasGoFiles(ctxt, dir) {
    							p.Dir = dir
    							p.ImportPath = strings.TrimPrefix(pathpkg.Join(sub, "vendor", path), "src/")
    							p.Goroot = isGoroot
    							p.Root = root
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/buildlist.go

    				mg, _ = rs.Graph(ctx)
    			} else if cfg.BuildMod == "vendor" {
    				// We can't spot-check the requirements of other modules because we
    				// don't in general have their go.mod files available in the vendor
    				// directory. (Fortunately this case is impossible, because mg.graph is
    				// always non-nil in vendor mode!)
    				panic("internal error: rs.graph is unexpectedly nil with -mod=vendor")
    			} else if !spotCheckRoots(ctx, rs, spotCheckRoot) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  5. src/cmd/dist/build.go

    	// ispkg predicts whether the package should be linked as a binary, based
    	// on the name. There should be no "main" packages in vendor, since
    	// 'go mod vendor' will only copy imported packages there.
    	ispkg := !strings.HasPrefix(pkg, "cmd/") || strings.Contains(pkg, "/internal/") || strings.Contains(pkg, "/vendor/")
    
    	// Start final link command line.
    	// Note: code below knows that link.p[targ] is the target.
    	var (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  6. .teamcity/.mvn/wrapper/maven-wrapper.jar

    META-INF/MANIFEST.MF Manifest-Version: 1.0 Implementation-Title: maven-wrapper Implementation-Version: 0.5.6 Archiver-Version: Provisio Archiver Built-By: manfred Specification-Title: maven-wrapper Implementation-Vendor-Id: io.takari Created-By: Takari Inc. Build-Jdk: 1.8.0_232 Specification-Version: 0.5.6 META-INF/maven/io.takari/maven-wrapper/pom.properties version=0.5.6 groupId=io.takari artifactId=maven-wrapper org/apache/maven/wrapper/BootstrapMainStarter.class package org.apache.maven.wrapper;...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 26 01:48:39 UTC 2020
    - 49.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    Gradle 7.4+ will now emit a deprecation warning when the AdoptOpenJDK vendor is specified in the <<toolchains.adoc#sec:vendors,toolchain specification>> and it is used by auto provisioning.
    If you must use AdoptOpenJDK, you should turn off auto-download.
    If an Eclipse Temurin or IBM Semeru build works for you, specify `JvmVendorSpec.ADOPTIUM` or `JvmVendorSpec.IBM` as the vendor or leave the vendor unspecified.
    
    [[empty_directories_file_tree]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    ```
    The value for property 'implementation' is final and cannot be changed any further.
    The value for property 'languageVersion' is final and cannot be changed any further.
    The value for property 'vendor' is final and cannot be changed any further.
    ```
    
    This situation may arise when plugins or build logic eagerly queries an existing JVM Configuration's attributes to create a new Configuration with the same attributes.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/test/integration/validation_test.go

    `,
    			expectedCreateErrors: []string{
    				"spec.validation.openAPIV3Schema.type: Required value: must be object if x-kubernetes-embedded-resource is true",
    			},
    		},
    		{
    			desc: "forbidden vendor extensions in nested value validation",
    			globalSchema: `
    type: object
    properties:
     int-or-string:
       x-kubernetes-int-or-string: true
     embedded-resource:
       type: object
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 26 20:48:36 UTC 2021
    - 63.6K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.3.md

    * Clarify supported version skew between masters, nodes, and clients ([#25087](https://github.com/kubernetes/kubernetes/pull/25087), [@ihmccreery](https://github.com/ihmccreery))
    * Move godeps to vendor/ ([#24242](https://github.com/kubernetes/kubernetes/pull/24242), [@thockin](https://github.com/thockin))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 84K bytes
    - Viewed (0)
Back to top