Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 741 for compilers (0.23 sec)

  1. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileIntegrationTest.groovy

            when:
            run "compile"
            then:
            executedAndNotSkipped ":compile"
    
            when:
            run "compile"
            then:
            skipped ":compile"
    
            when:
            buildFile.text = buildScriptWithClasspath("lib2.jar", "lib1.jar")
            run "compile"
            then:
            executedAndNotSkipped ":compile"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:39 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  2. src/internal/bisect/bisect.go

    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package bisect can be used by compilers and other programs
    // to serve as a target for the bisect debugging tool.
    // See [golang.org/x/tools/cmd/bisect] for details about using the tool.
    //
    // To be a bisect target, allowing bisect to help determine which of a set of independent
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 17:28:43 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/stmt.go

    func goVal(val constant.Value) interface{} {
    	// val should exist, but be conservative and check
    	if val == nil {
    		return nil
    	}
    	// Match implementation restriction of other compilers.
    	// gc only checks duplicates for integer, floating-point
    	// and string values, so only create Go values for these
    	// types.
    	switch val.Kind() {
    	case constant.Int:
    		if x, ok := constant.Int64Val(val); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/build.go

    	default:
    		return fmt.Errorf("unknown compiler %q", value)
    	}
    	cfg.BuildToolchainName = value
    	cfg.BuildContext.Compiler = value
    	return nil
    }
    
    func (c buildCompiler) String() string {
    	return cfg.BuildContext.Compiler
    }
    
    func init() {
    	switch build.Default.Compiler {
    	case "gc", "gccgo":
    		buildCompiler{}.Set(build.Default.Compiler)
    	}
    }
    
    type BuildFlagMask int
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 17:22:59 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  5. src/go/types/stmt.go

    // goVal returns the Go value for val, or nil.
    func goVal(val constant.Value) any {
    	// val should exist, but be conservative and check
    	if val == nil {
    		return nil
    	}
    	// Match implementation restriction of other compilers.
    	// gc only checks duplicates for integer, floating-point
    	// and string values, so only create Go values for these
    	// types.
    	switch val.Kind() {
    	case constant.Int:
    		if x, ok := constant.Int64Val(val); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  6. src/cmd/go/internal/help/helpdoc.go

    		If the package uses cgo or SWIG, these will be compiled with the
    		OS-native compiler (typically gcc); otherwise they will
    		trigger an error.
    	.cc, .cpp, .cxx, .hh, .hpp, .hxx
    		C++ source files. Only useful with cgo or SWIG, and always
    		compiled with the OS-native compiler.
    	.m
    		Objective-C source files. Only useful with cgo, and always
    		compiled with the OS-native compiler.
    	.s, .S, .sx
    		Assembler source files.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top