Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 3,469 for root1 (0.09 sec)

  1. pkg/ledger/smt_test.go

    	// Add data to empty trie
    	keys := getFreshData(5)
    	values := getFreshData(5)
    	root, _ := smt.Update(keys, values)
    
    	// Check all keys have been stored
    	for i, key := range keys {
    		value, _ := smt.Get(key)
    		if !bytes.Equal(values[i], value) {
    			t.Fatal("trie not updated")
    		}
    	}
    	if !bytes.Equal(root, smt.root) {
    		t.Fatal("root not stored")
    	}
    
    	newValues := getFreshData(5)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/file-collections/src/testFixtures/groovy/org/gradle/api/internal/file/collections/AbstractDirectoryWalkerTest.groovy

            given:
            def rootDir = tmpDir.createDir("root")
            def rootTextFile = rootDir.file("a.txt").createFile()
            def nestedTextFile = rootDir.file("a/b/c.txt").createFile()
            def notTextFile = rootDir.file("a/b/c.html").createFile()
            def excludedFile = rootDir.file("subdir1/a/b/c.html").createFile()
            def notUnderRoot = tmpDir.createDir("root2").file("a.txt").createFile()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 7K bytes
    - Viewed (0)
  3. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/api/internal/tasks/SnapshotTaskInputsBuildOperationType.java

             * <p>
             * Properties are visited depth-first lexicographical.
             * Roots are visited in semantic order (i.e. the order in which they make up the file collection)
             * Files and directories are depth-first lexicographical.
             * <p>
             * For roots that are a file, they are also visited with {@link #file(VisitState)}.
             */
            interface InputFilePropertyVisitor {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 17:46:30 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  4. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/impl/DirectorySnapshotterTest.groovy

            given:
            def rootDir = tmpDir.createDir("root")
            def rootTextFile = rootDir.file("root.txt").createFile()
            def knownTextFile = rootDir.file("a/b/known.txt").createFile()
            def knownDir = rootDir.file("a/known").createDir()
            def previouslyUnknownFile = knownDir.file("previously-unknown.txt").createFile()
            // root
            //   - root.txt <-- rootTextFile
            //   - a
            //     - b
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:32 UTC 2023
    - 23.6K bytes
    - Viewed (0)
  5. pkg/istio-agent/agent.go

    	// Node identifier used by Envoy
    	ServiceNode string
    
    	// XDSRootCerts is the location of the root CA for the XDS connection. Used for setting platform certs or
    	// using custom roots.
    	XDSRootCerts string
    
    	// CARootCerts of the location of the root CA for the CA connection. Used for setting platform certs or
    	// using custom roots.
    	CARootCerts string
    
    	// Extra headers to add to the XDS connection.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/api/internal/file/BaseDirFileResolverSpec.groovy

            normalize(path) == path
        }
    
        def "normalizes file system roots"() {
            expect:
            normalize(root) == new File(root)
    
            where:
            root << getFsRoots().collect { it.absolutePath }
        }
    
        @Requires(UnitTestPreconditions.Windows)
        def "normalizes non-existent file system root"() {
            def file = nonexistentFsRoot()
            assert !file.exists()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 20 11:15:22 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectManager.java

        /**
         * Obtain an immutable list of compile source roots for the given project and scope.
         * Paths are absolute.
         *
         * @param project the project
         * @param scope the scope, i.e. usually main or test
         * @return the list of compile source roots
         */
        @Nonnull
        List<Path> getCompileSourceRoots(@Nonnull Project project, @Nonnull ProjectScope scope);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Feb 09 17:13:31 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  8. cmd/importverifier/importverifier.go

    // trees for a tree of source code
    type ImportRestriction struct {
    	// BaseDir is the root of a package tree that is restricted by this
    	// configuration, given as a relative path from the root of the repository.
    	// This is a directory which `go list` might not consider a package (if it
    	// has not .go files)
    	BaseDir string `yaml:"baseImportPath"`
    	// IgnoredSubTrees are roots of sub-trees of the BaseDir for which we do
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:16 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  9. build-logic/root-build/src/main/kotlin/gradlebuild.root-build.gradle.kts

    Stefan Wolf <******@****.***> 1680698224 +0200
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 05 12:37:04 UTC 2023
    - 979 bytes
    - Viewed (0)
  10. samples/certs/workload-bar-root-certs.pem

    Jackie Elliott <******@****.***> 1675814255 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 07 23:57:35 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top