Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 142 for roots (0.08 sec)

  1. platforms/documentation/docs/src/docs/userguide/native/cpp_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
    - 18.2K bytes
    - Viewed (0)
  2. platforms/jvm/language-groovy/src/main/java/org/gradle/api/tasks/compile/GroovyCompile.java

            if (sourceRoots.isEmpty()) {
                throw new InvalidUserDataException("Unable to infer source roots. Incremental Groovy compilation requires the source roots. Change the configuration of your sources or disable incremental Groovy compilation.");
            }
    
            if (annotationProcessingConfigured) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  3. pkg/spiffe/spiffe_test.go

    			certMap: map[string][]string{"foo.domain.com": {validRootCert}},
    		},
    		{
    			name:    "Successful validation with multiple roots",
    			certMap: map[string][]string{"foo.domain.com": {validRootCert, validRootCert2}},
    		},
    		{
    			name: "Successful validation with multiple roots multiple mappings",
    			certMap: map[string][]string{
    				"foo.domain.com": {validRootCert, validRootCert2},
    				"bar.domain.com": {validRootCert2},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  4. pilot/pkg/bootstrap/server.go

    	workloadTrustBundle *tb.TrustBundle
    	certMu              sync.RWMutex
    	istiodCert          *tls.Certificate
    
    	// istiodCertBundleWatche provides callbacks when the Istiod certs or roots are changed.
    	// The roots are used by the namespace controller to update Istiod roots and patch webhooks.
    	// The certs are used to refresh Istiod credentials.
    	istiodCertBundleWatcher *keycertbundle.Watcher
    	server                  server.Instance
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  5. pkg/adsc/delta.go

    	case EventDelete:
    		out = "delete"
    	}
    	return out
    }
    
    func (c *Client) dumpTree() string {
    	sb := strings.Builder{}
    	roots := make(keySet)
    	for key := range c.tree {
    		if len(c.tree[key].Parents) == 0 {
    			roots.Insert(key)
    		}
    	}
    	keys := slices.SortFunc(roots.UnsortedList(), func(a, b resourceKey) int {
    		return strings.Compare(a.shortName(), b.shortName())
    	})
    	for _, key := range keys {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 09:32:41 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/AssignImmutableWorkspaceStep.java

            }
        }
    
        private static String describeSnapshot(FileSystemLocationSnapshot root) {
            StringBuilder builder = new StringBuilder();
            root.accept(new FileSystemSnapshotHierarchyVisitor() {
                private int indent = 0;
    
                @Override
                public void enterDirectory(DirectorySnapshot directorySnapshot) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 16:44:11 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  7. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/NonHierarchicalFileWatcherUpdater.java

        protected void updateWatchesOnChangedWatchedFiles(FileHierarchySet newWatchedFiles) {
            // Most of the changes already happened in `handleVirtualFileSystemContentsChanged`.
            // Here we only need to update watches for the roots of the hierarchies.
            Map<String, Integer> changedWatchDirectories = new HashMap<>();
            watchedWatchableHierarchies.forEach(absolutePath -> decrement(absolutePath, changedWatchDirectories));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 17 04:59:05 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/LegacyWindowsSdkLocator.java

            "SOFTWARE\\Wow6432Node\\"
        };
        private static final String REGISTRY_ROOTPATH_SDK = "Microsoft\\Microsoft SDKs\\Windows";
        private static final String REGISTRY_ROOTPATH_KIT = "Microsoft\\Windows Kits\\Installed Roots";
        private static final String REGISTRY_FOLDER = "InstallationFolder";
        private static final String REGISTRY_VERSION = "ProductVersion";
        private static final String REGISTRY_NAME = "ProductName";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  9. platforms/core-execution/file-watching/src/test/groovy/org/gradle/internal/watch/registry/impl/HierarchicalFileWatcherUpdaterTest.groovy

            invalidate(snapshot.absolutePath)
            then:
            1 * watcher.stopWatching({ equalIgnoringOrder(it, [firstDir]) })
            0 * _
        }
    
        def "stops watching project root directory which is now beneath another project root directory"() {
            def firstDir = file("first").createDir()
            def secondDir = file("second").createDir()
            def directoryWithinFirst = file("first/within").createDir()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 13:24:54 UTC 2024
    - 12K bytes
    - Viewed (0)
  10. src/runtime/HACKING.md

    1. Any pointers from unmanaged memory to the heap must be garbage
       collection roots. More specifically, any pointer must either be
       accessible through a global variable or be added as an explicit
       garbage collection root in `runtime.markroot`.
    
    2. If the memory is reused, the heap pointers must be zero-initialized
       before they become visible as GC roots. Otherwise, the GC may
       observe stale heap pointers. See "Zero-initialization versus
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.9K bytes
    - Viewed (0)
Back to top