Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,691 for expectGet (0.35 sec)

  1. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/WatchedDirectoriesFileSystemWatchingIntegrationTest.groovy

                }
            """
            executer.beforeExecute { inDirectory(projectDir) }
    
            remoteModule.pom.expectHead()
            remoteModule.pom.sha1.expectGet()
            remoteModule.artifact.expectHead()
            remoteModule.artifact.sha1.expectGet()
    
            when:
            using m2
            withWatchFs().run 'retrieve', "--info"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolveConfigurationDependenciesBuildOperationIntegrationTest.groovy

                   compile 'org:a:1.0'
                   compile 'org:b:1.0'
                }
    """
            failedResolve.prepare()
    
            a.pom.expectGet()
            b.pom.expectGet()
            leaf1.pom.expectGet()
            leaf2.pom.expectGet()
    
            then:
            fails "checkDeps"
    
            and:
            failedResolve.assertFailurePresent(failure)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyModuleResolveIntegrationTest.groovy

        into "libs"
    }
    """
    
            when:
            moduleWithNoMetaData.ivy.expectGetMissing()
            moduleWithNoMetaData.jar.expectHead()
            moduleWithMetaData.ivy.expectGet()
            moduleWithMetaData.jar.expectGet()
            succeeds "retrieve"
    
            then:
            file("libs").assertHasDescendants("test-1.45.jar")
            file("libs/test-1.45.jar").assertIsCopyOf(moduleWithMetaData.jarFile)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 19:13:04 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolvedConfigurationIntegrationTest.groovy

                        println "evaluating:"
                        compile.${expression}
                    }
                }
            """
    
            m1.allowAll()
            m2.pom.expectGet()
            m2.artifact.expectGetMissing()
            m3.pom.expectGet()
            m3.artifact.expectGetBroken()
            m4.allowAll()
    
            expect:
            //TODO: fix dependency resolution results usage in this test and remove this flag
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/HttpServer.groovy

                            return
                        }
                    }
                    if (expectedContentLength > -1) {
                        if (request.contentLength != expectedContentLength) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/GradleKotlinDslIntegrationTest.kt

                    """
                    apply {
                        from("${server.uri}/script.gradle")
                    }
                    """
                )
    
                server.expectGet("/script.gradle", scriptFile)
    
                assertThat(
                    build("-q", "hello").output,
                    containsString("Hello!")
                )
    
                server.stop()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 18:26:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  7. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/MavenConversionIntegrationTest.groovy

        }
    
        static PomHttpArtifact expectParentPomRequest(MavenHttpRepository repo) {
            MavenHttpModule module = repo.module('util.util.parent', 'util-parent', '3')
            module.pom.expectGet()
            module.pom.sha1.expectGet()
            module.pom
        }
    
        MavenHttpRepository mavenHttpServer() {
            server.start()
            new MavenHttpRepository(server, '/maven', maven(file("maven_repo")))
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 14 15:23:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  8. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishHttpIntegTest.groovy

            module.rootMetaData.sha512.expectPut(credentials)
            module.rootMetaData.md5.expectPut(credentials)
            module.pom.expectPut(credentials)
            module.pom.sha1.expectPut(credentials)
            module.pom.sha256.expectPut(credentials)
            module.pom.sha512.expectPut(credentials)
            module.pom.md5.expectPut(credentials)
            module.moduleMetadata.expectPut(credentials)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/utils/tpu_rewrite_device_util_test.cc

      EXPECT_EQ(computation_device_0.replica_device_ids(0), 0);
      EXPECT_EQ(computation_device_0.replica_device_ids(1), 4);
      EXPECT_EQ(computation_device_0.replica_device_ids(2), 2);
      EXPECT_EQ(computation_device_0.replica_device_ids(3), 6);
      EXPECT_EQ(computation_device_1.replica_device_ids(0), 1);
      EXPECT_EQ(computation_device_1.replica_device_ids(1), 5);
      EXPECT_EQ(computation_device_1.replica_device_ids(2), 3);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 26 09:37:10 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/xla_compiler_options_util_test.cc

          *device_setup_.flr(), device, platform_info,
          /*pjrt_device_compiler=*/nullptr);
    
      EXPECT_EQ(options.device_type, compilation_device_type);
      EXPECT_EQ(options.device_ordinal, 0);
      EXPECT_NE(options.flib_def, nullptr);
      EXPECT_EQ(options.graph_def_version, TF_GRAPH_DEF_VERSION);
      EXPECT_FALSE(options.allow_cpu_custom_calls);
      EXPECT_FALSE(options.alias_passthrough_params);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Dec 29 01:41:20 UTC 2023
    - 14.8K bytes
    - Viewed (0)
Back to top