Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 1,261 for multis (0.13 sec)

  1. platforms/documentation/docs/src/docs/userguide/jvm/jvm_test_suite_plugin.adoc

    ====
    include::sample[dir="snippets/testing/test-suite-multi-configure-each/kotlin",files="build.gradle.kts[tags=multi-configure]"]
    include::sample[dir="snippets/testing/test-suite-multi-configure-each/groovy",files="build.gradle[tags=multi-configure]"]
    ====
    
    <1> Configure every JVM test suite
    <2> Provide the dependencies to be shared by all test suites
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 14:47:11 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/ImmutableMultiset.java

        Multiset<E> multiset = LinkedHashMultiset.create();
        Iterators.addAll(multiset, elements);
        return copyFromEntries(multiset.entrySet());
      }
    
      private static <E> ImmutableMultiset<E> copyFromElements(E... elements) {
        Multiset<E> multiset = LinkedHashMultiset.create();
        Collections.addAll(multiset, elements);
        return copyFromEntries(multiset.entrySet());
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 08 03:01:02 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/java/modules-multi-project/groovy/settings.gradle

    rootProject.name = 'modules-multi-project'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86 bytes
    - Viewed (0)
  4. pilot/pkg/features/experimental.go

    		"The group to be used for the Kubernetes Multi-Cluster Services (MCS) API.").Get()
    
    	MCSAPIVersion = env.Register("MCS_API_VERSION", "v1alpha1",
    		"The version to be used for the Kubernetes Multi-Cluster Services (MCS) API.").Get()
    
    	EnableMCSAutoExport = env.Register(
    		"ENABLE_MCS_AUTO_EXPORT",
    		false,
    		"If enabled, istiod will automatically generate Kubernetes "+
    			"Multi-Cluster Services (MCS) ServiceExport resources for every "+
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/testing/test-suite-multi-configure-each-extracted/groovy/build.gradle

     * limitations under the License.
     */
    
    plugins {
        id 'java-library'
    }
    
    version = '1.0.0'
    group = 'org.gradle.sample'
    
    repositories {
        mavenCentral()
    }
    
    // tag::multi-configure[]
    testing {
        suites {
            def applyMockito = { suite -> // <1>
                suite.useJUnitJupiter()
                suite.dependencies {
                    implementation('org.mockito:mockito-junit-jupiter:4.6.1')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/internal/logging_hooks.cc

    // Setup the input pass manager to enable IR dumping after each pass.
    // Note a side effect of this method is that multi threading will be disabled.
    void EnablePassIRPrinting(PassManager& pm, const std::string& dump_group_name,
                              llvm::StringRef module_name) {
      // Print the whole module after each pass, which requires disabling
      // multi-threading as well.
      pm.getContext()->disableMultithreading();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 05 14:26:22 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/java/jvm-multi-project-with-toolchains/groovy/settings.gradle

    rootProject.name = 'multi-project-with-toolchains'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 94 bytes
    - Viewed (0)
  8. testing/internal-performance-testing/src/test/groovy/org/gradle/performance/results/BaselineVersionTest.groovy

            DataSeries.confidenceInDifference(first.results.getTotalTime(), second.results.totalTime)
        }
    
        MeasuredOperation millis(long millis) {
            new MeasuredOperation(totalTime: Duration.millis(millis))
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/incubating/java/modules-multi-project-with-integration-tests/groovy/settings.gradle

    rootProject.name = 'modules-multi-project-with-integration-tests'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 109 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/java/modules-multi-project-with-integration-tests/groovy/settings.gradle

    rootProject.name = 'modules-multi-project-with-integration-tests'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 109 bytes
    - Viewed (0)
Back to top