Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 350 for loadOne (0.18 sec)

  1. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/internal/configurationcache/ConfigurationCacheLoadBuildOperationType.java

             * @since 8.6
             */
            long getCacheEntrySize();
    
            /**
             * The ID of the build that store the configuration cache entry.
             *
             * `null` when unknown, e.g. when loading models and not a task graph.
             *
             * @since 8.6
             */
            @Nullable
            String getOriginBuildInvocationId();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 14 17:02:45 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. testing/soak/src/integTest/kotlin/org/gradle/kotlin/dsl/caching/fixtures/ClassLoadingCache.kt

                is CachedScript.CompilationStage -> assertClassLoads(cachedScript, count)
            }
    
        private
        fun assertClassLoads(stage: CachedScript.CompilationStage, count: Int) =
            result.assertOccurrenceCountOf("loading", stage, count)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  3. maven-model-builder/src/main/java/org/apache/maven/model/building/ModelSource.java

    import org.apache.maven.building.Source;
    
    /**
     * Provides access to the contents of a POM independently of the backing store (e.g. file system, database, memory).
     * <p>
     * This interface does not support loading of parent POM(s) from the same backing store, integrators are strongly
     * encouraged to implement {@link ModelSource2} instead of implementing this interface directly.
     *
     * @see ModelSource2
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheIncludedBuildScriptChangesIntegrationTest.groovy

            then:
            outputContains fixture.expectedOutputBeforeChange
            configurationCache.assertStateStored()
    
            when:
            build()
    
            then: 'scripts are not executed when loading from cache'
            outputDoesNotContain fixture.expectedOutputBeforeChange
            configurationCache.assertStateLoaded()
    
            when:
            fixture.applyChange()
            build()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r48/PhasedBuildActionCrossVersionSpec.groovy

                    }
    
                    Object buildAll(String modelName, Project project) {
                        if (modelName == '${CustomProjectsLoadedModel.name}') {
                            return new DefaultCustomModel('loading');
                        }
                        if (modelName == '${CustomBuildFinishedModel.name}') {
                            return new DefaultCustomModel('build');
                        }
                        return null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/eclipse/RunEclipseSynchronizationTasks.java

     * override the client-provided tasks with the ones stored in the {@code eclipse.synchronizationTasks} property.
     *
     * This allows Buildship to run tasks before the model loading and load the models in a single step.
     *
     * @since 5.4
     */
    public interface RunEclipseSynchronizationTasks {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/TestFrameworkDistributionModule.java

     *
     * <p>The complexity here is necessary to determine if test framework dependencies are already present on the
     * application classpath, and thus do not need to be loaded from the Gradle distribution. The behavior of loading
     * test framework dependencies from the Gradle distribution is deprecated and will be removed in 9.0</p>
     */
    public class TestFrameworkDistributionModule {
    
        private final String moduleName;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheScriptChangesIntegrationTest.groovy

            then:
            outputContains fixture.expectedOutputBeforeChange
            configurationCache.assertStateStored()
    
            when:
            build()
    
            then: 'scripts are not executed when loading from cache'
            outputDoesNotContain fixture.expectedOutputBeforeChange
            configurationCache.assertStateLoaded()
    
            when:
            fixture.applyChange()
            build()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/cc/saved_model_export.h

    //   2) Duplicating shape-determining constants.
    //   3) Converting TF dialect -> tf_executor dialect.
    //   4) Adding initializer function's ops into @main function for correct
    //      resource initialization when loading the exported model.
    //
    // Duplicating shape-determining constants is required to place constants that
    // affect the shape of a tensor to be placed in the TPU graph instead of in the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 11:11:25 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  10. README.md

    ## Overview
    
    * Full-Featured ORM
    * Associations (Has One, Has Many, Belongs To, Many To Many, Polymorphism, Single-table inheritance)
    * Hooks (Before/After Create/Save/Update/Delete/Find)
    * Eager loading with `Preload`, `Joins`
    * Transactions, Nested Transactions, Save Point, RollbackTo to Saved Point
    * Context, Prepared Statement Mode, DryRun Mode
    * Batch Insert, FindInBatches, Find To Map
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Tue Nov 07 02:20:06 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top