Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 496 for loadOne (0.27 sec)

  1. apache-maven/src/assembly/maven/bin/mvnyjp

    #
    #   JAVA_HOME       Must point at your Java Development Kit installation.
    #   MAVEN_OPTS      (Optional) Java runtime options used when Maven is executed.
    #   MAVEN_SKIP_RC   (Optional) Flag to disable loading of mavenrc files.
    # -----------------------------------------------------------------------------
    
    if [ ! -f "$YJPLIB" ]; then
      echo "Error: Unable to autodetect the YJP library location. Please set YJPLIB variable" >&2
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 23 09:02:45 UTC 2020
    - 1.5K bytes
    - Viewed (0)
  2. 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)
  3. src/cmd/go/testdata/script/build_dash_x.txt

    # based on various heuristics, and, due to a bug described in
    # https://golang.org/issue/31544#issuecomment-490607180,
    # those implicit dependencies are not added early enough during
    # loading to properly affect the import graph.)
    go build runtime/cgo
    
    go build -x -o main main.go
    cp stderr commands.txt
    cat header.txt commands.txt
    cp stdout test.sh
    
    exec ./main
    cmp stderr hello.txt
    rm ./main
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:18:10 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  4. 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)
  5. src/cmd/go/testdata/script/mod_tidy_error.txt

    env GO111MODULE=on
    
    # Regression test for golang.org/issue/27063:
    # 'go mod tidy' and 'go mod vendor' should not hide loading errors.
    
    ! go mod tidy
    ! stderr 'package nonexist is not in std'
    stderr '^go: issue27063 imports\n\tnonexist.example.com: cannot find module providing package nonexist.example.com'
    stderr '^go: issue27063 imports\n\tissue27063/other imports\n\tother.example.com/nonexist: cannot find module providing package other.example.com/nonexist'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. 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)
  7. src/cmd/go/testdata/script/mod_lazy_import_allmod.txt

    # This test demonstrates dependency resolution when the main module imports a
    # new package from a previously-test-only dependency.
    #
    # When lazy loading is active, the loader will not load dependencies of any
    # module whose packages are *only* imported by tests outside the main module. If
    # the main module is changed to import a package from such a module, the
    # dependencies of that module will need to be reloaded.
    
    # The import graph used in this test looks like:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 17 13:54:10 UTC 2021
    - 3.1K bytes
    - Viewed (0)
  8. platforms/core-runtime/wrapper-shared/src/main/java/org/gradle/wrapper/SystemPropertiesHandler.java

                try {
                    properties.load(inStream);
                } finally {
                    inStream.close();
                }
            } catch (IOException e) {
                throw new RuntimeException("Error when loading properties file=" + propertiesFile, e);
            }
    
            for (Object argument : properties.keySet()) {
                if (argument.toString().startsWith(SYSTEM_PROP_PREFIX)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:12:34 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/analyzer/DefaultClassDependenciesAnalyzer.java

            try (InputStream input = classFile.open()) {
                return getClassAnalysis(input);
            } catch (IOException e) {
                throw new RuntimeException("Problems loading class analysis for " + classFile.toString());
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/initialization/LegacyTypesSupport.java

     */
    
    package org.gradle.initialization;
    
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    import java.util.Set;
    
    /**
     * Enriches class loading with empty interfaces for certain types that have been removed,
     * but which are baked into the bytecode generated by the Groovy compiler.
     */
    @ServiceScope(Scope.Global.class)
    public interface LegacyTypesSupport {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top