Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 39 for assertbig (0.42 sec)

  1. platforms/ide/ide-native/src/testFixtures/groovy/org/gradle/ide/xcode/fixtures/ProjectFile.groovy

            }
    
            void assertIsTool() {
                assertIs(ProductType.TOOL)
                this.buildConfigurationList.buildConfigurations.each { ProjectFile.PBXTarget.assertNotUnitTestBuildSettings(it.buildSettings) }
            }
    
            void assertIsDynamicLibrary() {
                assertIs(ProductType.DYNAMIC_LIBRARY)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolutionstrategy/DefaultCachePolicySpec.groovy

            expect:
            cachePolicy.eachModule(new Action<ModuleResolutionControl>() {
                void execute(ModuleResolutionControl t) {
                    assertId(t.request, 'g', 'n', 'v')
                    assertId(t.cachedResult.id, 'group', 'name', 'version')
                    assert !t.changing
                    t.refresh()
                }
            })
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 30 22:04:14 UTC 2023
    - 22.3K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/GradleExecuter.java

                }
            });
        }
    
        /**
         * Executes the requested build, asserting that the build succeeds. Resets the configuration of this executer.
         *
         * @return The result.
         */
        ExecutionResult run();
    
        /**
         * Executes the requested build, asserting that the build fails. Resets the configuration of this executer.
         *
         * @return The result.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/python/representative_dataset_test.py

        sample = {'input_tensor': input_tensor_value}
    
        feed_dict = repr_dataset.create_feed_dict_from_input_data(
            sample, signature_def
        )
    
        self.assertLen(feed_dict, 1)
        self.assertIn('input:0', feed_dict)
        self.assertAllEqual(feed_dict['input:0'], input_tensor_value)
    
      @test_util.deprecated_graph_mode_only
      def test_create_feed_dict_from_input_data_core_tensors(self):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 04 07:35:19 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/internal/ws/WebSocketReaderTest.kt

        data.write("8900".decodeHex()) // Empty ping
        clientReader.processNextFrame()
        callback.assertPing(EMPTY)
      }
    
      @Test fun pingCallsCallback() {
        data.write("890548656c6c6f".decodeHex()) // Ping with "Hello"
        clientReader.processNextFrame()
        callback.assertPing("Hello".encodeUtf8())
      }
    
      @Test fun emptyCloseCallsCallback() {
        data.write("8800".decodeHex()) // Empty close
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  6. pilot/pkg/simulation/traffic.go

    	ClusterMatched     string
    	// StrictMatch controls whether we will strictly match the result. If unset, empty fields will
    	// be ignored, allowing testing only fields we care about This allows asserting that the result
    	// is *exactly* equal, allowing asserting a field is empty
    	StrictMatch bool
    	// If set, this will mark a test as skipped. Note the result is still checked first - we skip only
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AbstractContinuousIntegrationTest.groovy

                    }
                }
            }
        }
    
        void noBuildTriggered(int waitSeconds = 3) {
            // TODO - change this general strategy to positively detect changes we are ignoring instead of asserting that a build doesn't happen in some time frame
            try {
                ConcurrentTestUtil.poll(waitSeconds, 0.5) {
                    // force the poll to continue while there is no output
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/check_control_dependencies.cc

                                       int path_idx) {
      std::vector<IslandOp> path;
      bool found_path = FindPathBfs(source_op, target_op, path);
      if (!found_path) {
        // This shouldn't happen, returning an error instead of asserting so it
        // doesn't go unnoticed if it ever happens.
        target_op.emitError("no path to target op found, cannot emit warnings");
        return;
      }
    
      // Emit warnings for path.
      int node_idx = 0;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 05 23:50:19 UTC 2022
    - 10.2K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/HttpServer.groovy

         */
        void expectHead(String path, File srcFile) {
            expect(path, false, ['HEAD'], fileHandler(path, srcFile))
        }
    
        /**
         * Expects one HEAD request for the given URL, asserting that the request is revalidated.
         */
        void expectHeadRevalidate(String path, File srcFile) {
            expect(path, false, ['HEAD'], revalidateFileHandler(path, srcFile))
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  10. guava-testlib/src/com/google/common/collect/testing/google/UnmodifiableCollectionTests.java

    import java.util.Iterator;
    import java.util.List;
    import java.util.Map.Entry;
    import java.util.Set;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * A series of tests that support asserting that collections cannot be modified, either through
     * direct or indirect means.
     *
     * @author Robert Konigsberg
     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    public class UnmodifiableCollectionTests {
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 20:31:37 UTC 2024
    - 14.7K bytes
    - Viewed (0)
Back to top