Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 142 for roots (0.2 sec)

  1. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/declarations/KotlinStandaloneDeclarationProvider.kt

     * [shouldBuildStubsForBinaryLibraries] is true. In Standalone mode, binary roots don't need to be specified because library symbols are
     * provided via class-based deserialization, not stub-based deserialization.
     *
     * @param binaryRoots Binary roots of the binary libraries that are specific to [project].
     * @param sharedBinaryRoots Binary roots that are shared between multiple different projects. This allows Kotlin tests to cache stubs for
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r35/BuildProgressCrossVersionSpec.groovy

                    connection.newBuild().forTasks('publish')
                        .addProgressListener(events).run()
            }
    
            then:
            def roots = events.operations.findAll { it.parent == null }.collect { it.descriptor.name }
    
            roots == [
                "Run build",
                "Download ${module.rootMetaData.uri}",
                "Download ${module.rootMetaData.sha1.uri}",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  3. 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)
  4. staging/src/k8s.io/apiserver/pkg/server/options/serving_test.go

    			// load ca certificates into a pool
    			roots := x509.NewCertPool()
    			for _, caCert := range caCerts {
    				roots.AddCert(caCert)
    			}
    
    			<-startedCh
    
    			// try to dial
    			addr := fmt.Sprintf("localhost:%d", secureOptions.BindPort)
    			t.Logf("Dialing %s as %q", addr, test.ServerName)
    			conn, err := tls.Dial("tcp", addr, &tls.Config{
    				RootCAs:    roots,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 15:52:39 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/native/swift_library_plugin.adoc

    Dependencies found in the `implementation` configuration will, on the other hand, not be exposed to consumers, and therefore not leak into the consumer's compile include root and link libraries.
    This comes with several benefits:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl-tooling-builders/src/crossVersionTest/groovy/org/gradle/kotlin/dsl/tooling/builders/r54/KotlinBuildScriptModelCrossVersionSpec.groovy

            )
        }
    
        def "can fetch buildscript classpath for sub-project script outside root project dir"() {
    
            given:
            def rootDependency = withEmptyJar("libs/root.jar")
            def subDependency = withEmptyJar("libs/sub.jar")
    
            and:
            withDefaultSettingsIn("root").append("""
                include("sub")
                project(":sub").apply {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 08:52:51 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/file/DefaultFileOperations.java

            action.execute(deleteSpec);
            FileCollectionInternal roots = fileCollectionFactory.resolving(deleteSpec.getPaths());
            boolean didWork = false;
            for (File root : roots) {
                try {
                    didWork |= deleter.deleteRecursively(root, deleteSpec.isFollowSymlinks());
                } catch (IOException ex) {
                    throw new UncheckedIOException(ex);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 15:15:04 UTC 2024
    - 14K bytes
    - Viewed (0)
  8. platforms/jvm/normalization-java/src/main/java/org/gradle/internal/fingerprint/classpath/impl/ClasspathFingerprintingStrategy.java

        }
    
        @Override
        public Map<String, FileSystemLocationFingerprint> collectFingerprints(FileSystemSnapshot roots) {
            ImmutableMap.Builder<String, FileSystemLocationFingerprint> builder = ImmutableMap.builder();
            HashSet<String> processedEntries = new HashSet<>();
            roots.accept(new RelativePathTracker(), new ClasspathFingerprintingVisitor(processedEntries, builder));
            return builder.build();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  9. pilot/pkg/model/virtualservice.go

    		rootVs := root.Spec.(*networking.VirtualService)
    		mergedRoutes := []*networking.HTTPRoute{}
    		for _, route := range rootVs.Http {
    			// it is root vs with delegate
    			if delegate := route.Delegate; delegate != nil {
    				delegateNamespace := delegate.Namespace
    				if delegateNamespace == "" {
    					delegateNamespace = root.Namespace
    				}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 11:17:03 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_all.txt

    stdout '^example.com/u$'
    stdout '^example.com/w$'
    ! stdout '^example.com/x$'
    
    -- go.mod --
    module example.com/main
    
    // Note: this go.mod file initially specifies go 1.15,
    // but includes some redundant roots so that it
    // also already obeys the 1.17 lazy loading invariants.
    go 1.15
    
    require (
    	example.com/a v0.1.0
    	example.com/b v0.1.0 // indirect
    	example.com/q v0.1.0
    	example.com/r v0.1.0 // indirect
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 20 18:41:57 UTC 2021
    - 13.1K bytes
    - Viewed (0)
Back to top