Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 438 for Street (0.1 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/normalization/ConfigureRuntimeClasspathNormalizationIntegrationTest.groovy

            succeeds project.customTask
            then:
            skipped(project.customTask)
    
            where:
            tree        | resourceName
            'jar'       | 'jarManifest'
            'directory' | 'manifestInDirectory'
        }
    
        def "can ignore entire manifest in #tree on runtime classpath"() {
            def project = new ProjectWithRuntimeClasspathNormalization(Api.RUNTIME).withManifestIgnored()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 37.2K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/file/DefaultSourceDirectorySet.java

            Map<File, DirectoryTree> trees = new LinkedHashMap<>();
            for (DirectoryTree tree : getSourceTrees()) {
                if (!trees.containsKey(tree.getDir())) {
                    trees.put(tree.getDir(), tree);
                }
            }
            return new LinkedHashSet<>(trees.values());
        }
    
        protected Set<DirectoryFileTree> getSourceTrees() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Oct 29 02:23:21 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  3. ci/official/utilities/extract_resultstore_links.py

        testsuites.attrib = suite_attrib
        testsuite.attrib = suite_attrib
        indent_xml(testsuites)
    
      tree = ElemTree.ElementTree(testsuites)
      file_path = os.path.join(output_path)
      with open(file_path, 'wb') as f:
        f.write(b'<?xml version="1.0"?>\n')
        tree.write(f)
        if verbose:
          print(f'\nWrote XML with Bazel invocation results to {file_path}')
    
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Nov 08 17:50:27 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  4. src/runtime/sema.go

    			pt = &t.prev
    		} else {
    			pt = &t.next
    		}
    	}
    
    	// Add s as new leaf in tree of unique addrs.
    	// The balanced tree is a treap using ticket as the random heap priority.
    	// That is, it is a binary tree ordered according to the elem addresses,
    	// but then among the space of possible binary trees respecting those
    	// addresses, it is kept balanced on average by maintaining a heap ordering
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 19K bytes
    - Viewed (0)
  5. src/path/filepath/path.go

    // handle that error; as described earlier, returning the error will
    // cause Walk to stop walking the entire tree.
    //
    // Walk calls the function with a non-nil err argument in two cases.
    //
    // First, if an [os.Lstat] on the root directory or any directory or file
    // in the tree fails, Walk calls the function with path set to that
    // directory or file's path, info set to nil, and err set to the error
    // from os.Lstat.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/parsing/GrammarToTree.kt

            val tree = CachingLightTree(originalTree)
            val packageNode = packageNode(tree)
            val importNodes = importNodes(tree)
            val scriptNodes = scriptNodes(tree)
    
            val packages = packageHeader(tree, packageNode)
            val imports = importNodes.map { import(tree, it) }
            val statements = scriptNodes.map { statement(tree, it) }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 22:06:18 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  7. pkg/collateral/control.go

    	// return a map keyed by alias, whose value is the alias' ultimate target
    	// consider the map as the list of edges in a set of trees
    	// return a map where each node has one key pointing to the root node of its tree
    	reversemap := make(map[string][]string)
    	result = make(map[string]string)
    	for key, value := range m {
    		if deepvalue, ok := result[value]; ok {
    			value = deepvalue
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 03:51:36 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r73/DependencyArtifactDownloadProgressEventCrossVersionTest.groovy

                collectOutputs(build)
                build.addProgressListener(events, OperationType.FILE_DOWNLOAD)
                    .run()
            }
    
            then:
            events.operations.size() == 8
            events.trees == events.operations
            events.operation("Download ${modules.projectB.pom.uri}").assertIsDownload(modules.projectB.pom)
    
            def downloadB = events.operation("Download ${modules.projectB.artifact.uri}")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/arch/arm/armasm/decode.go

    		return Mem{Base: Rn, Mode: AddrOffset}
    
    	case arg_mem_R_pm_R_postindex:
    		// Treat [<Rn>],+/-<Rm> like [<Rn>,+/-<Rm>{,<shift>}]{!}
    		// by forcing shift bits to <<0 and P=0, W=0 (postindex=true).
    		return decodeArg(arg_mem_R_pm_R_shift_imm_W, x&^((1<<7-1)<<5|1<<24|1<<21))
    
    	case arg_mem_R_pm_R_W:
    		// Treat [<Rn>,+/-<Rm>]{!} like [<Rn>,+/-<Rm>{,<shift>}]{!}
    		// by forcing shift bits to <<0.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/plugin/devel/variants/TargetJVMVersionOnPluginTooNewFailureDescriberIntegrationTest.groovy

                    public void apply(Project project) {
                        project.getTasks().register("greet", GreetTask.class);
                    }
    
                    public static class GreetTask extends DefaultTask {
                        @TaskAction
                        public void greet() {
                            System.out.println("Hello from Java ${JavaVersion.current().majorVersion} JVM!");
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 20:48:53 UTC 2024
    - 13.5K bytes
    - Viewed (0)
Back to top