Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 55 for Grappler (0.32 sec)

  1. platforms/documentation/docs/src/docs/release/notes.md

    ## Upgrade instructions
    
    Switch your build to use Gradle @version@ by updating your wrapper:
    
    `./gradlew wrapper --gradle-version=@version@`
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 07:16:40 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/release/notes-template.md

    ## Upgrade instructions
    
    Switch your build to use Gradle @version@ by updating your wrapper:
    
    `./gradlew wrapper --gradle-version=@version@`
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 14:04:10 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/build.gradle.kts

        api(libs.jettyWebApp)
        api(libs.jsr305)
        api(libs.junit)
        api(libs.spock)
    
        implementation(project(":concurrent"))
        implementation(project(":logging-api"))
        implementation(project(":wrapper-shared"))
    
        implementation(libs.commonsIo)
        implementation(libs.commonsLang)
        implementation(libs.commonsMath)
        implementation(libs.groovyAnt)
        implementation(libs.groovyJson)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/build.gradle.kts

        api(project(":concurrent"))
        api(project(":enterprise-logging"))
        api(project(":stdlib-java-extensions"))
        api(project(":logging"))
        api(project(":messaging"))
        api(project(":time"))
        api(project(":wrapper-shared"))
    
        testFixturesImplementation(project(":core-api"))
        testFixturesImplementation(project(":core"))
        testFixturesImplementation(project(":logging"))
        testFixturesImplementation(project(":model-core"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/optimizing-performance/gradle_daemon.adoc

    When the task runs, it creates or updates the criteria in the `gradle/gradle-daemon-jvm.properties` file.
    For more control, the task can be further configured in the build script or via command-line arguments.
    
    As with the wrapper, the generated file should be checked into version control.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:43:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  6. guava-testlib/test/com/google/common/testing/ClassSanityTesterTest.java

        assertThrows(
            ParameterNotInstantiableException.class,
            () -> new ClassSanityTester().doTestEquals(SetWrapper.class));
      }
    
      private abstract static class Wrapper {
        private final Object wrapped;
    
        Wrapper(Object wrapped) {
          this.wrapped = checkNotNull(wrapped);
        }
    
        @Override
        public boolean equals(@Nullable Object obj) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  7. pilot/pkg/model/envoyfilter.go

    	networking "istio.io/api/networking/v1alpha3"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/labels"
    	"istio.io/istio/pkg/config/xds"
    	"istio.io/istio/pkg/util/sets"
    )
    
    // EnvoyFilterWrapper is a wrapper for the EnvoyFilter api object with pre-processed data
    type EnvoyFilterWrapper struct {
    	Name             string
    	Namespace        string
    	workloadSelector labels.Instance
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 13:57:28 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/build.gradle.kts

        runtimeOnly(project(":declarative-dsl-provider"))
        runtimeOnly(project(":problems"))
    
        runtimeOnly(libs.commonsIo)
        runtimeOnly(libs.commonsLang)
        runtimeOnly(libs.slf4jApi)
    
        // The wrapper expects the launcher Jar to have classpath entries that contain the main class and its runtime classpath
        manifestClasspath(project(":gradle-cli-main"))
    
        testImplementation(project(":internal-integ-testing"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. build-logic/integration-testing/src/main/kotlin/gradlebuild.cross-version-tests.gradle.kts

    fun configureTestFixturesForCrossVersionTests() {
        // do not attempt to find projects when the plugin is applied just to generate accessors
        if (project.name != "gradle-kotlin-dsl-accessors" && project.name != "test" /* remove once wrapper is updated */) {
            dependencies {
                "crossVersionTestImplementation"(testFixtures(project(":tooling-api")))
            }
        }
    }
    val releasedVersions = moduleIdentity.releasedVersions.orNull
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 06:17:20 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  10. .teamcity/subprojects.json

        "functionalTests": true,
        "crossVersionTests": false
      },
      {
        "name": "wrapper-main",
        "path": "platforms/core-runtime/wrapper-main",
        "unitTests": false,
        "functionalTests": true,
        "crossVersionTests": true
      },
      {
        "name": "wrapper-shared",
        "path": "platforms/core-runtime/wrapper-shared",
        "unitTests": true,
        "functionalTests": true,
        "crossVersionTests": false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 31.7K bytes
    - Viewed (0)
Back to top