Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 579 for expectGet (0.31 sec)

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

            """
    
            when:
            lib1.pom.expectGet()
            lib1.artifact.expectGet()
            lib2.pom.expectGet()
            lib2.artifact.expectGet()
            lib3.pom.expectGet()
            lib3.artifact.expectGet()
    
            lib4.pom.expectGet()
            lib4.artifact.expectGet()
            lib5.pom.expectGet()
            lib5.artifact.expectGet()
    
            then:
            run ':checkDeps'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 33K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionFeaturesIntegrationTest.groovy

                }
            """
            def configurationCache = newConfigurationCacheFixture()
    
            remoteRepo.getModuleMetaData("thing", "lib").expectGet()
            v3.pom.expectGet()
            v3.artifact.expectGet()
    
            when:
            configurationCacheRun("resolve1")
    
            then:
            configurationCache.assertStateStored()
            outputContains("result = [lib-1.3.jar]")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 33K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r35/BuildProgressCrossVersionSpec.groovy

            module.artifact.expectPublish(false)
            module.pom.expectPublish(false)
            module.rootMetaData.expectGet()
            module.rootMetaData.sha1.expectGet()
            module.rootMetaData.expectGet()
            module.rootMetaData.sha1.expectGet()
            module.rootMetaData.expectPublish(false)
    
            settingsFile << 'rootProject.name = "publish"'
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r73/DependencyArtifactDownloadProgressEventCrossVersionTest.groovy

            projectFModuleMissing.missing()
            def projectF2 = getMavenHttpRepo("/repo2").module('group', 'projectF', '2.0').publish()
            projectF2.pom.expectGet()
            projectF2.artifact.expectGet()
    
            initSettingsFile()
    
            buildFile << """
                allprojects {
                    apply plugin:'java-library'
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. tensorflow/c/while_loop_test.cc

      }
    
      void ExpectOK() {
        TF_FinishWhile(params_.get(), s_, &outputs_[0]);
        EXPECT_EQ(TF_OK, TF_GetCode(s_)) << TF_Message(s_);
      }
    
      void ExpectError(TF_Code expected_code, const string& expected_msg) {
        TF_FinishWhile(params_.get(), s_, &outputs_[0]);
        EXPECT_EQ(expected_code, TF_GetCode(s_));
        EXPECT_EQ(expected_msg, TF_Message(s_));
        // TODO(skyewm): this assert is currently broken. Fix or remove guarantee.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 11 06:05:56 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  9. pilot/pkg/leaderelection/leaderelection_test.go

    	expectInt(t, completions.Load, 2)
    
    	close(stop)
    }
    
    func expectInt(t *testing.T, f func() int32, expected int32) {
    	t.Helper()
    	retry.UntilSuccessOrFail(t, func() error {
    		got := f()
    		if got != expected {
    			return fmt.Errorf("unexpected count: %v, want %v", got, expected)
    		}
    		return nil
    	}, retry.Timeout(time.Second))
    }
    
    func TestLeaderElectionDisabled(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 04:22:19 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/api/v1/compile_tf_graph_test.cc

      TF_EXPECT_OK(CompileWithComputation(function_to_hlo_args).status());
    
      Histogram histogram =
          compilation_time.Delta("graph_old_bridge_has_function_to_hlo");
    
      EXPECT_EQ(histogram.num(), 1);
      EXPECT_EQ(compilation_status.Delta("kOldBridgeNoMlirSuccess"), 1);
    }
    
    TEST_F(CompileTFGraphTest, SuccessfullyCompilesWithManualSharding) {
      // MLIR module from failing test.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 08:08:57 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top