Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 193 for Strategies (0.15 sec)

  1. src/html/template/context.go

    	// delimSpaceOrTagEnd occurs when a space or right angle bracket (>)
    	// closes the attribute.
    	delimSpaceOrTagEnd
    )
    
    // urlPart identifies a part in an RFC 3986 hierarchical URL to allow different
    // encoding strategies.
    type urlPart uint8
    
    //go:generate stringer -type urlPart
    
    const (
    	// urlPartNone occurs when not in a URL, or possibly at the start:
    	// ^ in "^http://auth/path?k=v#frag".
    	urlPartNone urlPart = iota
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  2. platforms/extensibility/test-kit/src/main/java/org/gradle/testkit/runner/GradleRunner.java

         * if the version of Gradle executing the build (i.e. not the version of the runner) is earlier than Gradle 2.8 as those versions do not support this feature.
         * Please consult the TestKit Gradle User Manual chapter alternative strategies that can be used for older Gradle versions.
         *
         * @return this
         * @see #withPluginClasspath(Iterable)
         * @see #getPluginClasspath()
         * @since 2.13
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  3. guava/src/com/google/common/hash/BloomFilter.java

            this.bitSize(),
            that.bitSize());
        checkArgument(
            this.strategy.equals(that.strategy),
            "BloomFilters must have equal strategies (%s != %s)",
            this.strategy,
            that.strategy);
        checkArgument(
            this.funnel.equals(that.funnel),
            "BloomFilters must have equal funnels (%s != %s)",
            this.funnel,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/hash/BloomFilter.java

            this.bitSize(),
            that.bitSize());
        checkArgument(
            this.strategy.equals(that.strategy),
            "BloomFilters must have equal strategies (%s != %s)",
            this.strategy,
            that.strategy);
        checkArgument(
            this.funnel.equals(that.funnel),
            "BloomFilters must have equal funnels (%s != %s)",
            this.funnel,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/grappler/grappler.h

    // simulation or scheduling.
    // If aggressive_shape_inference is true, nodes are executed on the host to
    // identify output values when possible and does other aggressive strategies.
    // This may cause incorrectness in graph analyses, but is useful for simulation
    // or scheduling.
    // If include_input_tensor_values is true, the values of constant
    // tensors will included in the input properties.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 03 18:08:43 UTC 2022
    - 12.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/directory_layout.adoc

    By default, the cleanup runs in the background when the Gradle daemon is stopped or shut down.
    
    If using `--no-daemon`, it runs in the foreground after the build session.
    
    The following cleanup strategies are applied periodically (by default, once every 24 hours):
    
    - Version-specific caches in all `caches/<GRADLE_VERSION>/` directories are checked for whether they are still in use.
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 23:00:38 UTC 2024
    - 13K bytes
    - Viewed (0)
  7. helm/minio/README.md

    ```
    
    Then change the field `image.tag` in `old_values.yaml` file with MinIO image tag you want to use. Now update the chart using
    
    ```bash
    helm upgrade -f old_values.yaml my-release minio/minio
    ```
    
    Default upgrade strategies are specified in the `values.yaml` file. Update these fields if you'd like to use a different strategy.
    
    ### Configuration
    
    Refer the [Values file](./values.yaml) for all the possible config fields.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jan 24 07:27:57 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_ivy.adoc

    [[publishing_ivy:resolved_dependencies]]
    === Customizing dependencies versions
    
    Two strategies are supported for publishing dependencies:
    
    Declared versions (default)::
    This strategy publishes the versions that are defined by the build script author with the dependency declarations in the `dependencies` block.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_groovy_to_kotlin_dsl.adoc

    If your build is a multi-project build, like mostly all *Android* builds for example, please also read the subsequent section about <<kotlin_dsl.adoc#sec:multi_project_builds,multi-project builds>>.
    
    Finally, there are strategies to <<kotlin_dsl.adoc#sec:plugins_resolution_strategy,use the `plugins {}` block with plugins that aren't published with the correct metadata>>, such as the *Android* Gradle Plugin.
    --
    
    [[configuration-avoidance]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ResolutionStrategy.java

     */
    
    package org.gradle.api.artifacts;
    
    import org.gradle.api.Action;
    import org.gradle.api.provider.Property;
    
    import java.util.Set;
    import java.util.concurrent.TimeUnit;
    
    /**
     * Defines the strategies around dependency resolution.
     * For example, forcing certain dependency versions, substitutions, conflict resolutions or snapshot timeouts.
     * <p>
     * Examples:
     * <pre class='autoTested'>
     * plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 17 13:05:50 UTC 2022
    - 16K bytes
    - Viewed (0)
Back to top