Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,306 for ccompile (0.14 sec)

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

    	p := a.Package
    	return b.ccompile(a, out, flags, cxxfile, b.GxxCmd(p.Dir, workdir))
    }
    
    // gfortran runs the gfortran Fortran compiler to create an object from a single Fortran file.
    func (b *Builder) gfortran(a *Action, workdir, out string, flags []string, ffile string) error {
    	p := a.Package
    	return b.ccompile(a, out, flags, ffile, b.gfortranCmd(p.Dir, workdir))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache.adoc

        link:{groovyDslPath}/org.gradle.api.tasks.scala.ScalaDoc.html[ScalaDoc]
    * Native toolchain:
        link:{javadocPath}/org/gradle/language/cpp/tasks/CppCompile.html[CppCompile],
        link:{javadocPath}/org/gradle/language/c/tasks/CCompile.html[CCompile],
        link:{javadocPath}/org/gradle/language/swift/tasks/SwiftCompile.html[SwiftCompile]
    * Testing:
        link:{groovyDslPath}/org.gradle.api.tasks.testing.Test.html[Test]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 11:30:10 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/gc.go

    	// appropriate linker. In case of C++ code, use the compiler named
    	// by the CXX environment variable or defaultCXX if CXX is not set.
    	// Else, use the CC environment variable and defaultCC as fallback.
    	var compiler []string
    	if cxx {
    		compiler = envList("CXX", cfg.DefaultCXX(cfg.Goos, cfg.Goarch))
    	} else {
    		compiler = envList("CC", cfg.DefaultCC(cfg.Goos, cfg.Goarch))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:37:44 UTC 2024
    - 23K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/dsl/dsl.xml

            <para>Tasks used to build native binaries.</para>
            <table>
                <title>Native component task types</title>
                <tr>
                    <td>org.gradle.language.c.tasks.CCompile</td>
                </tr>
                <tr>
                    <td>org.gradle.language.assembler.tasks.Assemble</td>
                </tr>
                <tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 15:00:02 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/authentication/cel/compile.go

    	return &compiler{
    		varEnvs: mustBuildEnvs(env),
    	}
    }
    
    // CompileClaimsExpression compiles the given expressionAccessor into a CEL program that can be evaluated.
    // The claims CEL variable is available to the expression.
    func (c compiler) CompileClaimsExpression(expressionAccessor ExpressionAccessor) (CompilationResult, error) {
    	return c.compile(expressionAccessor, claimsVarName)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 17:59:05 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/aot/compile.cc

    #include "tensorflow/compiler/aot/compile.h"
    
    #include <memory>
    #include <string>
    #include <utility>
    #include <vector>
    
    #include "absl/base/call_once.h"
    #include "llvm-c/Target.h"
    #include "llvm/Support/ManagedStatic.h"
    #include "tensorflow/compiler/aot/codegen.h"
    #include "tensorflow/compiler/aot/flags.h"
    #include "tensorflow/compiler/aot/quantize.h"
    #include "tensorflow/compiler/tf2xla/tf2xla.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 08:28:57 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/aot/tfcompile.bzl

          visibility: Bazel build visibility.
          testonly:   Bazel testonly attribute.
          tfcompile_flags: Extra flags to pass to tfcompile to control compilation.
          tfcompile_tool: The tfcompile binary. A non-default can be passed to
            use a tfcompile built with extra dependencies.
          include_standard_runtime_deps: If True, the standard list of
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 19:18:08 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  8. 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)
  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. 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)
Back to top