Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 283 for Street (0.1 sec)

  1. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/codegen/groovy/InterceptGroovyCallsGenerator.java

        }
    
        private static CodeBlock generateCodeFromInterceptorSignatureTree(SignatureTree tree) {
            CodeBlock.Builder result = CodeBlock.builder();
            result.addStatement("$T receiver = invocation.getReceiver()", Object.class);
    
            new CodeGeneratingSignatureTreeVisitor(result).visit(tree, -1);
    
            result.addStatement("return invocation.callOriginal()");
            return result.build();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:40 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/project/DefaultProjectSpec.groovy

            when:
            def fileCollection = project.files('path', action)
    
            then:
            fileCollection.builtBy == ['something'] as Set
        }
    
        def "can create file tree configured with an Action"() {
            given:
            def project = project('root', null, Stub(GradleInternal))
            def action = { fileTree -> fileTree.builtBy('something') } as Action<ConfigurableFileTree>
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  3. operator/pkg/manifest/shared.go

    	}
    	// TODO: OpenShift
    	return ""
    }
    
    // makeTreeFromSetList creates a YAML tree from a string slice containing key-value pairs in the format key=value.
    func makeTreeFromSetList(setOverlay []string) (string, error) {
    	if len(setOverlay) == 0 {
    		return "", nil
    	}
    	tree := make(map[string]any)
    	for _, kv := range setOverlay {
    		kvv := strings.Split(kv, "=")
    		if len(kvv) != 2 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 03 06:27:07 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/graph/graph.go

    		if len(cur.In) > 1 {
    			panic("TrimTree only works on trees")
    		}
    
    		// If a node should be kept, add it to the new list of nodes
    		if _, ok := kept[cur]; ok {
    			g.Nodes = append(g.Nodes, cur)
    			continue
    		}
    
    		// If a node has no parents, then delete all of the in edges of its
    		// children to make them each roots of their own trees.
    		if len(cur.In) == 0 {
    			for _, outEdge := range cur.Out {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/memcombine.go

    		for _, v := range b.Values {
    			if v.Op != OpOr16 && v.Op != OpOr32 && v.Op != OpOr64 {
    				continue
    			}
    			if mark.contains(v.ID) {
    				// marked - means it is not the root of an OR tree
    				continue
    			}
    			// Add the OR tree rooted at v to the order.
    			// We use BFS here, but any walk that puts roots before leaves would work.
    			i := len(order)
    			order = append(order, v)
    			for ; i < len(order); i++ {
    				x := order[i]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 19:45:41 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/networking/v1/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: Thu May 23 17:42:49 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  7. src/text/template/parse/parse.go

    // The receiver is only used when the node does not have a pointer to the tree inside,
    // which can occur in old code.
    func (t *Tree) ErrorContext(n Node) (location, context string) {
    	pos := int(n.Position())
    	tree := n.tree()
    	if tree == nil {
    		tree = t
    	}
    	text := tree.text[:pos]
    	byteNum := strings.LastIndex(text, "\n")
    	if byteNum == -1 {
    		byteNum = pos // On first line.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  8. src/compress/bzip2/bzip2.go

    	}
    
    	// A block uses between two and six different Huffman trees.
    	numHuffmanTrees := br.ReadBits(3)
    	if numHuffmanTrees < 2 || numHuffmanTrees > 6 {
    		return StructuralError("invalid number of Huffman trees")
    	}
    
    	// The Huffman tree can switch every 50 symbols so there's a list of
    	// tree indexes telling us which tree to use for each 50 symbol block.
    	numSelectors := br.ReadBits(15)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 13K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part3_gradle_dep_man.adoc

    For our `guava` dependency to work, it requires a library called `failureaccess`.
    Therefore `failureaccess` is a transitive dependency of the project.
    
    == Step 4. Viewing Project Dependencies
    You can view your dependency tree in the terminal using the `./gradlew :app:dependencies` command:
    [source,kotlin]
    ----
    $ ./gradlew :app:dependencies
    
    > Task :app:dependencies
    
    ------------------------------------------------------------
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 22:40:17 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/tasks/properties/ValidationActions.java

                    .severity(Severity.ERROR)
                    .details("Expected the root of the file tree '" + directory + "' to be a directory but it's a " + actualKindOf(directory))
                    .solution("Make sure that the root of the file tree '" + propertyName + "' is configured to a directory")
            );
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 11:49:03 UTC 2024
    - 16.5K bytes
    - Viewed (0)
Back to top