Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 209 for roots (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/cmd/go/testdata/script/build_trimpath.txt

    cp go.mod $WORK/a/src/paths/
    cp go.mod $WORK/b/src/paths/
    
    
    # A binary built without -trimpath should contain the module root dir
    # and GOROOT for debugging and stack traces.
    cd $WORK/a/src/paths
    go build -o $WORK/paths-dbg.exe .
    exec $WORK/paths-dbg.exe $WORK/paths-dbg.exe
    stdout 'binary contains module root: true'
    stdout 'binary contains an empty GOROOT'
    
    # A binary built with -trimpath should not contain the current workspace.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. pkg/istio-agent/agent.go

    	// Node identifier used by Envoy
    	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.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  10. security/pkg/pki/util/keycertbundle.go

    	opts := x509.VerifyOptions{
    		Intermediates: icp,
    		Roots:         rcp,
    	}
    	cert, err := ParsePemEncodedCertificate(certBytes)
    	if err != nil {
    		return fmt.Errorf("failed to parse cert PEM: %v", err)
    	}
    	chains, err := cert.Verify(opts)
    
    	if len(chains) == 0 || err != nil {
    		return fmt.Errorf(
    			"cannot verify the cert with the provided root chain and cert "+
    				"pool with error: %v", err)
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jan 21 06:07:50 UTC 2024
    - 10.5K bytes
    - Viewed (0)
Back to top