Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 284 for SAME (0.06 sec)

  1. platforms/core-runtime/functional/src/test/groovy/org/gradle/internal/collect/PersistentListTest.groovy

    import spock.lang.Specification
    
    class PersistentListTest extends Specification {
    
        def "empty lists are the same"() {
            expect:
            PersistentList.of() == PersistentList.of()
        }
    
        def "lists with elements #elements are the same"() {
            expect:
            listOf(elements) == listOf(elements)
    
            where:
            elements << [["a"], ["a", "b"]]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 09:24:00 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/KotlinComposableProvider.kt

     */
    
    package org.jetbrains.kotlin.analysis.api.platform
    
    /**
     * A marker interface for a provider that can be composed, i.e. multiple instances of the same provider can be composed into a single
     * provider.
     *
     * Composable providers share certain traits: There is a notion of a sequentially composed [KotlinCompositeProvider] of that kind, and there
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. guava-testlib/src/com/google/common/collect/testing/google/UnmodifiableCollectionTests.java

       * </ol>
       *
       * @param multimap the presumed-immutable multimap
       * @param sampleKey a key of the same type as that contained by {@code multimap}. {@code multimap}
       *     may or may not have {@code sampleKey} as a key.
       * @param sampleValue a key of the same type as that contained by {@code multimap}. {@code
       *     multimap} may or may not have {@code sampleValue} as a key.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 20:31:37 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/optimizing-performance/gradle_daemon.adoc

    $ gradle --status
    ----
    
    ----
       PID STATUS   INFO
     28486 IDLE     7.5
     34247 BUSY     7.5
    ----
    
    Currently, a given Gradle version can only connect to Daemons of the same version.
    This means the status output only shows Daemons spawned running the same version of Gradle as the current project.
    
    [[find_all_daemons]]
    == Find Daemons
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:43:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  5. tests/integration/pilot/gateway_test.go

            name: test-gateway-cert-cross
            namespace: "%s"
      - name: tls-same
        hostname: same-namespace.domain.example
        port: 443
        protocol: HTTPS
        allowedRoutes:
          namespaces:
            from: All
        tls:
          mode: Terminate
          certificateRefs:
          - kind: Secret
            name: test-gateway-cert-same
    `, apps.Namespace.Name())).
    		YAML(apps.Namespace.Name(), `
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

        std::string saved_model_dir = "");
    
    // Creates function pass to cluster TensorFlow ops by host. The program
    // generated by this pass will have one function per host where all operations
    // in the same function are placed on the same host. Each result of the per-host
    // function will have a "tf.device" attribute which specifies the device
    // assignment of the result.
    std::unique_ptr<OperationPass<mlir::ModuleOp>> CreateClusterTFOpsByHostPass();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ModuleDependency.java

         * in the dependencies of a given configuration.
         * For example, some other dependency, which does not have any exclude rules,
         * might pull in exactly the same transitive dependency.
         * To guarantee that the transitive dependency is excluded from the entire configuration
         * please use per-configuration exclude rules: {@link Configuration#getExcludeRules()}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 16:14:52 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  8. android/guava-testlib/src/com/google/common/collect/testing/google/UnmodifiableCollectionTests.java

       * </ol>
       *
       * @param multimap the presumed-immutable multimap
       * @param sampleKey a key of the same type as that contained by {@code multimap}. {@code multimap}
       *     may or may not have {@code sampleKey} as a key.
       * @param sampleValue a key of the same type as that contained by {@code multimap}. {@code
       *     multimap} may or may not have {@code sampleValue} as a key.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 20:31:37 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  9. pilot/pkg/model/destination_rule.go

    			// at the same time added as a unique entry in the processedDestRules.
    			if bothWithoutSelector || (rule.GetWorkloadSelector() != nil && selectorsMatch) {
    				addRuleToProcessedDestRules = false
    			}
    
    			// Deep copy destination rule, to prevent mutate it later when merge with a new one.
    			// This can happen when there are more than one destination rule of same host in one namespace.
    			copied := mdr.rule.DeepCopy()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 07:22:29 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/util/concurrent/AtomicDoubleArrayTest.java

      public void testConstructor2NPE() {
        double[] a = null;
        assertThrows(NullPointerException.class, () -> new AtomicDoubleArray(a));
      }
    
      /** constructor with array is of same size and has all elements */
      public void testConstructor2() {
        AtomicDoubleArray aa = new AtomicDoubleArray(VALUES);
        assertEquals(VALUES.length, aa.length());
        for (int i = 0; i < VALUES.length; i++) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 10.5K bytes
    - Viewed (0)
Back to top