Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 889 for root1 (0.13 sec)

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

    			return "", false
    		}
    		var root string
    		var err error
    		if repl := Replacement(m); repl.Path != "" && repl.Version == "" {
    			root = repl.Path
    			if !filepath.IsAbs(root) {
    				root = filepath.Join(replaceRelativeTo(), root)
    			}
    		} else if repl.Path != "" {
    			root, err = modfetch.DownloadDir(ctx, repl)
    		} else {
    			root, err = modfetch.DownloadDir(ctx, m)
    		}
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  2. src/crypto/x509/name_constraints_test.go

    	},
    
    	// #14: roots can exclude subtrees and that doesn't affect other names.
    	{
    		roots: []constraintsSpec{
    			{
    				bad: []string{"dns:.example.com"},
    			},
    		},
    		intermediates: [][]constraintsSpec{
    			{
    				{},
    			},
    		},
    		leaf: leafSpec{
    			sans: []string{"dns:foo.com"},
    		},
    	},
    
    	// #15: roots exclusions are effective.
    	{
    		roots: []constraintsSpec{
    			{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 22:40:21 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  3. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/project/structure/StandaloneProjectFactory.kt

            }
        }
    
        private fun getVirtualFileUrlsForLibraryRootsRecursively(
            roots: Collection<Path>,
            environment: KotlinCoreProjectEnvironment,
        ): Set<String> =
            buildSet {
                for (root in getVirtualFilesForLibraryRoots(roots, environment)) {
                    LibraryUtils.getAllVirtualFilesFromRoot(root, includeRoot = true)
                        .mapTo(this) { it.url }
                }
            }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  4. analysis/analysis-api-standalone/src/org/jetbrains/kotlin/analysis/project/structure/impl/KtModuleUtils.kt

    import kotlin.io.path.extension
    
    /**
     * Collect source file path as [String] from the given source roots in [compilerConfig].
     *
     * Such source roots are either [KotlinSourceRoot] or [JavaSourceRoot], and thus
     * this util collects all `.kt` and `.java` files under source roots.
     */
    internal fun getSourceFilePaths(
        compilerConfig: CompilerConfiguration,
        includeDirectoryRoot: Boolean = false,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 20:26:34 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/FileTreeCodec.kt

                throw UnsupportedOperationException()
    
            override fun visitFileTree(root: File, patterns: PatternSet, fileTree: FileTreeInternal) {
                roots.add(DirectoryTreeSpec(root, patterns))
            }
    
            override fun visitFileTreeBackedByFile(file: File, fileTree: FileTreeInternal, sourceTree: FileSystemMirroringFileTree) {
                roots.add(toSpec(sourceTree))
            }
        }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/authentication/request/x509/x509_test.go

    	   CONFIG="${CONFIG}keyUsage=keyCertSign,cRLSign\n" && \
    	   openssl req -new -x509 -days 36500 \
    	   	-sha1 -key root.key \
    	   	-out root.crt \
    	   	-subj "/C=US/ST=My State/L=My City/O=My Org/OU=My Unit/CN=ROOT CA" \
    	   	-config <(printf "${CONFIG}") \
    	   	-extensions v3_req \
    	   	&& \
    	   openssl x509 -in root.crt -text
    
    
    	   > output
    
    	   Certificate:
    	       Data:
    	           Version: 3 (0x2)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 23:23:03 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  7. pilot/pkg/bootstrap/certcontroller.go

    		log.Infof("Use roots from %v and watch", fileBundle.RootCertFile)
    
    		caBundle = s.CA.GetCAKeyCertBundle().GetRootCertPem()
    		// Similar code to istio-ca-secret: refresh the root cert, but in casecrets
    		s.addStartFunc("istiod server certificate rotation", func(stop <-chan struct{}) error {
    			go func() {
    				// regenerate istiod key cert when root cert changes.
    				s.watchRootCertAndGenKeyCert(stop)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  8. src/crypto/x509/verify.go

    		}
    		if opts.Roots != nil && opts.Roots.systemPool {
    			platformChains, err := c.systemVerify(&opts)
    			// If the platform verifier succeeded, or there are no additional
    			// roots, return the platform verifier result. Otherwise, continue
    			// with the Go verifier.
    			if err == nil || opts.Roots.len() == 0 {
    				return platformChains, err
    			}
    		}
    	}
    
    	if opts.Roots == nil {
    		opts.Roots = systemRootsPool()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:39 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/FileUtils.java

         * tries to step beyond the file system root, the root is returned.
         */
        public static File normalize(File src) {
            String path = src.getAbsolutePath();
            String normalizedPath = FilenameUtils.normalizeNoEndSeparator(path);
            if (normalizedPath != null) {
                return new File(normalizedPath);
            }
            File root = src;
            File parent = root.getParentFile();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/import.go

    			// shortest to longest. Reverse them now.
    			for i := 0; i < len(mods)/2; i++ {
    				j := len(mods) - 1 - i
    				mods[i], mods[j] = mods[j], mods[i]
    				roots[i], roots[j] = roots[j], roots[i]
    				dirs[i], dirs[j] = dirs[j], dirs[i]
    			}
    			return module.Version{}, "", "", nil, &AmbiguousImportError{importPath: path, Dirs: dirs, Modules: mods}
    		}
    
    		if len(sumErrMods) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 27.7K bytes
    - Viewed (0)
Back to top