Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 5,637 for need (0.68 sec)

  1. Makefile

    # to build the repo. The only dependencies in this mode are to have make and
    # docker. If you'd rather build with a local tool chain instead, you'll need to
    # figure out all the tools you need in your environment to make that work.
    export BUILD_WITH_CONTAINER ?= 0
    
    ifeq ($(BUILD_WITH_CONTAINER),1)
    
    # An export free of arguments in a Makefile places all variables in the Makefile into the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 11 18:29:15 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/providers/implicitTaskInputDependency/groovy/build.gradle

        // Set values for the producer lazily
        // Don't need to update the consumer.inputFile property. This is automatically updated as producer.outputFile changes
        outputFile = layout.buildDirectory.file('file.txt')
    }
    tasks.register('consumer', Consumer) {
        // Connect the producer task output to the consumer task input
        // Don't need to add a task dependency to the consumer task. This is automatically added
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1K bytes
    - Viewed (0)
  3. dbflute_fess/dfprop/outsideSqlMap.dfprop

        #  Basically you don't need this.
        #
        #; sqlFileEncoding = UTF-8
        # - - - - - - - - - -/
    
        # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        # o sqlDirectory: (NotRequired - Default generateOutputDirectory & resourceOutputDirectory)
        #  The directory of SQL file for outsideSql.
        #  Basically you don't need this if your directory structure is same as default.
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Jul 25 06:04:16 UTC 2015
    - 8K bytes
    - Viewed (0)
  4. platforms/enterprise/enterprise-plugin-performance/README.md

    scan plugin in `../incoming/plugin.json`.  On CI, this file is populated as an artifact dependency from an upstream build.  To run locally, you will need to set this value whatever version of the build scan plugin you want to test with (whatever value is in source control is likely quite out of date).  Note also that when this value changes, you will need to clean and recreate the test projects in `templates.gradle`....
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:38:06 UTC 2023
    - 716 bytes
    - Viewed (0)
  5. dbflute_fess/dfprop/basicInfoMap.dfprop

        #  The base output directory for generating.
        #  Basically you don't need to specify this if the project style is as follows:
        #
        #   *Java Project Style
        #     If this value is '../src/main/java' and your project is under the Maven,
        #     you don't need to set up this property!
        #
        #     {app-project}
        #         |
        #         |-dbflute_[project]
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Oct 31 23:35:14 UTC 2015
    - 9.2K bytes
    - Viewed (0)
  6. proguard/collect.pro

    # fields to be stripped if it's unused: -keepclassmembernames says that, *if*
    # you're keeping the fields, you need to leave their names untouched. (Anyone
    # who is using ImmutableMultimap will certainly be using its fields. So we
    # don't need to worry that an ImmutableMultimap user will have the fields
    # optimized away.)
    #
    # This configuration is untested....
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 09 00:29:01 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. platforms/core-runtime/instrumentation-declarations/build.gradle.kts

    dependencies {
        // All dependencies should be compileOnly, since this project is added also to worker classpath, so we don't pollute it.
        // If we need some dependency also at runtime we need to build a separate classpath and add it to :launcher project or :distributions-core project directly.
        compileOnly(project(":core"))
        compileOnly(projects.stdlibJavaExtensions)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/internal/publicsuffix/PublicSuffixListGenerator.kt

       * the implementation will need to be revisited to support a more flexible rule.
       */
      private fun assertWildcardRule(rule: String) {
        check(rule.startsWith(WILDCARD_CHAR)) {
          """Wildcard Assertion Failure: '$rule'
    A wildcard rule was added with a wildcard that is not in leftmost position! We'll need to change the ${PublicSuffixDatabase::class.java.name} to handle this."""
        }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 18 01:24:38 UTC 2024
    - 6K bytes
    - Viewed (0)
  9. maven-compat/src/main/java/org/apache/maven/project/MavenProjectBuilder.java

                throws ProjectBuildingException;
    
        // TODO this is only to provide a project for plugins that don't need a project to execute but need some
        // of the values from a MavenProject. Ideally this should be something internal and nothing outside Maven
        // would ever need this so it should not be exposed in a public API
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  10. src/reflect/float32reg_riscv64.s

    	MOVF	val+0(FP), F1
    	MOVD	F1, ret+8(FP)
    	RET
    
    // Convert uint64->float32
    TEXT ·archFloat32FromReg(SB),NOSPLIT,$0-12
    	// Normally a float64->float32 conversion
    	// would need rounding, but riscv64 store valid
    	// float32 in the lower 32 bits, thus we only need to
    	// unboxed the NaN-box by store a float32.
    	MOVD	reg+0(FP), F1
    	MOVF	F1, ret+8(FP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 04 13:38:32 UTC 2022
    - 794 bytes
    - Viewed (0)
Back to top