Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 438 for Street (0.09 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/VariantAwareResolutionWithConfigurationAttributesIntegrationTest.groovy

                                import org.apache.commons.lang3.StringUtils;
    
                                public class Hello {
                                    public void greet(String name) {
                                        System.out.println("Hello " + StringUtils.capitalize(name));
                                    }
                                }
                            ''')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/mod/sumdb/tlog/tlog.go

    	}
    }
    
    // A TreeProof is a verifiable proof that a particular log tree contains
    // as a prefix all records present in an earlier tree.
    // RFC 6962 calls this a “Merkle consistency proof.”
    type TreeProof []Hash
    
    // ProveTree returns the proof that the tree of size t contains
    // as a prefix all the records from the tree of smaller size n.
    func ProveTree(t, n int64, h HashReader) (TreeProof, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  8. pkg/registry/core/service/ipallocator/cidrallocator.go

    	ipAddressInformer networkingv1alpha1informers.IPAddressInformer
    	queue             workqueue.TypedRateLimitingInterface[string]
    
    	internalStopCh chan struct{}
    
    	muTree sync.Mutex
    	tree   *iptree.Tree[*Allocator]
    
    	ipFamily api.IPFamily
    }
    
    var _ Interface = &MetaAllocator{}
    
    // NewMetaAllocator returns an IP allocator that use the IPAddress
    // and ServiceCIDR objects to track the assigned IP addresses,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/bundling/ConcurrentArchiveIntegrationTest.groovy

                    @Inject abstract ArchiveOperations getArchiveOperations()
    
                    @TaskAction
                    void update() {
                        FileTree tree = archiveOperations.${archiveType}Tree(archive.asFile.get())
                        tree.visit(new EditingFileVisitor())
                    }
    
                    private final class EditingFileVisitor implements FileVisitor {
                        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 17:32:21 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/DefaultFilePropertyFactoryTest.groovy

            expect:
            def dirVar = factory.newDirectoryProperty()
            def tree = dirVar.asFileTree
    
            dirVar.set(dir1)
            tree.files == [file1, file2] as Set
    
            dirVar.set(dir2)
            tree.files == [file3] as Set
    
            dirVar.set(dir3)
            tree.files == [] as Set
        }
    
        def "Directory.files are relative to the directory"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 10.4K bytes
    - Viewed (0)
Back to top