Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 123 for rootsOf (0.1 sec)

  1. 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)
  2. src/cmd/compile/internal/ssagen/nowb.go

    	// q is the queue of ODCLFUNC Nodes to visit in BFS order.
    	var q ir.NameQueue
    
    	for _, fn := range typecheck.Target.Funcs {
    		symToFunc[fn.LSym] = fn
    
    		// Make nowritebarrierrec functions BFS roots.
    		if fn.Pragma&ir.Nowritebarrierrec != 0 {
    			funcs[fn] = nowritebarrierrecCall{}
    			q.PushRight(fn.Nname)
    		}
    		// Check go:nowritebarrier functions.
    		if fn.Pragma&ir.Nowritebarrier != 0 && fn.WBPos.IsKnown() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 17:29:46 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. 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)
  4. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/AssignImmutableWorkspaceStep.java

            fileSystemAccess.invalidate(ImmutableList.of(immutableLocation.getAbsolutePath()));
            String outputHashes = outputSnapshots.entrySet().stream()
                .map(entry -> entry.getKey() + ":\n" + entry.getValue().roots()
                    .map(AssignImmutableWorkspaceStep::describeSnapshot)
                    .collect(Collectors.joining("\n")))
                .collect(Collectors.joining("\n"));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 16:44:11 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/GradleKotlinDslRegressionsTest.kt

            build("help", "--info").apply {
                assertNotOutput("is not supposed to be used along with regular Kotlin sources, and will be ignored in the future versions by default. (Use -Xallow-any-scripts-in-source-roots command line option to opt-in for the old behavior.)")
            }
        }
    
        @Test
        @Issue("https://github.com/gradle/gradle/issues/24481")
        fun `applied project scripts don't have project accessors`() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 07:57:29 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/build_trimpath.txt

    go build -trimpath -o paths-a.exe paths
    exec ./paths-a.exe paths-a.exe
    stdout 'binary contains GOPATH: false'
    stdout 'binary contains an empty GOROOT'
    
    # Two binaries built from identical packages in different GOPATH roots
    # should be identical.
    env GOPATH=$WORK/b
    go build -trimpath -o paths-b.exe paths
    cmp -q paths-a.exe paths-b.exe
    
    
    # Same sequence of tests but with gccgo.
    # gccgo does not support builds in module mode.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  7. platforms/core-execution/file-watching/src/test/groovy/org/gradle/internal/watch/registry/impl/HierarchicalFileWatcherUpdaterTest.groovy

            then:
            1 * watcher.startWatching({ equalIgnoringOrder(it, [firstDir]) })
            0 * _
        }
    
        def "does not watch snapshot roots in hierarchies to watch"() {
            def watchableHierarchy = file("watchable").createDir()
            registerWatchableHierarchies([watchableHierarchy])
            def subDirInRootDir = watchableHierarchy.file("some/path").createDir()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 13:24:54 UTC 2024
    - 12K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/BuildOperationTreeQueries.groovy

        }
    
        List<BuildOperationRecord.Progress> progress(Class<?> clazz) {
            return all().collect { it.progress(clazz) }.flatten()
        }
    
        void walk(Action<? super BuildOperationRecord> action) {
            roots.each { walk(it, action) }
        }
    
        @SuppressWarnings("GrMethodMayBeStatic")
        void walk(BuildOperationRecord parent, Action<? super BuildOperationRecord> action) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  9. 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)
  10. pkg/istio-agent/agent.go

    	ServiceNode string
    
    	// XDSRootCerts is the location of the root CA for the XDS connection. Used for setting platform certs or
    	// using custom roots.
    	XDSRootCerts string
    
    	// CARootCerts of the location of the root CA for the CA connection. Used for setting platform certs or
    	// using custom roots.
    	CARootCerts string
    
    	// Extra headers to add to the XDS connection.
    	XDSHeaders map[string]string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
Back to top