Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

                lib.moduleMetadata.expectGet()
                lib.pom.expectGet()
                return lib
            }
            publishLib("lib-core", "1.0").with {
                it.rootMetaData.expectGet()
                it.artifact.expectGet()
            }
            publishLib("lib-core", "1.1")
            publishLib("lib-ext", "1.0").with {
                it.rootMetaData.expectGet()
                it.artifact.expectGet()
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 77.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/suppliers/DynamicRevisionRemoteResolveWithMetadataSupplierIntegrationTest.groovy

            statusFile << '''group:projectA:1.1;release
    group:projectA:1.2;release
    group:projectB:1.1;release
    group:projectB:2.2;integration
    '''
            server.expectGet("/repo/status.txt", statusFile)
            repositoryInteractions {
                'group:projectA' {
                    expectVersionListing()
                    '1.2' {
                        expectResolve()
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 11:46:17 UTC 2024
    - 49K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationSignatureCheckIntegTest.groovy

                }
            """
    
            when:
            module.pom.expectGet()
            module.getArtifact(type: 'pom.asc').expectGet()
            module.getArtifact(classifier: 'sources').expectHead()
            module.getArtifact(classifier: 'sources').expectGet()
            module.getArtifact(classifier: 'sources', type: 'jar.asc').expectGet()
            module.getArtifact(classifier: 'javadoc').expectHead()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 75.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

      EXPECT_NE(clusters["some_ctrl_input"], "");
      EXPECT_EQ(clusters["some_ctrl_input"], clusters["weights_0_update"]);
      EXPECT_EQ(clusters["some_ctrl_input"], clusters["weights_1_update"]);
      EXPECT_EQ(clusters["some_ctrl_input"], clusters["matmul_0"]);
      EXPECT_EQ(clusters["some_ctrl_input"], clusters["matmul_0"]);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  5. tensorflow/c/c_api_test.cc

      ASSERT_TRUE(out != nullptr);
      EXPECT_EQ(TF_FLOAT, TF_TensorType(out));
      EXPECT_EQ(2, TF_NumDims(out));
      EXPECT_EQ(4, TF_Dim(out, 0));
      EXPECT_EQ(1, TF_Dim(out, 1));
      float* values = static_cast<float*>(TF_TensorData(out));
      // These values are defined to be (input / 2) + 2.
      EXPECT_EQ(2, values[0]);
      EXPECT_EQ(2.5, values[1]);
      EXPECT_EQ(3, values[2]);
      EXPECT_EQ(3.5, values[3]);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    //
    //   EXPECT_NE(5, Foo());
    //   EXPECT_EQ(NULL, a_pointer);
    //   ASSERT_LT(i, array_size);
    //   ASSERT_GT(records.size(), 0) << "There is no record left.";
    
    #define EXPECT_EQ(expected, actual) \
      EXPECT_PRED_FORMAT2(::testing::internal:: \
                          EqHelper<GTEST_IS_NULL_LITERAL_(expected)>::Compare, \
                          expected, actual)
    #define EXPECT_NE(expected, actual) \
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/deadness_analysis_test.cc

        // produce the same deadness.  But we're not that smart today.
        EXPECT_EQ(predicate_map[ControlOutputFor(iv0)],
                  "{#true,&,*iv0/cond:0}<fr0>");
        EXPECT_EQ(predicate_map[ControlOutputFor(iv1)],
                  "{#true,&,*iv1/cond:0}<fr0>");
        EXPECT_EQ(predicate_map[ControlOutputFor(iv2)],
                  "{#true,&,*iv2/cond:0}<fr0>");
        EXPECT_EQ(predicate_map[ControlOutputFor(add0)],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/collect/MapsTest.java

        } catch (UnsupportedOperationException expected) {
        }
        try {
          unmod.replaceAll((k, v) -> v);
          fail("UnsupportedOperationException expected");
        } catch (UnsupportedOperationException expected) {
        }
        try {
          unmod.putIfAbsent(3, "three");
          fail("UnsupportedOperationException expected");
        } catch (UnsupportedOperationException expected) {
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 67.1K bytes
    - Viewed (0)
  9. pkg/controller/volume/attachdetach/cache/actual_state_of_world_test.go

    		t.Fatalf("RemoveVolumeFromReportAsAttached failed. Expected: <no error> Actual: <%v>", markDesireToDetachErr)
    	}
    	if addErr != nil {
    		t.Fatalf("AddVolumeNode failed. Expected: <no error> Actual: <%v>", addErr)
    	}
    
    	// Assert
    	attachedVolumes := asw.GetAttachedVolumes()
    	if len(attachedVolumes) != 1 {
    		t.Fatalf("len(attachedVolumes) Expected: <1> Actual: <%v>", len(attachedVolumes))
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 07:35:17 UTC 2024
    - 66.1K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/collect/SetsTest.java

        Set<Set<Integer>> expected = newHashSet();
        expected.add(ImmutableSet.<Integer>of());
        expected.add(ImmutableSet.of(1));
        expected.add(ImmutableSet.of(2));
        expected.add(ImmutableSet.of(3));
        expected.add(ImmutableSet.of(1, 2));
        expected.add(ImmutableSet.of(1, 3));
        expected.add(ImmutableSet.of(2, 3));
        expected.add(ImmutableSet.of(1, 2, 3));
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 49.2K bytes
    - Viewed (0)
Back to top