Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 5,609 for Lach (0.04 sec)

  1. src/cmd/compile/internal/ir/visit.go

    func DoChildren(n Node, do func(Node) bool) bool {
    	if n == nil {
    		return false
    	}
    	return n.doChildren(do)
    }
    
    // Visit visits each non-nil node x in the IR tree rooted at n
    // in a depth-first preorder traversal, calling visit on each node visited.
    func Visit(n Node, visit func(Node)) {
    	if n == nil {
    		return
    	}
    	var do func(Node) bool
    	do = func(x Node) bool {
    		visit(x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 23 14:29:16 UTC 2023
    - 6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/client-go/applyconfigurations/admissionregistration/v1beta1/namedrulewithoperations.go

    // and returns the receiver, so that objects can be build by chaining "With" function invocations.
    // If called multiple times, values provided by each call will be appended to the ResourceNames field.
    func (b *NamedRuleWithOperationsApplyConfiguration) WithResourceNames(values ...string) *NamedRuleWithOperationsApplyConfiguration {
    	for i := range values {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 20:56:23 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/templates/root-project/build.xml

    <project>
        <property name="lib.dir" location="lib/test"/>
    
    <% ['clean', 'jar', 'build'].each { target -> %>
        <target name="$target">
            <% subprojects.each { subproject -> %>
                <ant dir="$subproject" target="$target">
                    <property name="lib.dir" location="\${lib.dir}"/>
                </ant>
            <%  } %>
        </target>
    <% } %>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 374 bytes
    - Viewed (0)
  4. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/generator/tasks/NativeProjectWithDepsGeneratorTask.groovy

         * <p>
         *     With a wide hierarchy, each group of libraries depend only on each other. There's a limited depth (~7) and
         *     several projects.  This tries to replicate a project with many subgroups of interconnected components.
         * <p>
         *     With a deep and wide hierarchy, each subproject is formed as above, except each group of libraries depend on
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 07 13:12:26 UTC 2021
    - 11.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/initorder.go

    		return funcG[i].cost() < funcG[j].cost()
    	})
    	for _, n := range funcG {
    		// connect each predecessor p of n with each successor s
    		// and drop the function node (don't collect it in G)
    		for p := range n.pred {
    			// ignore self-cycles
    			if p != n {
    				// Each successor s of n becomes a successor of p, and
    				// each predecessor p of n becomes a predecessor of s.
    				for s := range n.succ {
    					// ignore self-cycles
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 22:06:51 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  6. src/go/types/initorder.go

    		return funcG[i].cost() < funcG[j].cost()
    	})
    	for _, n := range funcG {
    		// connect each predecessor p of n with each successor s
    		// and drop the function node (don't collect it in G)
    		for p := range n.pred {
    			// ignore self-cycles
    			if p != n {
    				// Each successor s of n becomes a successor of p, and
    				// each predecessor p of n becomes a predecessor of s.
    				for s := range n.succ {
    					// ignore self-cycles
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. platforms/ide/ide-native/src/testFixtures/groovy/org/gradle/ide/xcode/fixtures/ProjectFile.groovy

                assertIs(ProductType.TOOL)
                this.buildConfigurationList.buildConfigurations.each { ProjectFile.PBXTarget.assertNotUnitTestBuildSettings(it.buildSettings) }
            }
    
            void assertIsDynamicLibrary() {
                assertIs(ProductType.DYNAMIC_LIBRARY)
                this.buildConfigurationList.buildConfigurations.each { ProjectFile.PBXTarget.assertNotUnitTestBuildSettings(it.buildSettings) }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  8. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/vfs/impl/DefaultFileSystemAccessConcurrencyTest.groovy

            def dir = temporaryFolder.createDir("some/deep/hierarchy")
            (1..1000).each {
                def subdir = dir.file(it)
                subdir.file("in-dir.txt").createFile()
            }
    
            allowFileSystemAccess(true)
            read(dir)
            def executorService = Executors.newFixedThreadPool(100)
    
            when:
            (1..1000).each { num ->
                executorService.submit({
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/AbstractWorkerExecutorIntegrationTest.groovy

            fixture.prepareTaskTypeUsingWorker()
        }
    
        void assertWorkerExecuted(String taskName) {
            fixture.list.each {
                outputFileDir.file(taskName).file(it).assertExists()
            }
        }
    
        void assertSameDaemonWasUsed(String task1, String task2) {
            fixture.list.each {
                assert outputFileDir.file(task1).file(it).text == outputFileDir.file(task2).file(it).text
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-deactivateGlobalSubstitution/groovy/build.gradle

        FileCollection publishedRuntimeClasspath = configurations.publishedRuntimeClasspath
        doLast {
            runtimeClasspath.files.each { println(it.name) }
            publishedRuntimeClasspath.files.each { println(it.name) }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 843 bytes
    - Viewed (0)
Back to top