Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 4,047 for based (0.05 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/CharSequenceExtensions.kt

    }
    
    
    /**
     * Computes the 1-based line and column numbers from the given [range].
     */
    internal
    fun CharSequence.lineAndColumnFromRange(range: IntRange): Pair<Int, Int> {
        require(range.endInclusive <= lastIndex)
        return lineAndColumnFor(range.start)
    }
    
    
    /**
     * Computes the 1-based line and column numbers for the given [index].
     */
    internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/attributes/AttributeMatchingStrategy.java

        CompatibilityRuleChain<T> getCompatibilityRules();
    
        DisambiguationRuleChain<T> getDisambiguationRules();
    
        /**
         * <p>A short-hand way to define both a compatibility rule and
         * a disambiguation rule based on an order defined by the provided
         * {@link Comparator}.</p>
         *
         * <p>All provider values which are lower than or equal the consumer value are
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 11 20:41:53 UTC 2018
    - 2.2K bytes
    - Viewed (0)
  3. plugin/pkg/admission/admit/admission.go

    var _ admission.ValidationInterface = alwaysAdmit{}
    
    // Admit makes an admission decision based on the request attributes
    func (alwaysAdmit) Admit(ctx context.Context, a admission.Attributes, o admission.ObjectInterfaces) (err error) {
    	return nil
    }
    
    // Validate makes an admission decision based on the request attributes.  It is NOT allowed to mutate.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 16 11:54:27 UTC 2020
    - 2.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/ConstructorComparator.java

     * limitations under the License.
     */
    
    package org.gradle.internal.instantiation.generator;
    
    import java.util.Comparator;
    
    /**
     * Sorts GeneratedConstructors based on the number of parameters.
     *
     * When two constructors have the same number of parameters, we settle on a stable sort by looking at the names of the
     * types of the parameters.
     *
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. guava/src/com/google/common/eventbus/SubscriberExceptionContext.java

      private final Object subscriber;
      private final Method subscriberMethod;
    
      /**
       * @param eventBus The {@link EventBus} that handled the event and the subscriber. Useful for
       *     broadcasting a new event based on the error.
       * @param event The event object that caused the subscriber to throw.
       * @param subscriber The source subscriber context.
       * @param subscriberMethod the subscribed method.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 22 13:05:46 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/CompactHashing.java

      /** Maximum size of a compact hash-based collection (2^30 - 1 because 0 is UNSET). */
      static final int MAX_SIZE = Ints.MAX_POWER_OF_TWO - 1;
    
      /** Default size of a compact hash-based collection. */
      static final int DEFAULT_SIZE = 3;
    
      /**
       * Minimum size of the hash table of a compact hash-based collection. Because small hash tables
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 02 21:41:22 UTC 2021
    - 7.1K bytes
    - Viewed (0)
  7. docs/sts/tls.md

    A major advantage of certificate-based authentication compared to other STS authentication methods, like OpenID Connect or LDAP/AD, is that client authentication works without any additional/external component that must be constantly available. Therefore, certificate-based authentication may provide better availability / lower operational complexity.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/experimental/tac/README.md

    ![Target Optimization](g3doc/images/target_optimization.png)
    
    3  Estimate the costs for each subgraph (and their alternative views)
        based on the hardware cost model. See the following diagram.
        
    ![Estimate costs](g3doc/images/compute_cost.png)
    
    4 Pick the proper subgraphs from the alternative views for execution based on
    costs(computation costs, transfer costs, quant/dequant costs). As shown in the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 29 18:32:13 UTC 2022
    - 11.6K bytes
    - Viewed (0)
  9. testing/architecture-test/src/test/java/org/gradle/architecture/test/ConfigurationCreationTest.java

    @AnalyzeClasses(packages = "org.gradle")
    public final class ConfigurationCreationTest {
    
        /**
         * This test ensures that <strong>ONLY</strong> the role-based API is used to create configurations in Gradle core plugins.
         * <p>
         * It is important to maintain this condition, because the role-based API will allow us to (eventually) split
         * the implementation of configurations into separate classes per role.  If new configurations are created using
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  10. pkg/hbone/README.md

    # HTTP Based Overlay Network (HBONE)
    
    HTTP Based Overlay Network (HBONE) is the protocol used by Istio for communication between workloads in the mesh.
    At a high level, the protocol consists of tunneling TCP connections over HTTP/2 CONNECT, over mTLS.
    
    ## Specification
    
    TODO
    
    ## Implementations
    
    ### Clients
    
    #### CLI
    
    A CLI client is available using the `client` binary.
    
    Usage examples:
    
    ```shell
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 11 16:27:16 UTC 2022
    - 1.6K bytes
    - Viewed (0)
Back to top