Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 441 for lombok (0.11 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/UnsafeConfigurationResolutionDeprecationIntegrationTest.groovy

            executer.withArgument("--parallel")
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 20:27:07 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/worker_api.adoc

    ----
    include::{snippetsPath}/workerApi/md5CustomTask/groovy/src/hawking.txt[]
    ----
    
    At this point, you can test your task by running it `./gradlew md5`:
    
    [listing]
    ----
    $ gradle md5
    ----
    
    The output should look similar to:
    
    [listing]
    ----
    include::{snippetsPath}/workerApi/md5CustomTask/tests/md5Task1.out[]
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 28 13:41:08 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/declaring_repositories.adoc

    | Metadata source | Description | Order | Maven | Ivy / flat dir
    
    | `gradleMetadata()`
    | Look for Gradle `.module` files
    | 1st
    | yes
    | yes
    
    | `mavenPom()`
    | Look for Maven `.pom` files
    | 2nd
    | yes
    | yes
    
    | `ivyDescriptor()`
    | Look for `ivy.xml` files
    | 2nd
    | no
    | yes
    
    | `artifact()`
    | Look directly for artifact
    | 3rd
    | yes
    | yes
    |===
    
    --
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 43.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/declaring_dependencies.adoc

    It's worth noting that by default Gradle will first look for a POM file, but if this file contains a special marker, Gradle will use <<#sub:supported-md-gradle, Gradle Module Metadata>> instead.
    
    [[sub:supported-md-ivy]]
    === Ivy files
    
    Similarly, Gradle supports http://ant.apache.org/ivy/[Apache Ivy metadata files].
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 30.1K bytes
    - Viewed (0)
  5. maven-model-builder/src/main/java/org/apache/maven/model/interpolation/reflection/ClassMap.java

         * @return the class object whose methods are cached by this map.
         */
        Class<?> getCachedClass() {
            return clazz;
        }
    
        /**
         * <p>Find a Method using the methodKey provided.</p>
         * <p>Look in the methodMap for an entry. If found,
         * it'll either be a CACHE_MISS, in which case we
         * simply give up, or it'll be a Method, in which
         * case, we return it.</p>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 17 17:55:08 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/internal/passes/tpu_sharding_identification_pass.cc

        bool infer_from_computation, mlir::tf_device::ClusterFuncOp cluster_func,
        mlir::func::FuncOp func, Builder* builder,
        OptionalOpShardingVector& sharding_for_args) {
      // Look up function definition from module.
      Block& function_block = func.front();
    
      sharding_for_args.reserve(function_block.getNumArguments());
    
      // Iterate through operands of `cluster_func`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 02:01:13 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/testing_gradle_plugins.adoc

    ----
    include::{snippetsPath}/plugins/customPlugin/groovy/java-gradle-plugin/src/test/java/org/example/GreetingPluginTest.java[tag=test-plugin]
    ----
    
    [[integration-tests]]
    === Implementing integration tests
    
    Let's look at a class that reaches out to another system, the piece of code that emits the HTTP calls.
    At the time of executing a test for the class `DefaultHttpCaller`, the runtime environment needs to be able to reach out to the internet:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 22:49:20 UTC 2024
    - 16K bytes
    - Viewed (0)
  8. pkg/kubelet/volumemanager/cache/actual_state_of_world_test.go

    	verifyVolumeDoesntExistInGloballyMountedVolumes(t, generatedVolumeName, asw)
    }
    
    // Populates data struct with a volume
    // Calls AddPodToVolume() to add a pod to the volume
    // Verifies volume/pod combo exist using PodExistsInVolume()
    func Test_AddPodToVolume_Positive_ExistingVolumeNewNode(t *testing.T) {
    	// Arrange
    	volumePluginMgr, plugin := volumetesting.GetTestKubeletVolumePluginMgr(t)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/internal/changedetection/rules/OverlappingOutputsIntegrationTest.groovy

            assertTaskOutputCached(fileTask)
            assertTaskOutputNotCached(dirTask)
    
            when:
            cleanBuildDir()
            withBuildCache().run(dirTask, fileTask)
            then:
            // Outcome should look the same as if the build was run in the opposite order (fileTask then dirTask)
            fileTaskOutput.assertExists()
            dirTaskOutput.assertExists()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 20:54:14 UTC 2024
    - 30K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/internal/publicsuffix/PublicSuffixDatabase.kt

        val domainLabelsUtf8Bytes = Array(domainLabels.size) { i -> domainLabels[i].toByteArray() }
    
        // Start by looking for exact matches. We start at the leftmost label. For example, foo.bar.com
        // will look like: [foo, bar, com], [bar, com], [com]. The longest matching rule wins.
        var exactMatch: String? = null
        for (i in domainLabelsUtf8Bytes.indices) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top