Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 1,030 for multis (0.38 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/documentation/docs/src/snippets/mavenMigration/multiModule/groovy/settings.gradle

    rootProject.name = 'simple-multi-module'  // <1>
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 100 bytes
    - Viewed (0)
  9. manifests/charts/istio-cni/templates/network-attachment-definition.yaml

    {{- if eq .Values.cni.provider "multus" }}
    apiVersion: k8s.cni.cncf.io/v1
    kind: NetworkAttachmentDefinition
    metadata:
      name: {{ template "name" . }}
      namespace: default
      labels:
        operator.istio.io/component: "Cni"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:29 UTC 2024
    - 231 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/testing/test-suite-multi-configure-each/kotlin/build.gradle.kts

     * limitations under the License.
     */
    
    plugins {
        `java-library`
    }
    
    version = "1.0.0"
    group = "org.gradle.sample"
    
    repositories {
        mavenCentral()
    }
    
    // tag::multi-configure[]
    testing {
        suites {
            withType<JvmTestSuite> { // <1>
                useJUnitJupiter()
                dependencies { // <2>
                    implementation("org.mockito:mockito-junit-jupiter:4.6.1")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 12 16:44:31 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top