Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 5,029 for cCompiler (0.13 sec)

  1. tensorflow/compiler/aot/tfcompile_main.cc

    #include "absl/strings/str_join.h"
    #include "absl/strings/string_view.h"
    #include "tensorflow/compiler/aot/codegen.h"
    #include "tensorflow/compiler/aot/compile.h"
    #include "tensorflow/compiler/aot/flags.h"
    #include "tensorflow/compiler/tf2xla/tf2xla.pb.h"
    #include "tensorflow/compiler/tf2xla/tf2xla_util.h"
    #include "xla/debug_options_flags.h"
    #include "xla/service/compiler.h"
    #include "tensorflow/core/framework/function.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  2. platforms/jvm/language-groovy/src/main/java/org/gradle/api/tasks/compile/GroovyCompile.java

    import org.gradle.api.internal.tasks.compile.CleaningJavaCompiler;
    import org.gradle.api.internal.tasks.compile.CommandLineJavaCompileSpec;
    import org.gradle.api.internal.tasks.compile.CompilationSourceDirs;
    import org.gradle.api.internal.tasks.compile.CompilerForkUtils;
    import org.gradle.api.internal.tasks.compile.DefaultGroovyJavaJointCompileSpec;
    import org.gradle.api.internal.tasks.compile.DefaultGroovyJavaJointCompileSpecFactory;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  3. 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)
  4. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/filter.go

    	"k8s.io/apiserver/pkg/cel/library"
    )
    
    // filterCompiler implement the interface FilterCompiler.
    type filterCompiler struct {
    	compiler Compiler
    }
    
    func NewFilterCompiler(env *environment.EnvSet) FilterCompiler {
    	return &filterCompiler{compiler: NewCompiler(env)}
    }
    
    type evaluationActivation struct {
    	object, oldObject, params, request, namespace, authorizer, requestResourceAuthorizer, variables interface{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 24 14:46:11 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  5. .bazelrc

    build:rocm --config=no_tfrt
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  6. platforms/jvm/language-groovy/src/testFixtures/groovy/org/gradle/groovy/compile/AbstractBasicGroovyCompilerIntegrationSpec.groovy

        }
    
        def goodCode() {
            file("src/main/groovy/compile/test/Person.groovy") << """
                package compile.test
                class Person {}
            """.stripIndent()
        }
    
        def badCode() {
            file("src/main/groovy/compile/test/Person.groovy") << """
                package compile.test
                class Person extends {}
            """.stripIndent()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 09:08:49 UTC 2023
    - 27K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/native/cpp_library_plugin.adoc

    `cppCompile__Variant__` (e.g. `cppCompileDebug` and `cppCompileRelease`) extends `main__Variant__Implementation`::
    Used for compiling the library.
    This configuration contains the compile include roots of the library and is therefore used when invoking the {cpp} compiler to compile it.
    
    `nativeLink__Variant__` (e.g. `nativeLinkDebug` and `nativeLinkRelease`) extends `main__Variant__Implementation`::
    Used for linking the library the shared library only.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/compile/BuildScriptCompileAvoidanceIntegrationTest.kt

                .assertContainsCompileAvoidanceWarning("buildSrc.jar: class com/example/Foo: Unknown Kotlin metadata with kind: 42 on class com/example/Foo - this can happen if this class is compiled with a later Kotlin version than the Kotlin compiler used by Gradle")
    
            givenJavaClassInBuildSrcContains(
                """
                public static String foo() {
                    return "bar";
                }
                """,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Sep 24 17:45:42 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  9. src/runtime/stubs_amd64.go

    // respectively. Does not follow the Go ABI.
    func spillArgs()
    func unspillArgs()
    
    // getfp returns the frame pointer register of its caller or 0 if not implemented.
    // TODO: Make this a compiler intrinsic
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 08:26:52 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/compilability_check_util.h

    #include "absl/types/optional.h"
    #include "tensorflow/compiler/jit/defs.h"
    #include "tensorflow/compiler/jit/device_util.h"
    #include "tensorflow/compiler/jit/flags.h"
    #include "tensorflow/compiler/jit/resource_operation_safety_analysis.h"
    #include "tensorflow/compiler/tf2xla/const_analysis.h"
    #include "tensorflow/compiler/tf2xla/resource_operation_table.h"
    #include "tensorflow/compiler/tf2xla/xla_op_registry.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 14.9K bytes
    - Viewed (0)
Back to top