Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 120 for PASS (0.34 sec)

  1. src/cmd/compile/internal/walk/order.go

    	// temporary to pass to the runtime conversion routine.
    	case ir.OCONVIFACE:
    		n := n.(*ir.ConvExpr)
    		n.X = o.expr(n.X, nil)
    		if n.X.Type().IsInterface() {
    			return n
    		}
    		if _, _, needsaddr := dataWordFuncName(n.X.Type()); needsaddr || isStaticCompositeLiteral(n.X) {
    			// Need a temp if we need to pass the address to the conversion function.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:33 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/base/Converter.java

     *       the {@code Converter} type using a mocking framework.
     *   <li>Extend this class and implement its {@link #doForward} and {@link #doBackward} methods.
     *   <li><b>Java 8+ users:</b> you may prefer to pass two lambda expressions or method references to
     *       the {@link #from from} factory method.
     * </ul>
     *
     * <p>Using a converter:
     *
     * <ul>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 23K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/gccgo.go

    		}
    		if objc {
    			ldflags = append(ldflags, "-lobjc")
    		}
    		if fortran {
    			fc := cfg.Getenv("FC")
    			if fc == "" {
    				fc = "gfortran"
    			}
    			// support gfortran out of the box and let others pass the correct link options
    			// via CGO_LDFLAGS
    			if strings.Contains(fc, "gfortran") {
    				ldflags = append(ldflags, "-lgfortran")
    			}
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 02 22:18:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/lifecycle/internal/MojoDescriptorCreator.java

                // idea:idea
                //
                String prefix = tok[0];
    
                if (numTokens == 2) {
                    goal = tok[1];
                } else {
                    // goal was missing - pass through to MojoNotFoundException
                    goal = "";
                }
    
                // This is the case where someone has executed a single goal from the command line
                // of the form:
                //
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/tasks/DefaultTaskDependency.java

    import static org.gradle.internal.UncheckedException.uncheckedCall;
    
    /**
     * A task dependency which can have both mutable and immutable dependency values.
     *
     * If dependencies are known up-front, it is much more efficient to pass
     * them as immutable values to the {@link DefaultTaskDependency#DefaultTaskDependency(TaskResolver, ImmutableSet, TaskDependencyUsageTracker)}
     * constructor than to use the {@link #add(Object...)} method, as the former will
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 12:20:43 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  6. src/cmd/cgo/doc.go

    		Write out input file in Go syntax replacing C package
    		names with real values. Used to generate files in the
    		syscall package when bootstrapping a new target.
    	-ldflags flags
    		Flags to pass to the C linker. The cmd/go tool uses
    		this to pass in the flags in the CGO_LDFLAGS variable.
    	-objdir directory
    		Put all generated files in directory.
    	-srcdir directory
    */
    package main
    
    /*
    Implementation details.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/TreeBasedTable.java

       */
      @Deprecated
      public Comparator<? super R> rowComparator() {
        /*
         * requireNonNull is safe because the factories require non-null Comparators, which they pass on
         * to the backing collections.
         */
        return requireNonNull(rowKeySet().comparator());
      }
    
      /**
       * Returns the comparator that orders the columns. With natural ordering, {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/resolver/KotlinScriptDependenciesResolverTest.kt

            val $type.implicitReceiver get() = this
            require(implicitReceiver is $type)
        """
    
        @Test
        @Requires(IntegTestPreconditions.NotEmbeddedExecutor::class)
        fun `pass environment`() {
    
            assertSucceeds(
                withBuildScript(
                    """
                    require(System.getProperty("myJvmSysProp") == "systemValue") { "gradleJvmOptions" }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:12:50 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/check.go

    				if !domCheck(f, sdom, c.Block, b) {
    					f.Fatalf("control value %s for %s doesn't dominate", c, b)
    				}
    			}
    		}
    	}
    
    	// Check loop construction
    	if f.RegAlloc == nil && f.pass != nil { // non-nil pass allows better-targeted debug printing
    		ln := f.loopnest()
    		if !ln.hasIrreducible {
    			po := f.postorder() // use po to avoid unreachable blocks.
    			for _, b := range po {
    				for _, s := range b.Succs {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 16:41:23 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/TreeBasedTable.java

       */
      @Deprecated
      public Comparator<? super R> rowComparator() {
        /*
         * requireNonNull is safe because the factories require non-null Comparators, which they pass on
         * to the backing collections.
         */
        return requireNonNull(rowKeySet().comparator());
      }
    
      /**
       * Returns the comparator that orders the columns. With natural ordering, {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 11.4K bytes
    - Viewed (0)
Back to top