Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,073 for parens (0.1 sec)

  1. maven-api-impl/src/test/remote-repo/org/apache/maven/its/parent/0.1/parent-0.1.pom

        <modelVersion>4.0.0</modelVersion>
    
        <groupId>org.apache.maven.its</groupId>
        <artifactId>parent</artifactId>
        <version>0.1</version>
        <packaging>pom</packaging>
    
        <name>Maven Integration Test :: Dummy Parent</name>
    
        <build>
            <pluginManagement>
                <plugins>
                    <plugin>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 774 bytes
    - Viewed (0)
  2. src/cmd/compile/internal/syntax/parser.go

    		o := new(Operation)
    		o.pos = pos
    		o.Op = Recv
    		o.X = x
    		return o
    	}
    
    	// TODO(mdempsky): We need parens here so we can report an
    	// error for "(x) := true". It should be possible to detect
    	// and reject that more efficiently though.
    	return p.pexpr(nil, true)
    }
    
    // callStmt parses call-like statements that can be preceded by 'defer' and 'go'.
    func (p *parser) callStmt() *CallStmt {
    	if trace {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  3. prow/config/calico.yaml

                      \"c\" \thas(label_name)  -> True if that label is present \t! expr
                      -> negation of expr \texpr && expr  -> Short-circuit and \texpr
                      || expr  -> Short-circuit or \t( expr ) -> parens for grouping \tall()
                      or the empty selector -> matches all endpoints. \n Label names are
                      allowed to contain alphanumerics, -, _ and /. String literals are
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/MultiParentClassLoader.java

        }
    
        public MultiParentClassLoader(ClassLoader... parents) {
            this(Arrays.asList(parents));
        }
    
        public MultiParentClassLoader(Collection<? extends ClassLoader> parents) {
            super(null);
            this.parents = new CopyOnWriteArrayList<ClassLoader>(parents);
        }
    
        public void addParent(ClassLoader parent) {
            parents.add(parent);
        }
    
        public List<ClassLoader> getParents() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  5. src/reflect/arena.go

    // license that can be found in the LICENSE file.
    
    //go:build goexperiment.arenas
    
    package reflect
    
    import "arena"
    
    // ArenaNew returns a [Value] representing a pointer to a new zero value for the
    // specified type, allocating storage for it in the provided arena. That is,
    // the returned Value's Type is [PointerTo](typ).
    func ArenaNew(a *arena.Arena, typ Type) Value {
    	return ValueOf(arena_New(a, PointerTo(typ)))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:20:05 UTC 2024
    - 574 bytes
    - Viewed (0)
  6. src/runtime/arena.go

    // allocated into arenas.
    //
    // Note that arenas are not safe to use concurrently.
    //
    // In summary, there are 2 resources: arenas, and arena chunks. They exist in the
    // following lifecycle:
    //
    // (1) A new arena is created via newArena.
    // (2) Chunks are allocated to hold memory allocated into the arena with new or slice.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:44:56 UTC 2024
    - 37.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/telemetry/PATENTS

    that this implementation of Go or any code incorporated within this
    implementation of Go constitutes direct or contributory patent
    infringement, or inducement of patent infringement, then any patent
    rights granted to you under this License for this implementation of Go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 21:40:49 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/build/PATENTS

    that this implementation of Go or any code incorporated within this
    implementation of Go constitutes direct or contributory patent
    infringement, or inducement of patent infringement, then any patent
    rights granted to you under this License for this implementation of Go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/text/PATENTS

    that this implementation of Go or any code incorporated within this
    implementation of Go constitutes direct or contributory patent
    infringement, or inducement of patent infringement, then any patent
    rights granted to you under this License for this implementation of Go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/tooling/internal/provider/serialization/ModelClassLoaderFactory.java

            if (spec instanceof SystemClassLoaderSpec) {
                return rootClassLoader;
            }
            if (spec instanceof MultiParentClassLoader.Spec) {
                return new MultiParentClassLoader(parents);
            }
            if (parents.size() != 1) {
                throw new IllegalArgumentException("Expected a single parent.");
            }
            ClassLoader parent = parents.get(0);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 00:13:09 UTC 2024
    - 2.8K bytes
    - Viewed (0)
Back to top