Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 5,637 for need (0.04 sec)

  1. maven-core/lifecycle-executor.txt

              <editable>true</editable>
            </parameter>
          </parameters>
    
    - we need to know what came from the POM, and validate those
    - plugin in any default values
    - check to see if anything is missing
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jul 18 17:22:19 UTC 2022
    - 9.7K bytes
    - Viewed (0)
  2. test/escape_array.go

    	_ = u[0]
    	return &b
    }
    
    // BAD: need fine-grained analysis to track u[0] and u[1] differently.
    func tbff2() *string {
    	a := "cat" // ERROR "moved to heap: a$"
    	b := "dog" // ERROR "moved to heap: b$"
    	u := bff(&a, &b)
    	_ = u[0]
    	return u[1]
    }
    
    func car(x U) *string { // ERROR "leaking param: x to result ~r0 level=0$"
    	return x[0]
    }
    
    // BAD: need fine-grained analysis to track x[0] and x[1] differently.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 26 23:50:32 UTC 2021
    - 3.6K bytes
    - Viewed (0)
  3. samples/custom-bootstrap/README.md

    ## Starting the service
    
    First, we need to create a `ConfigMap` resource with our bootstrap configuration.
    
    ```bash
    kubectl apply -f custom-bootstrap.yaml
    ```
    
    Next, we can create a service that uses this bootstrap configuration.
    
    To do this, we need to add an annotation, `sidecar.istio.io/bootstrapOverride`, with the name of our ConfigMap as the value.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 22:34:00 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/analysis-api-fir-generator/build.gradle.kts

        implementation(project(":analysis:analysis-api"))
    
        implementation(commonDependency("org.jetbrains.kotlin:kotlin-reflect")) { isTransitive = false }
    
        /*
         We do not need guava in the generator, but because of a bug in the IJ project importing, we need to have a dependency on intellijCore
         the same as it is in `:fir:tree:tree-generator` module to the project be imported correctly
         */
        compileOnly(intellijCore())
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 18 18:42:40 UTC 2023
    - 1K bytes
    - Viewed (0)
  5. docs/en/docs/tutorial/background-tasks.md

    ## Caveat
    
    If you need to perform heavy background computation and you don't necessarily need it to be run by the same process (for example, you don't need to share memory, variables, etc), you might benefit from using other bigger tools like <a href="https://docs.celeryq.dev" class="external-link" target="_blank">Celery</a>.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  6. architecture/standards/0003-avoid-introducing-Groovy-types-to-public-api.md

    Doing this provides the following specific benefits:
    - **Reduce the API surface** - We no longer need to maintain two methods.
    - **Consistency** - All languages have consistent access to the same APIs and ergonomics in the DSL.
    - **Reduce the size of the Gradle distribution** - We no longer need to carry multiple standard libraries for different languages.
    
    ## Decision
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 10 20:38:06 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. util/gradle_integration_tests.sh

    # Please commit your changes or stash them before you switch branches.
    
    GRADLE_TEMP="$(mktemp -d)"
    trap 'rm -rf "${GRADLE_TEMP}"' EXIT
    
    # The Gradle tests need the pom.xml only to read its version number.
    # (And the file needs to be two directory levels up from the Gradle build file.)
    # TODO(cpovirk): Find a better way to give them that information.
    cp pom.xml "${GRADLE_TEMP}"
    
    for version in 5.6.4 7.0.2; do
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 16 20:48:20 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/ServerWithExpectations.groovy

    import org.junit.rules.ExternalResource
    import org.slf4j.Logger
    
    /**
     * This test fixture needs to be thread-safe for all operations that are done at execution time:
     *
     * - defining expectations is done serially in 'given', 'when' blocks, so doesn't need to be thread-safe
     * - but handlers, as well as failures, need to be thread-safe
     *
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/providers/implicitTaskInputDependency/kotlin/build.gradle.kts

        // 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)
  10. dbflute_fess/dfprop/littleAdjustmentMap.dfprop

        #  The list of table DB names that need to be quoted. Specified tables is quoted on auto-generated SQL.
        #
        #; quoteTableNameList = list:{}
        # - - - - - - - - - -/
    
        # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        # o quoteColumnNameList: (NotRequired - Default list:{})
        #  The list of column DB names that need to be quoted. Specified columns is quoted on auto-generated SQL.
        #
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Jul 25 06:04:16 UTC 2015
    - 8.8K bytes
    - Viewed (0)
Back to top