Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 85 for Street (0.34 sec)

  1. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/BuildScriptBuilder.java

            }
            if (expression instanceof Enum) {
                return new EnumValue(expression);
            }
            throw new IllegalArgumentException("Don't know how to treat " + expression + " as an expression.");
        }
    
        /**
         * Allows repositories to be added to this script.
         */
        public RepositoriesBuilder repositories() {
            return block.repositories;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 12:02:29 UTC 2023
    - 90K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/api_test.go

    func TestLookupFieldOrMethod_RecursiveGeneric(t *testing.T) {
    	const src = `
    package pkg
    
    type Tree[T any] struct {
    	*Node[T]
    }
    
    func (*Tree[R]) N(r R) R { return r }
    
    type Node[T any] struct {
    	*Tree[T]
    }
    
    type Instance = *Tree[int]
    `
    
    	f := mustParse(src)
    	pkg := NewPackage("pkg", f.PkgName.Value)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  3. hack/local-up-cluster.sh

      if [ $? == "1" ]; then
        echo "time out on waiting $node_name info"
        exit 1
      fi
    }
    
    function refresh_docker_containerd_runc {
      apt update
      apt-get install ca-certificates curl gnupg ripgrep tree vim
      install -m 0755 -d /etc/apt/keyrings
      curl -fsSL https://download.docker.com/linux/ubuntu/gpg | gpg --dearmor -o /etc/apt/keyrings/docker.gpg
      chmod a+r /etc/apt/keyrings/docker.gpg
    
      # shellcheck disable=SC2027 disable=SC2046
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  4. src/go/types/api_test.go

    func TestLookupFieldOrMethod_RecursiveGeneric(t *testing.T) {
    	const src = `
    package pkg
    
    type Tree[T any] struct {
    	*Node[T]
    }
    
    func (*Tree[R]) N(r R) R { return r }
    
    type Node[T any] struct {
    	*Tree[T]
    }
    
    type Instance = *Tree[int]
    `
    
    	fset := token.NewFileSet()
    	f := mustParse(fset, src)
    	pkg := NewPackage("pkg", f.Name.Name)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  5. src/regexp/syntax/parse.go

    const (
    	FoldCase      Flags = 1 << iota // case-insensitive match
    	Literal                         // treat pattern as literal string
    	ClassNL                         // allow character classes like [^a-z] and [[:space:]] to match newline
    	DotNL                           // allow . to match newline
    	OneLine                         // treat ^ and $ as only matching at beginning and end of text
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    	// have been checked for. Whatever the change was, we don't know exactly how
    	// to handle it and thus return Queue. This will cause the
    	// scheduler to treat the event as if no event hint callback had been provided.
    	// Developers who want to investigate this can enable a diff at log level 6.
    	if loggerV := logger.V(6); loggerV.Enabled() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    | An iterable or map of output files.
    Using a file tree turns <<build_cache.adoc#sec:task_output_caching, caching>> off for the task.
    
    | `@link:{javadocPath}/org/gradle/api/tasks/OutputDirectories.html[OutputDirectories]`
    | `Map&lt;String, File&gt;`+++**+++ or `Iterable&lt;File&gt;`+++*+++
    | An iterable of output directories.
    Using a file tree turns <<build_cache.adoc#sec:task_output_caching, caching>> off for the task.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

            for (EdgeState edgeState : incomingEdge.getFrom().endorsesStrictVersionsFrom) {
                if (edgeState == incomingEdge) {
                    // These are my own constraints. I can not treat them as inherited,
                    // because that assumes that they are defined in another node as well and might be ignored.
                    filterOwn = true;
                    continue;
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  9. src/testing/testing.go

    }
    
    // prefix is like chatty.prefix but using p.json instead of chatty.json.
    // Using p.json allows tests to check the json behavior without modifying
    // the global variable. For convenience, we allow p == nil and treat
    // that as not in json mode (because it's not chatty at all).
    func (p *chattyPrinter) prefix() string {
    	if p != nil && p.json {
    		return string(marker)
    	}
    	return ""
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/prove.go

    	work := make([]bp, 0, 256)
    	work = append(work, bp{
    		block: f.Entry,
    		state: descend,
    	})
    
    	idom := f.Idom()
    	sdom := f.Sdom()
    
    	// DFS on the dominator tree.
    	//
    	// For efficiency, we consider only the dominator tree rather
    	// than the entire flow graph. On the way down, we consider
    	// incoming branches and accumulate conditions that uniquely
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
Back to top