Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 392 for Compilation (0.69 sec)

  1. src/go/doc/comment/testdata/text7.txt

    those provided by package "net/rpc".
    
    The implementation compiles a custom codec for each data type in the stream
    and is most efficient when a single Encoder is used to transmit a stream of
    values, amortizing the cost of compilation.
    -- text --
                        Package gob manages streams of gobs - binary values
                        exchanged between an Encoder (transmitter) and a Decoder
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:45 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  2. src/go/doc/comment/testdata/text5.txt

    those provided by package "net/rpc".
    
    The implementation compiles a custom codec for each data type in the stream
    and is most efficient when a single Encoder is used to transmit a stream of
    values, amortizing the cost of compilation.
    -- text --
    Package gob
    manages streams
    of gobs - binary
    values exchanged
    between an Encoder
    (transmitter) and a
    Decoder (receiver).
    A typical use
    is transporting
    arguments and
    results of remote
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:45 UTC 2022
    - 937 bytes
    - Viewed (0)
  3. src/go/doc/comment/testdata/text6.txt

    those provided by package "net/rpc".
    
    The implementation compiles a custom codec for each data type in the stream
    and is most efficient when a single Encoder is used to transmit a stream of
    values, amortizing the cost of compilation.
    -- text --
    Package gob manages streams of gobs - binary values exchanged between an Encoder
    (transmitter) and a Decoder (receiver). A typical use is transporting arguments
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:45 UTC 2022
    - 919 bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/Swift5Test.groovy

                    """#if swift(>=6.0)
                            XCTFail("Compilation unit compiled with Swift 6+ instead of Swift 5.x");
                        #elseif swift(>=5.0)
                            // Do nothing
                        #else
                            XCTFail("Compilation unit compiled with Swift 4- instead of Swift 5.x");
                        #endif
                    """)
            ]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/internal/passes/clustering_passes.h

    CreateTPUClusterFormationPass(bool strict_clusters = false);
    
    // Creates a pass that extracts outside compilation (Host ops inside device
    // cluster) at head/tail of Device cluster to run before/after XLA computation.
    std::unique_ptr<mlir::OperationPass<mlir::ModuleOp>>
    CreateExtractHeadTailOutsideCompilationPass();
    
    // Creates a pass that extract outside compilation (Host ops inside cevice
    // cluster) ops to a separate parallel_execute region to run on CPU.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 02:01:13 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheFeatureFlagsIntegrationTest.groovy

            then:
            configurationCache.assertStateStored()
            outputContains("Groovy compilation avoidance is an incubating feature")
    
            when:
            configurationCacheRun("compileGroovy", "--rerun-tasks")
    
            then:
            configurationCache.assertStateLoaded()
            outputContains("Groovy compilation avoidance is an incubating feature")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. test/fixedbugs/issue24693.dir/b.go

    // a.T.m instead of b.T.m.
    func F1(i interface{ m() }) { i.m() }
    
    // The interface method calling convention depends on interface method
    // sets being sorted in the same order across compilation units.  In
    // the test case below, at the call to b.F2(b.T{}) in c.go, the
    // interface method set is sorted as { a.m(); b.m() }.
    //
    // However, while compiling package b, its package path is set to "",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 10 00:06:06 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  8. platforms/jvm/scala/src/main/java/org/gradle/api/tasks/scala/ScalaDoc.java

            return super.getSource();
        }
    
        /**
         * Returns the compilation outputs needed by Scaladoc filtered to include <a href="https://docs.scala-lang.org/scala3/guides/tasty-overview.html">TASTy</a> files.
         * <p>
         * NOTE: This is only useful with Scala 3 or later. Scala 2 only processes source files.
         * </p>
         * @return the compilation outputs produced from the sources
         * @since 7.3
         */
        @InputFiles
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/CrossTaskGroovyJavaJointIncrementalCompilationIntegrationTest.groovy

        boolean useJar = false
    
        def setup() {
            configureGroovyIncrementalCompilation()
        }
    
        @Issue("https://github.com/gradle/gradle/issues/22531")
        def 'incremental compilation does not fail on api change referenced via static property when affected class is #bCompileStatic#bSuffix'() {
            given:
            // A is a private dependency of B1 and B1 is referenced in E1.isCacheEnabled through inheritance.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/CompilationFailedException.java

        }
    
        public CompilationFailedException(@Nullable ApiCompilerResult compilerPartialResult) {
            super("Compilation failed; see the compiler error output for details.");
            this.compilerPartialResult = compilerPartialResult;
        }
    
        public CompilationFailedException(int exitCode) {
            super(String.format("Compilation failed with exit code %d; see the compiler error output for details.", exitCode));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top