Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 343 for INTEGRATION (0.14 sec)

  1. tests/integration/iop-ambient-test-defaults.yaml

    # This file provides some defaults for integration testing.
    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    metadata:
      name: install
    spec:
      profile: ambient
      components:
        ingressGateways:
          - name: istio-ingressgateway
            enabled: true
      values:
        cni:
          ambient:
            # Some of the tests require DNS capture
            # For that, DNS capture must be enabled in the CNI
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 17:12:52 UTC 2024
    - 952 bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/test/integration/change_test.go

    limitations under the License.
    */
    
    package integration
    
    import (
    	"context"
    	"fmt"
    	"sync"
    	"testing"
    	"time"
    
    	apiextensionsv1 "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1"
    	"k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset"
    	"k8s.io/apiextensions-apiserver/test/integration/fixtures"
    	apierrors "k8s.io/apimachinery/pkg/api/errors"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 13:59:03 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  3. tests/integration/telemetry/tracing/zipkin/main_test.go

    	"testing"
    
    	"istio.io/istio/pkg/test/framework"
    	"istio.io/istio/pkg/test/framework/components/istio"
    	"istio.io/istio/pkg/test/framework/label"
    	"istio.io/istio/pkg/test/framework/resource"
    	"istio.io/istio/tests/integration/telemetry/tracing"
    )
    
    func TestMain(m *testing.M) {
    	framework.NewSuite(m).
    		Label(label.CustomSetup).
    		Setup(istio.Setup(tracing.GetIstioInstance(), setupConfig)).
    		Setup(tracing.TestSetup).
    		Run()
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 07 16:59:18 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl-integ-tests/build.gradle.kts

    plugins {
        id("gradlebuild.internal.kotlin")
        id("gradlebuild.kotlin-dsl-plugin-bundle-integ-tests")
    }
    
    description = "Kotlin DSL Integration Tests"
    
    dependencies {
        testImplementation(testFixtures(project(":kotlin-dsl")))
    
        integTestImplementation(projects.messaging)
        integTestImplementation(project(":base-services"))
        integTestImplementation(project(":core-api"))
        integTestImplementation(project(":core"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 22:44:42 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. build-logic/buildquality/build.gradle.kts

    dependencies {
        implementation("gradlebuild:basics")
    
        implementation(project(":cleanup"))
        implementation(project(":documentation"))
        implementation(project(":integration-testing"))
        implementation(project(":performance-testing"))
        implementation(project(":profiling"))
        implementation(project(":binary-compatibility"))
    
        implementation("org.codenarc:CodeNarc") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:29:44 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. platforms/core-runtime/native/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
        id("gradlebuild.jmh")
    }
    
    description = "This project contains various native operating system integration utilities"
    
    gradlebuildJava.usedInWorkers()
    
    /**
     * Use Java 8 compatibility for JMH benchmarks
     */
    tasks.named<JavaCompile>("jmhCompileGeneratedClasses") {
        options.release = 8
    }
    
    dependencies {
        api(projects.serviceProvider)
        api(project(":files"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  7. bin/update_crds.sh

      fail "Unable to generate the CRDs for ${GATEWAY_VERSION}. Not updating the CRD file.";
    fi
    
    rm -f "${ROOTDIR}/tests/integration/pilot/testdata/gateway-api-crd.yaml"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 14:28:27 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/build.gradle

                sampleDirectory = samplesRoot.dir("incubating/java/modules-multi-project-with-integration-tests")
                displayName = "Building Java Modules with Blackbox Tests with Test Suites (Incubating)"
                description = "Build Java Modules with blackbox integration tests using the new Test Suites API."
                category = "Java Modules"
                common {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 15:37:11 UTC 2024
    - 42K bytes
    - Viewed (0)
  9. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/health/memory/OsMemoryInfo.java

    @ServiceScope(Scope.Global.class)
    public interface OsMemoryInfo {
        /**
         * Get a snapshot of the memory status of the operating system.
         *
         * @return the snapshot
         * @throws UnsupportedOperationException if this integration does not support getting memory status
         */
        OsMemoryStatus getOsSnapshot() throws UnsupportedOperationException;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  10. platforms/extensibility/plugin-use/build.gradle.kts

        integTestImplementation(libs.groovyTest)
    
        integTestDistributionRuntimeOnly(project(":distributions-basics")) {
            because("Requires test-kit: 'java-gradle-plugin' is used in integration tests which always adds the test-kit dependency.")
        }
    }
    
    testFilesCleanup.reportOnly = true
    
    description = """Provides functionality for resolving and managing plugins during their application to projects."""
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top