Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 6,428 for compileB (0.31 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CachedTaskActionIntegrationTest.groovy

            executedAndNotSkipped(":compileA", ":compileB")
            file("build/compile-a/output.txt").text == "From compile task A"
            file("build/compile-b/output.txt").text == "From compile task B"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  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. 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)
  7. 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)
  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. 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)
  10. 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)
Back to top