Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 635 for earlib (0.18 sec)

  1. dbflute_fess/_readme.txt

    whether the SQLs have correct formats.
    
    The directories are for DBFlute tasks:
    /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    dfprop     : Directory for DBFlute properties
    extlib     : Directory for Directory for library extension
    log        : Directory for log files of DBFlute tasks
    output/doc : Directory for auto-generated documents
    playsql    : Directory for ReplaceSchema task
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Jul 04 22:46:31 UTC 2015
    - 2.5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenRealProjectsDependencyResolveIntegrationTest.groovy

        def "resolves dependencies on real projects"() {
            // Real but ancient projects
            // Hibernate core brings in conflicts, exclusions and root poms
            // Add a direct dependency on an earlier version of commons-collection than required by hibernate core
            // Logback classic depends on a later version of slf4j-api than required by hibernate core
    
            given:
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  3. src/internal/lazytemplate/lazytemplate.go

    // happen immediately.
    func New(name, text string) *Template {
    	lt := &Template{name: name, text: text}
    	if inTest {
    		// In tests, always parse the templates early.
    		lt.tp()
    	}
    	return lt
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/BuildScriptChangesContinuousBuildIntegrationTest.groovy

            executedAndNotSkipped(":myTask")
    
            when:
            file(buildFileName) << """
                println("Hello from Build Script")
            """
            then:
            // TODO: Script compilation happens to early to be detected as an input.
            //   That is why the change is not yet picked up.
            noBuildTriggered()
    
            where:
            buildFileName      | readTextMethod             | variableDefinition
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/CppSum.groovy

    };
    """))
    
            source = ofFile(new SourceFile("cpp", "sum.cpp", """
    #include "sum.h"
    
    int Sum::sum(int a, int b) {
        return a + b;
    }
    """))
    
        }
    
        @Override
        CppSum asLib() {
            return new CppSum("public")
        }
    
        @Override
        int sum(int a, int b) {
            return a + b
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/feature_lifecycle.adoc

    Continuous improvement combined with frequent delivery allows new features to be available to users early.
    Early users provide invaluable feedback, which is incorporated into the development process.
    
    Getting new functionality into the hands of users regularly is a core value of the Gradle platform.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  7. src/io/ioutil/example_test.go

    func ExampleTempDir_suffix() {
    	parentDir := os.TempDir()
    	logsDir, err := ioutil.TempDir(parentDir, "*-logs")
    	if err != nil {
    		log.Fatal(err)
    	}
    	defer os.RemoveAll(logsDir) // clean up
    
    	// Logs can be cleaned out earlier if needed by searching
    	// for all directories whose suffix ends in *-logs.
    	globPattern := filepath.Join(parentDir, "*-logs")
    	matches, err := filepath.Glob(globPattern)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 22 23:03:58 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/schedule.go

    			case v.Op == OpArg || v.Op == OpSP || v.Op == OpSB:
    				// We want all the args as early as possible, for better debugging.
    				score[v.ID] = ScoreArg
    			case v.Op == OpInitMem:
    				// Early, but after args. See debug.go:buildLocationLists
    				score[v.ID] = ScoreInitMem
    			case v.Type.IsMemory():
    				// Schedule stores as early as possible. This tends to
    				// reduce register pressure.
    				score[v.ID] = ScoreMemory
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 15:53:17 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/gcc/ArStaticLibraryArchiver.java

                // -r : Add files to static archive, creating if required
                // -c : Don't write message to standard error when creating archive
                // -s : Create an object file index (equivalent to running 'ranlib')
                args.add("-rcs");
                args.addAll(spec.getAllArgs());
                args.add(spec.getOutputFile().getAbsolutePath());
                for (File file : spec.getObjectFiles()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  10. platforms/extensibility/plugin-development/src/crossVersionTest/groovy/org/gradle/plugin/devel/PrecompiledGroovyPluginCrossVersionSpec.groovy

            then:
            result.output.contains("$PLUGIN_ID applied")
            result.output.contains("$PLUGIN_TASK executed")
        }
    
        def "can not use a precompiled script plugin with Gradle earlier than 5.0"() {
            Assume.assumeTrue(previous.version >= GradleVersion.version('3.5')) // because 3.4 does not yet support pluginManagement {} block
            Assume.assumeTrue(previous.version < GradleVersion.version('5.0'))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 4.3K bytes
    - Viewed (0)
Back to top