Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 201 for Views (0.04 sec)

  1. guava/src/com/google/common/collect/Multimaps.java

       * predicate. The returned multimap is a live view of {@code unfiltered}; changes to one affect
       * the other.
       *
       * <p>The resulting multimap's views have iterators that don't support {@code remove()}, but all
       * other methods are supported by the multimap and its views. When adding a key that doesn't
       * satisfy the predicate, the multimap's {@code put()}, {@code putAll()}, and {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  2. test-site/test/ApplicationTest.java

    public class ApplicationTest {
    
        @Test
        public void simpleCheck() {
            int a = 1 + 1;
            assertThat(a).isEqualTo(2);
        }
    
        @Test
        public void renderTemplate() {
            Content html = views.html.index.render("Your new application is ready.");
            assertThat(contentType(html)).isEqualTo("text/html");
            assertThat(contentAsString(html)).contains("Your new application is ready.");
        }
    
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 1.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/binding/StructBindings.java

     * </p>
     *
     * <ul>
     *     <li>a public type (can be fully or partially abstract)</li>
     *     <li>zero or more internal views (declared as interfaces)</li>
     *     <li>an optional delegate type (must be a concrete type)</li>
     * </ul>
     *
     * <p>
     * When a struct type node is projected as one of its views, each method in the view must be implemented. These bindings
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/adapter/ProtocolToModelAdapterTest.groovy

            expect:
            def model = adapter.adapt(TestModel.class, protocolModel)
            model.project.is(model.project)
            model.children.is(model.children)
        }
    
        def "reuses views for each object in backing graph"() {
            TestProtocolModel protocolModel = Mock()
            TestProtocolProject protocolProject = Mock()
            _ * protocolModel.getProject() >> protocolProject
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 21.9K bytes
    - Viewed (0)
  5. testing/smoke-test/src/smokeTest/groovy/org/gradle/play/integtest/fixtures/external/PlayApp.groovy

            sourceFiles("public", "shared")
        }
    
        List<SourceFile> getAppSources() {
            return sourceFiles("app").findAll {
                it.path != "app/views"
            }
        }
    
        List<SourceFile> getViewSources() {
            return sourceFiles("app/views");
        }
    
        List<SourceFile> getConfSources() {
            return sourceFiles("conf", "shared") + sourceFiles("conf")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. platforms/software/platform-base/src/main/java/org/gradle/platform/base/TypeBuilder.java

         * @param implementation the implementation class.
         */
        TypeBuilder<T> defaultImplementation(Class<?> implementation);
    
        /**
         * Allows type registration rules to add internal views to the registered type.
         * @param internalView the internal view class
         */
        TypeBuilder<T> internalView(Class<?> internalView);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/ops/gen/cpp/views/arg_view.h

    #ifndef TENSORFLOW_C_EXPERIMENTAL_OPS_GEN_CPP_VIEWS_ARG_VIEW_H_
    #define TENSORFLOW_C_EXPERIMENTAL_OPS_GEN_CPP_VIEWS_ARG_VIEW_H_
    
    #include "tensorflow/c/experimental/ops/gen/cpp/views/arg_type_view.h"
    #include "tensorflow/c/experimental/ops/gen/model/arg_spec.h"
    #include "tensorflow/core/platform/types.h"
    
    namespace tensorflow {
    namespace generator {
    namespace cpp {
    
    class ArgView {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 15 18:23:40 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/Table.java

     * worse performance than data access by row key.
     *
     * <p>The methods returning collections or maps always return views of the underlying table.
     * Updating the table can change the contents of those collections, and updating the collections
     * will change the table.
     *
     * <p>All methods that modify the table are optional, and the views returned by the table may or may
     * not be modifiable. When modification isn't supported, those methods will throw an {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Jun 17 14:40:53 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/ManagedImplSchema.java

    /**
     * The schema for a fully managed element. This means that we have control over all aspects of the lifecycle of the element: the actual
     * implementation of the element, plus the implementation and instantiation of views for the instance.
     */
    public interface ManagedImplSchema<T> extends ModelSchema<T> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 979 bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/Multimap.java

       *
       * <p>A non-empty {@link SetMultimap} cannot be equal to a non-empty {@link ListMultimap}, since
       * their {@link #asMap} views contain unequal collections as values. However, any two empty
       * multimaps are equal, because they both have empty {@link #asMap} views.
       */
      @Override
      boolean equals(@CheckForNull Object obj);
    
      /**
       * Returns the hash code for this multimap.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Jun 17 14:40:53 UTC 2023
    - 15.9K bytes
    - Viewed (0)
Back to top