Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 3,071 for compilers (0.14 sec)

  1. platforms/core-runtime/functional/src/main/java/org/gradle/internal/Combiners.java

     * Promote to a more shared subproject if useful.
     */
    public abstract class Combiners {
    
        /**
         * We know the stream we are processing is handled sequentially, and hence there is no need for a combiner.
         */
        public static <T> BinaryOperator<T> nonCombining() {
            return Combiners::unsupportedCombineOperation;
        }
    
        private static <T> T unsupportedCombineOperation(T a, T b) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 11:22:06 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/authorization/cel/compile.go

    type Compiler interface {
    	CompileCELExpression(expressionAccessor ExpressionAccessor) (CompilationResult, error)
    }
    
    type compiler struct {
    	envSet *environment.EnvSet
    }
    
    // NewCompiler returns a new Compiler.
    func NewCompiler(env *environment.EnvSet) Compiler {
    	return &compiler{
    		envSet: mustBuildEnv(env),
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 02 20:56:52 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/gcc/CCompiler.java

    import org.gradle.nativeplatform.toolchain.internal.CommandLineToolInvocationWorker;
    import org.gradle.nativeplatform.toolchain.internal.compilespec.CCompileSpec;
    
    class CCompiler extends GccCompatibleNativeCompiler<CCompileSpec> {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/rulegen.go

    		fmt.Fprintf(w, "\npackage ssa\n")
    		for _, path := range append([]string{
    			"fmt",
    			"internal/buildcfg",
    			"math",
    			"cmd/internal/obj",
    			"cmd/compile/internal/base",
    			"cmd/compile/internal/types",
    			"cmd/compile/internal/ir",
    		}, n.Arch.imports...) {
    			fmt.Fprintf(w, "import %q\n", path)
    		}
    		for _, f := range n.List {
    			f := f.(*Func)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 02 22:09:21 UTC 2023
    - 48.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/compile.go

    }
    
    type compiler struct {
    	varEnvs variableDeclEnvs
    }
    
    func NewCompiler(env *environment.EnvSet) Compiler {
    	return &compiler{varEnvs: mustBuildEnvs(env)}
    }
    
    type variableDeclEnvs map[OptionalVariableDeclarations]*environment.EnvSet
    
    // CompileCELExpression returns a compiled CEL expression.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  6. src/runtime/map.go

    // If you modify hiter, also change cmd/compile/internal/reflectdata/reflect.go
    // and reflect/value.go to match the layout of this structure.
    type hiter struct {
    	key         unsafe.Pointer // Must be in first position.  Write nil to indicate iteration end (see cmd/compile/internal/walk/range.go).
    	elem        unsafe.Pointer // Must be in second position (see cmd/compile/internal/walk/range.go).
    	t           *maptype
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  7. src/reflect/value.go

    // the compiler cannot follow.
    func escapes(x any) {
    	if dummy.b {
    		dummy.x = x
    	}
    }
    
    var dummy struct {
    	b bool
    	x any
    }
    
    // Dummy annotation marking that the content of value x
    // escapes (i.e. modeling roughly heap=*x),
    // for use in cases where the reflect code is so clever that
    // the compiler cannot follow.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  8. maven-core/src/test/remote-repo/org/apache/maven/plugins/maven-compiler-plugin/0.1/maven-compiler-plugin-0.1.jar

    Apache Maven Built-By: BEBE Build-Jdk: 1.6.0_07 META-INF/maven/plugin.xml A test plugin to assist testing of Maven core. org.apache.maven.plugins maven-compiler-plugin 0.1 compiler false true testCompile Does nothing. test false true false false false true org.apache.maven.plugin.coreit.TestMojo java per-lookup once-per-session compile Does nothing. compile false true false false false true org.apache.maven.plugin.coreit.ItMojo java per-lookup once-per-session org.apache.maven maven-plugin-api jar 2.0...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Oct 23 23:48:02 UTC 2009
    - 7.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/compile.go

    	"sort"
    	"strings"
    	"time"
    )
    
    // Compile is the main entry point for this package.
    // Compile modifies f so that on return:
    //   - all Values in f map to 0 or 1 assembly instructions of the target architecture
    //   - the order of f.Blocks is the order to emit the Blocks
    //   - the order of b.Values is the order to emit the Values in each Block
    //   - f has a non-nil regAlloc field
    func Compile(f *Func) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:55:18 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  10. maven-api-impl/src/test/remote-repo/org/apache/maven/plugins/maven-compiler-plugin/0.1/maven-compiler-plugin-0.1.jar

    Apache Maven Built-By: BEBE Build-Jdk: 1.6.0_07 META-INF/maven/plugin.xml A test plugin to assist testing of Maven core. org.apache.maven.plugins maven-compiler-plugin 0.1 compiler false true testCompile Does nothing. test false true false false false true org.apache.maven.plugin.coreit.TestMojo java per-lookup once-per-session compile Does nothing. compile false true false false false true org.apache.maven.plugin.coreit.ItMojo java per-lookup once-per-session org.apache.maven maven-plugin-api jar 2.0...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 7.9K bytes
    - Viewed (0)
Back to top