Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 626 for construct (1.28 sec)

  1. src/cmd/go/internal/work/action.go

    		// No permanent target.
    		mode = ModeBuild
    	}
    	if mode != ModeBuild && p.Name == "main" {
    		// We never install the .a file for a main package.
    		mode = ModeBuild
    	}
    
    	// Construct package build action.
    	a := b.cacheAction("build", p, func() *Action {
    		a := &Action{
    			Mode:    "build",
    			Package: p,
    			Actor:   newBuildActor(p, p.Internal.Cover.GenMeta),
    			Objdir:  b.NewObjdir(),
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/reflect/TypeToken.java

        };
      }
    
      /**
       * Returns the {@link Invokable} for {@code constructor}, which must be a member of {@code T}.
       *
       * @since 14.0
       */
      public final Invokable<T, T> constructor(Constructor<?> constructor) {
        checkArgument(
            constructor.getDeclaringClass() == getRawType(),
            "%s not declared by %s",
            constructor,
            getRawType());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  3. maven-di/src/main/java/org/apache/maven/di/impl/InjectorImpl.java

                                    this::compile));
                    //noinspection unchecked
                    return () -> (Q) map(map);
                }
            }
            throw new DIException("No binding to construct an instance for key "
                    + key.getDisplayString() + ".  Existing bindings:\n"
                    + getBoundKeys().stream()
                            .map(Key::toString)
                            .map(String::trim)
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  4. src/cmd/covdata/metamerge.go

    func (mm *metaMerge) VisitFuncs(f encodecounter.CounterVisitorFn) error {
    	if *verbflag >= 4 {
    		fmt.Printf("counterVisitor invoked\n")
    	}
    	// For each package, for each function, construct counter
    	// array and then call "f" on it.
    	for pidx, p := range mm.pkgs {
    		fids := make([]int, 0, len(p.ctab))
    		for fid := range p.ctab {
    			fids = append(fids, int(fid))
    		}
    		sort.Ints(fids)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 17:17:47 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  5. maven-artifact/src/main/java/org/apache/maven/artifact/versioning/VersionRange.java

    import java.util.Collections;
    import java.util.Iterator;
    import java.util.List;
    import java.util.Map;
    import java.util.Objects;
    import java.util.WeakHashMap;
    
    import org.apache.maven.artifact.Artifact;
    
    /**
     * Construct a version range from a specification.
     *
     */
    public class VersionRange {
        private static final Map<String, VersionRange> CACHE_SPEC = Collections.synchronizedMap(new WeakHashMap<>());
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:40:37 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  6. guava/src/com/google/common/reflect/TypeToken.java

        };
      }
    
      /**
       * Returns the {@link Invokable} for {@code constructor}, which must be a member of {@code T}.
       *
       * @since 14.0
       */
      public final Invokable<T, T> constructor(Constructor<?> constructor) {
        checkArgument(
            constructor.getDeclaringClass() == getRawType(),
            "%s not declared by %s",
            constructor,
            getRawType());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/typecheck/expr.go

    	t := n.X.Type()
    	if t == nil {
    		base.UpdateErrorDot(ir.Line(n), fmt.Sprint(n.X), fmt.Sprint(n))
    		n.SetType(nil)
    		return n
    	}
    
    	if n.X.Op() == ir.OTYPE {
    		base.FatalfAt(n.Pos(), "use NewMethodExpr to construct OMETHEXPR")
    	}
    
    	if t.IsPtr() && !t.Elem().IsInterface() {
    		t = t.Elem()
    		if t == nil {
    			n.SetType(nil)
    			return n
    		}
    		n.SetOp(ir.ODOTPTR)
    		types.CheckSize(t)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelInterpolator.java

         * 'rootObject.getChild().isName()' for boolean properties.
         */
        public static class ObjectBasedValueSource extends AbstractValueSource {
    
            private final Object root;
    
            /**
             * Construct a new value source, using the supplied object as the root from
             * which to start, and using expressions split at the dot ('.') to navigate
             * the object graph beneath this root.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 20K bytes
    - Viewed (0)
  9. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FileCollectionIntegrationTest.groovy

                assert elements.get().asFile == [file('b'), file('a')]
            """
    
            expect:
            succeeds()
        }
    
        @Issue("https://github.com/gradle/gradle/issues/10322")
        def "can construct file collection from the elements of a source directory set"() {
            buildFile """
                def fileCollection = objects.fileCollection()
                def sourceDirs = objects.sourceDirectorySet('main', 'main files')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 12:54:09 UTC 2024
    - 21K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/liveness/intervals.go

    //           // fallthrough
    // 10 B5:    z++
    //
    // To describe the lifetime of the variables above we might use these
    // intervals:
    //
    //    "abc"   [1,7), [9,10)
    //    "xyz"   [3,8)
    //
    // Clients can construct an Intervals object from a given IR sequence
    // using the "IntervalsBuilder" helper abstraction (one builder per
    // candidate variable), by making a
    // backwards sweep and invoking the Live/Kill methods to note the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 21:55:27 UTC 2024
    - 10K bytes
    - Viewed (0)
Back to top