Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 70 for Parts (0.25 sec)

  1. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                for (String modelId : result.getModelIds()) {
                    project.setInjectedProfileIds(modelId, getProfileIds(result.getActivePomProfiles(modelId)));
                }
    
                //
                // All the parts that were taken out of MavenProject for Maven 4.0.0
                //
    
                project.setProjectBuildingRequest(request);
    
                // pluginArtifacts
                Set<Artifact> pluginArtifacts = new HashSet<>();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 57.1K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/testshared/shared_test.go

    var nearlyNew = time.Now().Add(-6 * time.Second)
    var stampTime = time.Now().Add(-3 * time.Second)
    
    // resetFileStamps makes "everything" (bin, src, pkg from GOPATH and the
    // test-specific parts of GOROOT) appear old.
    func resetFileStamps() {
    	chtime := func(path string, info os.FileInfo, err error) error {
    		return os.Chtimes(path, oldTime, oldTime)
    	}
    	reset := func(path string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 26 01:54:41 UTC 2023
    - 36.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/staticinit/sched.go

    	Expr    ir.Node // bytes of run-time computed expressions
    }
    
    type Plan struct {
    	E []Entry
    }
    
    // An Schedule is used to decompose assignment statements into
    // static and dynamic initialization parts. Static initializations are
    // handled by populating variables' linker symbol data, while dynamic
    // initializations are accumulated to be executed in order.
    type Schedule struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 17:16:14 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

        while (head != null) {
          Listener tmp = head;
          head = head.next;
          tmp.next = reversedList;
          reversedList = tmp;
        }
        return reversedList;
      }
    
      // TODO(user): move parts into a default method on ListenableFuture?
      @Override
      public String toString() {
        // TODO(cpovirk): Presize to something plausible?
        StringBuilder builder = new StringBuilder();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (0)
  5. guava/src/com/google/common/util/concurrent/AbstractFuture.java

        while (head != null) {
          Listener tmp = head;
          head = head.next;
          tmp.next = reversedList;
          reversedList = tmp;
        }
        return reversedList;
      }
    
      // TODO(user): move parts into a default method on ListenableFuture?
      @Override
      public String toString() {
        // TODO(cpovirk): Presize to something plausible?
        StringBuilder builder = new StringBuilder();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

                // `Foo.Bar` is definitely not a property access - otherwise it would have had its own FIR.
                // So, it does not make sense to try to resolve such parts of qualifiers as KaCall
                if ((psi as? KtExpression)?.getPossiblyQualifiedCallExpression() == null) {
                    return null
                }
    
                if (resolveCalleeExpressionOfFunctionCall) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  7. doc/go1.17_spec.html

    float64     the set of all IEEE 754 64-bit floating-point numbers
    
    complex64   the set of all complex numbers with float32 real and imaginary parts
    complex128  the set of all complex numbers with float64 real and imaginary parts
    
    byte        alias for uint8
    rune        alias for int32
    </pre>
    
    <p>
    The value of an <i>n</i>-bit integer is <i>n</i> bits wide and represented using
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/RISCV64.rules

    (Cvt64Fto32F ...) => (FCVTSD ...)
    
    (CvtBoolToUint8 ...) => (Copy ...)
    
    (Round(32|64)F ...) => (LoweredRound(32|64)F ...)
    
    (Slicemask <t> x) => (SRAI [63] (NEG <t> x))
    
    // Truncations
    // We ignore the unused high parts of registers, so truncates are just copies.
    (Trunc16to8  ...) => (Copy ...)
    (Trunc32to8  ...) => (Copy ...)
    (Trunc32to16 ...) => (Copy ...)
    (Trunc64to8  ...) => (Copy ...)
    (Trunc64to16 ...) => (Copy ...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 40.3K bytes
    - Viewed (0)
  9. maven-api-impl/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    public java.util.Set entrySet(); public boolean equals(Object); public int hashCode(); } org/codehaus/plexus/util/cli/Commandline$Argument.class package org.codehaus.plexus.util.cli; public synchronized class Commandline$Argument { private String[] parts; public void Commandline$Argument(); public void setValue(String); public void setLine(String); public void setFile(java.io.File); public String[] getParts(); } org/codehaus/plexus/util/cli/Commandline$Marker.class package org.codehaus.plexus.util.cli;...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 164.6K bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/test/test.go

    MySigned_t takes_typedef(MySigned_t x) { return x * x; }
    
    // issue 22906
    
    // It's going to be hard to include a whole real JVM to test this.
    // So we'll simulate a really easy JVM using just the parts we need.
    // This is the relevant part of jni.h.
    
    struct _jobject;
    
    typedef struct _jobject *jobject;
    typedef jobject jclass;
    typedef jobject jthrowable;
    typedef jobject jstring;
    typedef jobject jarray;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
Back to top