Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 78 for Street (0.12 sec)

  1. 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)
  2. subprojects/core-api/src/main/java/org/gradle/api/Project.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>
         *
         * <p>The order of the files in a {@code FileTree} is not stable, even on a single computer.
         *
         * @param baseDir The base directory of the file tree. Evaluated as per {@link #file(Object)}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    [[tar_tree_no_backing_file]]
    ==== TAR trees from resources without backing files
    
    It is possible to create TAR trees from arbitrary resources.
    If the resource is not created via `project.resources`, then it may not have a backing file.
    Creating a TAR tree from a resource with no backing file has been deprecated.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.31.md

    - github.com/go-task/slim-sprig: [52ccab3](https://github.com/go-task/slim-sprig/tree/52ccab3)
    - github.com/golang/snappy: [v0.0.3](https://github.com/golang/snappy/tree/v0.0.3)
    - github.com/google/martian/v3: [v3.2.1](https://github.com/google/martian/tree/v3.2.1)
    - github.com/google/s2a-go: [v0.1.7](https://github.com/google/s2a-go/tree/v0.1.7)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  5. src/html/template/escape_test.go

    	}
    
    	for _, test := range tests {
    		t.Run(test.name, func(t *testing.T) {
    			tmpl := New(test.name)
    			tmpl = Must(tmpl.Parse(test.input))
    			// Check for bug 6459: Tree field was not set in Parse.
    			if tmpl.Tree != tmpl.text.Tree {
    				t.Fatalf("%s: tree not set properly", test.name)
    			}
    			b := new(strings.Builder)
    			if err := tmpl.Execute(b, data); err != nil {
    				t.Fatalf("%s: template execution failed: %s", test.name, err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
  6. src/go/types/expr.go

    The updateExprType method is used to record this final type and update
    the recorded types: the type-checked expression tree is again traversed down,
    and the new type is propagated as needed. Untyped constant expression values
    that become fully typed must now be representable by the full type (constant
    sub-expression trees are left alone except for their roots). This mechanism
    ensures that a client sees the actual (run-time) type an untyped value would
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/syntax/parser.go

    	body := p.blockStmt("")
    	p.fnest--
    
    	// Don't check branches if there were syntax errors in the function
    	// as it may lead to spurious errors (e.g., see test/switch2.go) or
    	// possibly crashes due to incomplete syntax trees.
    	if p.mode&CheckBranches != 0 && errcnt == p.errcnt {
    		checkBranches(body, p.errh)
    	}
    
    	return body
    }
    
    // ----------------------------------------------------------------------------
    // Expressions
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  8. guava/src/com/google/common/util/concurrent/Futures.java

       *       RuntimeException} (though {@code get} implementations are discouraged from throwing such
       *       exceptions).
       * </ul>
       *
       * <p>The overall principle is to continue to treat every checked exception as a checked
       * exception, every unchecked exception as an unchecked exception, and every error as an error. In
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 64.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/extensions/v1beta1/types.go

    	//   priority.
    	PathTypePrefix = PathType("Prefix")
    
    	// PathTypeImplementationSpecific matching is up to the IngressClass.
    	// Implementations can treat this as a separate PathType or treat it
    	// identically to Prefix or Exact path types.
    	PathTypeImplementationSpecific = PathType("ImplementationSpecific")
    )
    
    // HTTPIngressPath associates a path with a backend. Incoming urls matching the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/celcoststability_test.go

    				"has(self.setDefaultedStr) && self.setDefaultedStr == 'v2'": 4,
    				"has(self.setNullableStr) && self.setNullableStr == 'v3'":   4,
    				// We treat null fields as absent fields, not as null valued fields.
    				// Note that this is different than how we treat nullable list items or map values.
    				"type(self.setNullableStr) != null_type": 4,
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:20:16 UTC 2024
    - 80.2K bytes
    - Viewed (0)
Back to top