Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 420 for Compilation (0.16 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation.go

    // to the structural schema.
    // Each CompilationResult may contain:
    //   - non-nil Program, nil Error: The program was compiled successfully
    //   - nil Program, non-nil Error: Compilation resulted in an error
    //   - nil Program, nil Error: The provided rule was empty so compilation was not attempted
    //
    // perCallLimit was added for testing purpose only. Callers should always use const PerCallLimit from k8s.io/apiserver/pkg/apis/cel/config.go as input.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/img/java-sourcesets-compilation.png

    java-sourcesets-compilation.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 21:47:26 UTC 2024
    - 132.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/device_compiler.h

      // this time.  In this case it returns null into both `out_compilation_result`
      // and `out_executable`.  If `compile_mode` is `kStrict` then the compilation
      // cache always attempts the compilation on a cache miss. If compilation mode
      // is 'kAsync' compilation of the cluster happens in the background while the
      // fallback path executes.
      //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/components/compilerFacility/FirIdeNormalAnalysisSourceModuleCompilerFacilityTestGenerated.java

        runTest("analysis/analysis-api/testData/components/compilerFacility/compilation/multipleFiles.kt");
      }
    
      @Test
      @TestMetadata("simple.kt")
      public void testSimple() {
        runTest("analysis/analysis-api/testData/components/compilerFacility/compilation/simple.kt");
      }
    
      @Nested
      @TestMetadata("analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments")
      @TestDataPath("$PROJECT_ROOT")
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Apr 16 19:18:28 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/components/compilerFacility/FirIdeNormalAnalysisLibrarySourceModuleCompilerFacilityTestGenerated.java

        runTest("analysis/analysis-api/testData/components/compilerFacility/compilation/multipleFiles.kt");
      }
    
      @Test
      @TestMetadata("simple.kt")
      public void testSimple() {
        runTest("analysis/analysis-api/testData/components/compilerFacility/compilation/simple.kt");
      }
    
      @Nested
      @TestMetadata("analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments")
      @TestDataPath("$PROJECT_ROOT")
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Apr 16 19:18:28 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/encapsulate_util.h

    // Attribute indicating that this is an IdentityN node receiving inputs for a
    // outside compilation Placeholder node (the original outside compilation node
    // is moved out of TPU computation, and we left a Placeholder node there).
    // Attribute value will be a string, which is the outside compilation cluster
    // name for the outside compilation Placeholder node.
    extern const char kXlaOutsideCompilationInputsAttrName[];
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  7. src/internal/abi/compiletype.go

    // either unsafe.Sizeof and Alignof, nor runtime, reflect, or reflectlite.
    
    // CommonSize returns sizeof(Type) for a compilation target with a given ptrSize
    func CommonSize(ptrSize int) int { return 4*ptrSize + 8 + 8 }
    
    // StructFieldSize returns sizeof(StructField) for a compilation target with a given ptrSize
    func StructFieldSize(ptrSize int) int { return 3 * ptrSize }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 03:01:24 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileProblemsIntegrationTest.groovy

                case "ERROR":
                    assert problem.definition.id.displayName == "Java compilation error": "Expected label 'Java compilation error', but was ${problem.definition.id.displayName}"
                    break
                case "WARNING":
                    assert problem.definition.id.displayName == "Java compilation warning": "Expected label 'Java compilation warning', but was ${problem.definition.id.displayName}"
                    break
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:15:29 UTC 2024
    - 24K bytes
    - Viewed (0)
  9. platforms/jvm/language-groovy/src/integTest/groovy/org/gradle/groovy/compile/GroovyCompileProblemsIntegrationTest.groovy

                }
            """
        }
    
        def "when doing a join compilation java problems are formatted the same as a standalone compication"() {
            given:
            file("src/main/groovy/JavaThing.java") << """\
                public class JavaThing {
                    public void badMethod() {
                        // The following line will cause a compilation error
                        return "Hello, World!"
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 16:25:50 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/BaseIncrementalCompilationAfterFailureIntegrationTest.groovy

            ]
        }
    
        def "nothing is stashed on full recompilation but it's stashed on incremental compilation"() {
            given:
            source("class A {}", "class B {}")
            def compileTransactionDir = file("build/tmp/${language.compileTaskName}/compileTransaction")
    
            when: "First compilation is always full compilation"
            run language.compileTaskName
    
            then:
            outputs.recompiledClasses("A", "B")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:30 UTC 2024
    - 22.6K bytes
    - Viewed (0)
Back to top