Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 5,029 for cCompiler (0.35 sec)

  1. src/cmd/compile/profile.sh

    # Use of this source code is governed by a BSD-style
    # license that can be found in the LICENSE file.
    
    # This script collects a CPU profile of the compiler
    # for building all targets in std and cmd, and puts
    # the profile at cmd/compile/default.pgo.
    
    dir=$(mktemp -d)
    cd $dir
    seed=$(date)
    
    for p in $(go list std cmd); do
    	h=$(echo $seed $p | md5sum | cut -d ' ' -f 1)
    	echo $p $h
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 17:31:10 UTC 2023
    - 588 bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/BaseIncrementalCompilationAfterFailureIntegrationTest.groovy

        }
    
        def "new generated classes are removed on the compile failure and incremental compilation works after a failure"() {
            def b = source("package b; class B {}")
            source("class Unrelated {}")
            outputs.snapshot { run language.compileTaskName }
    
            when:
            // Compile more classes, so there is possibility some is generated before a compile failure.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:30 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/native/xctest_plugin.adoc

    `swiftCompileTest__Variant__` (e.g. `swiftCompileTest`) extends `test__Variant__ExecutableImplementation`::
    Used for compiling the test component.
    This configuration contains the compile module of the test component and is therefore used when invoking the Swift compiler to compile it.
    
    `nativeLinkTest__Variant__` (e.g. `nativeLinkTest`) extends `test__Variant__ExecutableImplementation`::
    Used for linking the test component.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  4. platforms/jvm/scala/src/main/java/org/gradle/api/internal/tasks/scala/ZincScalaCompilerFactory.java

    import sbt.internal.inc.ZincUtil;
    import sbt.internal.inc.classpath.ClassLoaderCache;
    import scala.Option;
    import scala.collection.JavaConverters;
    import xsbti.ArtifactInfo;
    import xsbti.compile.ClasspathOptionsUtil;
    import xsbti.compile.ScalaCompiler;
    import xsbti.compile.ZincCompilerUtil;
    
    import java.io.File;
    import java.io.IOException;
    import java.lang.reflect.Constructor;
    import java.net.MalformedURLException;
    import java.net.URL;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:51:31 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  5. subprojects/core/src/main/resources/org/gradle/initialization/removed-types.txt

    org.gradle.listener.ListenerBroadcast
    org.gradle.listener.ListenerManager
    org.gradle.platform.base.internal.toolchain.ToolResolver
    org.gradle.runtime.jvm.toolchain.JavaToolChain
    org.gradle.api.internal.tasks.compile.Compiler
    org.gradle.api.internal.tasks.compile.GroovyJavaJointCompiler
    org.gradle.api.internal.tasks.scala.ScalaJavaJointCompiler
    org.gradle.api.internal.xml.XmlTransformer
    org.gradle.api.internal.XmlTransformer
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 28 09:26:18 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  6. src/crypto/purego_test.go

    			continue
    		}
    
    		for GOARCH := range allGOARCH {
    			context := build.Context{
    				GOOS:      "linux", // darwin has custom assembly
    				GOARCH:    GOARCH,
    				GOROOT:    testenv.GOROOT(t),
    				Compiler:  build.Default.Compiler,
    				BuildTags: []string{"purego", "math_big_pure_go"},
    			}
    
    			pkg, err := context.Import(pkgName, "", 0)
    			if err != nil {
    				t.Fatal(err)
    			}
    			if len(pkg.SFiles) == 0 {
    				continue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/passes/remove_identity_op_pattern.cc

    ==============================================================================*/
    #include "tensorflow/compiler/mlir/quantization/tensorflow/passes/remove_identity_op_pattern.h"
    
    #include "mlir/IR/PatternMatch.h"  // from @llvm-project
    #include "mlir/Support/LLVM.h"  // from @llvm-project
    #include "mlir/Transforms/GreedyPatternRewriteDriver.h"  // from @llvm-project
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.h"
    
    namespace mlir {
    namespace quant {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 15 06:13:49 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. maven-compat/src/test/resources/inheritance-repo/t12/p0/p1/pom.xml

      <build>
        <plugins>
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <executions>
              <execution>
                <id>normal</id>
    
                <goals>
                  <goal>compile</goal>
                </goals>
              </execution>
            </executions>
          </plugin>
        </plugins>
      </build>
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Nov 23 12:04:30 UTC 2014
    - 610 bytes
    - Viewed (0)
  9. test/initializerr.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Verify that erroneous initialization expressions are caught by the compiler
    // Does not compile.
    
    package main
    
    type S struct {
    	A, B, C, X, Y, Z int
    }
    
    type T struct {
    	S
    }
    
    var x = 1
    var a1 = S{0, X: 1}                             // ERROR "mixture|undefined" "too few values"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 11 02:26:58 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/test/groovy/org/gradle/language/objectivecpp/tasks/ObjectiveCppPreCompiledHeaderCompileTest.groovy

        def platform = Mock(NativePlatformInternal)
        def platformToolChain = Mock(PlatformToolProvider)
        Compiler<ObjectiveCppPCHCompileSpec> objCppPCHCompiler = Mock(Compiler)
    
        def setup() {
            objCppPCHCompile = TestUtil.createTask(ObjectiveCppPreCompiledHeaderCompile, project)
        }
    
        def "executes using the Cpp PCH Compiler"() {
            def sourceFile = temporaryFolder.createFile("sourceFile")
            def result = Mock(WorkResult)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.2K bytes
    - Viewed (0)
Back to top