Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 4,127 for cCompiler (0.2 sec)

  1. 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)
  2. tensorflow/compiler/aot/compile.h

    #ifndef TENSORFLOW_COMPILER_AOT_COMPILE_H_
    #define TENSORFLOW_COMPILER_AOT_COMPILE_H_
    
    #include <memory>
    #include <string>
    
    #include "tensorflow/compiler/aot/flags.h"
    #include "tensorflow/compiler/tf2xla/tf2xla.pb.h"
    #include "xla/service/cpu/cpu_compiler.h"
    #include "xla/xla_data.pb.h"
    #include "tensorflow/core/framework/graph.pb.h"
    #include "tensorflow/core/platform/status.h"
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/tasks/AbstractNativeSourceCompileTask.java

            PlatformToolProvider toolProvider = toolChain.select(targetPlatform);
            Compiler<? extends NativeCompileSpec> compiler = toolProvider.newCompiler(createCompileSpec().getClass());
            if (!(compiler instanceof VersionAwareCompiler)) {
                return null;
            }
            return ((VersionAwareCompiler) compiler).getVersion();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  4. 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)
  5. tensorflow/compiler/jit/device_compiler.h

    #include "absl/types/span.h"
    #include "tensorflow/compiler/jit/device_compilation_cache.h"
    #include "tensorflow/compiler/jit/device_compilation_cluster_signature.h"
    #include "tensorflow/compiler/jit/device_compilation_profiler.h"
    #include "tensorflow/compiler/jit/device_compiler_client.h"
    #include "tensorflow/compiler/jit/device_executable_persistor.h"
    #include "tensorflow/compiler/jit/flags.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  6. 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)
  7. tools/go-compile-verbose

    # This script runs can be used to emit (readable) compile tracing info when building go packages
    
    # Before usage, `go clean -cache` is suggested, otherwise you will measure cached results.
    # Cleanup: rm -f /tmp/golog; This will always append to the file so you should cleanup between each call.
    # Usage (compile all tests only): `go test -exec=true -toolexec=$PWD/tools/go-compile-verbose ./...`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 05 18:18:29 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/main/java/org/gradle/language/rc/tasks/WindowsResourceCompile.java

            Class<T> specType = Cast.uncheckedCast(spec.getClass());
            Compiler<T> baseCompiler = platformToolProvider.newCompiler(specType);
            Compiler<T> incrementalCompiler = this.incrementalCompiler.createCompiler(baseCompiler);
            Compiler<T> loggingCompiler = BuildOperationLoggingCompilerDecorator.wrap(incrementalCompiler);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/main/java/org/gradle/language/swift/tasks/SwiftCompile.java

    import org.gradle.internal.operations.logging.BuildOperationLogger;
    import org.gradle.internal.operations.logging.BuildOperationLoggerFactory;
    import org.gradle.language.base.compile.CompilerVersion;
    import org.gradle.language.base.internal.compile.Compiler;
    import org.gradle.language.base.internal.compile.VersionAwareCompiler;
    import org.gradle.language.swift.SwiftVersion;
    import org.gradle.language.swift.tasks.internal.DefaultSwiftCompileSpec;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/pjrt_compile_util.h

    #ifndef TENSORFLOW_COMPILER_JIT_PJRT_COMPILE_UTIL_H_
    #define TENSORFLOW_COMPILER_JIT_PJRT_COMPILE_UTIL_H_
    
    #include "tensorflow/compiler/jit/xla_compile_util.h"
    #include "tensorflow/compiler/jit/xla_platform_info.h"
    #include "tensorflow/compiler/tf2xla/xla_compiler.h"
    #include "xla/pjrt/pjrt_client.h"
    #include "tensorflow/core/framework/device_base.h"
    #include "tensorflow/core/framework/op_kernel.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top