Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,154 for treeOf (0.13 sec)

  1. src/cmd/doc/dirs.go

    	dir        string // file system directory
    	inModule   bool
    }
    
    // Dirs is a structure for scanning the directory tree.
    // Its Next method returns the next Go source directory it finds.
    // Although it can be used to scan the tree multiple times, it
    // only walks the tree once, caching the data it finds.
    type Dirs struct {
    	scan   chan Dir // Directories generated by walk.
    	hist   []Dir    // History of reported Dirs.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 17:49:12 UTC 2022
    - 9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/ServerMessageBlock2.java

        }
    
    
        /**
         * @return the treeId
         */
        public final int getTreeId () {
            return this.treeId;
        }
    
    
        /**
         * @param treeId
         *            the treeId to set
         */
        public final void setTreeId ( int treeId ) {
            this.treeId = treeId;
            if ( this.next != null ) {
                this.next.setTreeId(treeId);
            }
        }
    
    
        /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Sep 30 10:47:31 UTC 2018
    - 19.9K bytes
    - Viewed (0)
  3. platforms/jvm/java-compiler-plugin/src/main/java/org/gradle/internal/compiler/java/listeners/constants/ConstantsCollector.java

        }
    
        @Override
        public void finished(TaskEvent e) {
            if (e.getKind() == Kind.ANALYZE) {
                Trees trees = Trees.instance(task);
                ConstantsTreeVisitor visitor = new ConstantsTreeVisitor(task.getElements(), trees, constantDependentsConsumer);
                TreePath path = trees.getPath(e.getCompilationUnit(), e.getCompilationUnit());
                visitor.scan(path, null);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:06:26 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. operator/pkg/tpath/struct.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    /*
    struct.go contains functions for traversing and modifying trees of Go structs.
    */
    package tpath
    
    import (
    	"fmt"
    	"reflect"
    	"strconv"
    
    	"google.golang.org/protobuf/types/known/structpb"
    
    	"istio.io/istio/operator/pkg/util"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    NOTE: Although `FileTree` extends `FileCollection` (an is-a relationship), their behaviors differ.
    In other words, you can use a file tree wherever a file collection is required, but remember that a file collection is a flat list/set of files, while a file tree is a file and directory hierarchy.
    To convert a file tree to a flat collection, use the link:{javadocPath}/org/gradle/api/file/FileTree.html#getFiles--[FileTree.getFiles()] property.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/api/internal/file/DefaultSourceDirectorySetTest.groovy

            set.exclude 'excludes'
            def trees = set.srcDirTrees as List
    
            then:
            trees.size() == 2
            trees[0].dir == testDir.file('dir1')
            trees[0].patterns.includes as List == ['includes']
            trees[0].patterns.excludes as List == ['excludes']
            trees[1].dir == testDir.file('dir2')
            trees[1].patterns.includes as List == ['includes']
            trees[1].patterns.excludes as List == ['excludes']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 28 15:32:09 UTC 2022
    - 14.4K bytes
    - Viewed (0)
  7. operator/pkg/util/yaml.go

    	}
    
    	out := make(map[string]any)
    	err = yaml.Unmarshal([]byte(by), &out)
    	if err != nil {
    		return nil, err
    	}
    	return out, nil
    }
    
    // OverlayYAML patches the overlay tree over the base tree and returns the result. All trees are expressed as YAML
    // strings.
    func OverlayYAML(base, overlay string) (string, error) {
    	if strings.TrimSpace(base) == "" {
    		return overlay, nil
    	}
    	if strings.TrimSpace(overlay) == "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 14 02:41:27 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  8. src/internal/trace/testdata/testprog/gc-stress.go

    		children: [4]*node{
    			makeTree(depth - 1),
    			makeTree(depth - 1),
    			makeTree(depth - 1),
    			makeTree(depth - 1),
    		},
    	}
    }
    
    var trees [16]*node
    var ballast *[16]*[1024]*node
    var sink [][]byte
    
    func main() {
    	for i := range trees {
    		trees[i] = makeTree(6)
    	}
    	ballast = new([16]*[1024]*node)
    	for i := range ballast {
    		ballast[i] = new([1024]*node)
    		for j := range ballast[i] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top