Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 3,071 for compilers (0.16 sec)

  1. src/cmd/dist/build.go

    	} else {
    		archive = b
    	}
    
    	// Compile Go code.
    	compile := []string{pathf("%s/compile", tooldir), "-std", "-pack", "-o", b, "-p", pkgName, "-importcfg", importcfg}
    	if gogcflags != "" {
    		compile = append(compile, strings.Fields(gogcflags)...)
    	}
    	if len(sfiles) > 0 {
    		compile = append(compile, "-asmhdr", goasmh)
    	}
    	if symabis != "" {
    		compile = append(compile, "-symabis", symabis)
    	}
    	if goos == "android" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. src/runtime/compiler.go

    // license that can be found in the LICENSE file.
    
    package runtime
    
    // Compiler is the name of the compiler toolchain that built the
    // running binary. Known toolchains are:
    //
    //	gc      Also known as cmd/compile.
    //	gccgo   The gccgo front end, part of the GCC compiler suite.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 01 18:18:07 UTC 2022
    - 410 bytes
    - Viewed (0)
  5. 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)
  6. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    [[sec:configuring_the_compiler_assembler_and_linker]]
    == Configuring the compiler, assembler and linker
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  7. src/regexp/syntax/compile.go

    		for i, sub := range re.Sub {
    			if i == 0 {
    				f = c.compile(sub)
    			} else {
    				f = c.cat(f, c.compile(sub))
    			}
    		}
    		return f
    	case OpAlternate:
    		var f frag
    		for _, sub := range re.Sub {
    			f = c.alt(f, c.compile(sub))
    		}
    		return f
    	}
    	panic("regexp: unhandled case in compile")
    }
    
    func (c *compiler) inst(op InstOp) frag {
    	// TODO: impose length limit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 13 14:52:20 UTC 2021
    - 6.8K bytes
    - Viewed (0)
  8. platforms/software/platform-base/src/main/java/org/gradle/language/base/internal/compile/Compiler.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.language.base.internal.compile;
    
    import org.gradle.api.tasks.WorkResult;
    
    public interface Compiler<T extends CompileSpec> {
        WorkResult execute(T spec);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 794 bytes
    - Viewed (0)
  9. apache-maven/src/main/appended-resources/licenses/CDDL+GPLv2-with-classpath-exception.txt

    school, if any, to sign a "copyright disclaimer" for the program, if
    necessary. Here is a sample; alter the names:
    
        Yoyodyne, Inc., hereby disclaims all copyright interest in the
        program `Gnomovision' (which makes passes at compilers) written by
        James Hacker.
    
        signature of Ty Coon, 1 April 1989
        Ty Coon, President of Vice
    
    This General Public License does not permit incorporating your program
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 17 19:14:22 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/CCompiler.java

    import org.gradle.nativeplatform.toolchain.internal.compilespec.CCompileSpec;
    
    import java.util.Optional;
    
    class CCompiler extends VisualCppNativeCompiler<CCompileSpec> {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top