Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 5,424 for ccompile (0.11 sec)

  1. maven-core/src/main/java/org/apache/maven/lifecycle/providers/packaging/WarLifecycleMappingProvider.java

            "compile", "org.apache.maven.plugins:maven-compiler-plugin:" + COMPILER_PLUGIN_VERSION + ":compile",
            "process-test-resources",
                    "org.apache.maven.plugins:maven-resources-plugin:" + RESOURCES_PLUGIN_VERSION + ":testResources",
            "test-compile", "org.apache.maven.plugins:maven-compiler-plugin:" + COMPILER_PLUGIN_VERSION + ":testCompile",
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 22 13:26:01 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  2. maven-di/src/main/java/org/apache/maven/di/impl/BindingInitializer.java

            return new BindingInitializer<T>(deps) {
                @Override
                public Consumer<T> compile(Function<Key<?>, Supplier<?>> compiler) {
                    return instance -> bindingInitializers.stream()
                            .map(bindingInitializer -> bindingInitializer.compile(compiler))
                            .forEach(i -> i.accept(instance));
                }
            };
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 05 09:45:47 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  3. platforms/jvm/toolchains-jvm/src/main/java/org/gradle/jvm/toolchain/internal/JavaCompilerFactory.java

    import org.gradle.internal.service.scopes.ServiceScope;
    import org.gradle.language.base.internal.compile.CompileSpec;
    import org.gradle.language.base.internal.compile.Compiler;
    
    /**
     * Creates Java compilers based on the provided compile options.
     */
    @ServiceScope(Scope.Project.class)
    public interface JavaCompilerFactory {
        <T extends CompileSpec> Compiler<T> create(Class<T> type);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  4. src/cmd/go/go_test.go

    	tg.run("test", "-c", "-n", "p1")
    	tg.grepBothNot(`([\\/]compile|gccgo).* (-p main|-fgo-pkgpath=main).*p1\.go`, "should not have run compile -p main p1.go")
    	tg.grepStderr(`([\\/]compile|gccgo).* (-p p1|-fgo-pkgpath=p1).*p1\.go`, "should have run compile -p p1 p1.go")
    }
    
    // Issue 4104.
    func TestGoTestWithPackageListedMultipleTimes(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/accessors.go

    			}
    		}
    		strictCost := false
    		if utilfeature.DefaultFeatureGate.Enabled(features.StrictCostEnforcementForWebhooks) {
    			strictCost = true
    		}
    		m.compiledMatcher = matchconditions.NewMatcher(compiler.Compile(
    			expressions,
    			cel.OptionalVariableDeclarations{
    				HasParams:     false,
    				HasAuthorizer: true,
    				StrictCost:    strictCost,
    			},
    			environment.StoredExpressions,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  6. src/cmd/go/internal/run/run.go

    cross-compiled programs when a simulator or other execution method is
    available.
    
    By default, 'go run' compiles the binary without generating the information
    used by debuggers, to reduce build time. To include debugger information in
    the binary, use 'go build'.
    
    The exit status of Run is not the exit status of the compiled binary.
    
    For more about build flags, see 'go help build'.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 19:09:38 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  7. platforms/software/platform-base/src/main/java/org/gradle/platform/base/internal/toolchain/ToolProvider.java

     * limitations under the License.
     */
    
    package org.gradle.platform.base.internal.toolchain;
    
    import org.gradle.language.base.internal.compile.CompileSpec;
    import org.gradle.language.base.internal.compile.Compiler;
    
    public interface ToolProvider extends ToolSearchResult {
        <T extends CompileSpec> Compiler<T> newCompiler(Class<T> spec);
    
        <T> T get(Class<T> toolType);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 955 bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_get_commit.txt

    # golang.org/x/text/language@commit should resolve.
    # Because of -d, the compiler should not run.
    go get -x golang.org/x/text/language@14c0d48
    ! stderr 'compile|cp|gccgo .*language\.a$'
    
    # go get should skip build with no Go files in root
    go get golang.org/x/text@14c0d48
    
    # dropping -d, we should see a build.
    [short] skip
    
    env GOCACHE=$WORK/gocache  # Looking for compile commands, so need a clean cache.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 21 20:57:57 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/tpu_dynamic_layout_pass.cc

    #include "mlir/Support/LLVM.h"  // from @llvm-project
    #include "tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_device.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_types.h"
    #include "tensorflow/compiler/mlir/tensorflow/transforms/passes.h"
    #include "tensorflow/compiler/mlir/tensorflow/utils/tpu_rewrite_device_util.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  10. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/model/internal/IdeaDependenciesOptimizer.java

            boolean isCompile = ideaScopes.contains(GeneratedIdeaScope.COMPILE);
    
            if (isProvided) {
                ideaScopes.remove(GeneratedIdeaScope.TEST);
            }
    
            if (isRuntime && isProvided) {
                ideaScopes.add(GeneratedIdeaScope.COMPILE);
                isCompile = true;
            }
    
            if (isCompile) {
                ideaScopes.remove(GeneratedIdeaScope.TEST);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 5.1K bytes
    - Viewed (0)
Back to top