Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 479 for Street (0.25 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. subprojects/core-api/src/main/java/org/gradle/api/Script.java

         *
         * <p>The returned file tree is lazy, so that it scans for files only when the contents of the file tree are
         * queried. The file tree is also live, so that it scans for files each time the contents of the file tree are
         * queried.</p>
         *
         * @param baseDir The base directory of the file tree. Evaluated as per {@link #file(Object)}.
         * @return the file tree. Never returns null.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/mod/sumdb/tlog/tile.go

    // by loading tiles of the given tree.
    //
    // The returned [HashReader] checks that loaded tiles are
    // valid for the given tree. Therefore, any hashes returned
    // by the HashReader are already proven to be in the tree.
    func TileHashReader(tree Tree, tr TileReader) HashReader {
    	return &tileHashReader{tree: tree, tr: tr}
    }
    
    type tileHashReader struct {
    	tree Tree
    	tr   TileReader
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13K bytes
    - Viewed (0)
  8. pkg/util/iptree/iptree_test.go

    		t.Run(tc.name, func(t *testing.T) {
    			tree := New[int]()
    			ok := tree.InsertPrefix(tc.prefix, 1)
    			if ok {
    				t.Fatal("should not exist")
    			}
    			if _, ok := tree.GetPrefix(tc.prefix); !ok {
    				t.Errorf("CIDR %s not found", tc.prefix)
    			}
    			if ok := tree.DeletePrefix(tc.prefix); !ok {
    				t.Errorf("CIDR %s not deleted", tc.prefix)
    			}
    			if _, ok := tree.GetPrefix(tc.prefix); ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:04 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  9. pkg/adsc/delta.go

    		deltaLog.Debugf("Received unsubscribed resource: %v, %v", key, c.tree)
    	}
    }
    
    func (c *Client) relate(parent, child resourceKey) {
    	parentNode, f := c.tree[parent]
    	if !f {
    		deltaLog.Fatalf("Failed to relate resource: unknown parent: %v, %v", parent, c.tree)
    	}
    	childNode, f := c.tree[child]
    	if !f {
    		// Not yet watching child, create a node
    		c.tree[child] = resourceNode{
    			Parents:  make(keySet),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 09:32:41 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/InitScriptApi.kt

         *
         * The returned file tree is lazy, so that it scans for files only when the contents of the file tree are
         * queried. The file tree is also live, so that it scans for files each time the contents of the file tree are
         * queried.
         *
         * @param baseDir The base directory of the file tree. Evaluated as per [KotlinInitScript.file].
         * @return The file tree.
         */
        @Suppress("unused")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 15.3K bytes
    - Viewed (0)
Back to top