Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 93 for Views (0.06 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/binding/ManagedProperty.java

     * managed property is detected when the view schemas declaring the struct declare a property with only abstract accessor
     * methods. This means that accessors declaring the property in the views should all be abstract, and the delegate type (if any)
     * should not provide an implementation for any of the property's accessor methods either.</p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/ops/gen/cpp/views/BUILD

    package(
        # copybara:uncomment default_applicable_licenses = ["//tensorflow:license"],
        default_visibility = ["//visibility:private"],
        licenses = ["notice"],
    )
    
    cc_library(
        name = "views",
        srcs = glob(
            ["*.cc"],
            exclude = ["*_test.cc"],
        ),
        hdrs = glob(["*.h"]),
        visibility = ["//tensorflow/c/experimental/ops/gen/cpp/renderers:__pkg__"],
        deps = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 07:02:00 UTC 2024
    - 731 bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/HashBasedTable.java

    import java.io.Serializable;
    import java.util.LinkedHashMap;
    import java.util.Map;
    
    /**
     * Implementation of {@link Table} using linked hash tables. This guarantees predictable iteration
     * order of the various views.
     *
     * <p>The views returned by {@link #column}, {@link #columnKeySet()}, and {@link #columnMap()} have
     * iterators that don't support {@code remove()}. Otherwise, all optional operations are supported.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 24 17:47:51 UTC 2022
    - 4K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/HashBasedTable.java

    import java.io.Serializable;
    import java.util.LinkedHashMap;
    import java.util.Map;
    
    /**
     * Implementation of {@link Table} using linked hash tables. This guarantees predictable iteration
     * order of the various views.
     *
     * <p>The views returned by {@link #column}, {@link #columnKeySet()}, and {@link #columnMap()} have
     * iterators that don't support {@code remove()}. Otherwise, all optional operations are supported.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 24 17:47:51 UTC 2022
    - 4K bytes
    - Viewed (0)
  5. testing/smoke-test/src/smokeTest/resources/org/gradle/play/integtest/fixtures/external/basicplayapp/app/controllers/Application.scala

     */
    
    package controllers
    
    import javax.inject._
    import play.api._
    import play.api.mvc._
    
    @Singleton
    class Application @Inject() extends InjectedController {
    
      def index = Action {
        Ok(views.html.index("Your new application is ready."))
      }
    
      def shutdown = Action {
        Runtime.getRuntime().halt(0)
        Ok("shutdown")
      }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 941 bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  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. tensorflow/c/experimental/ops/gen/cpp/views/arg_view.cc

    See the License for the specific language governing permissions and
    limitations under the License.
    ==============================================================================*/
    #include "tensorflow/c/experimental/ops/gen/cpp/views/arg_view.h"
    
    #include "tensorflow/c/experimental/ops/gen/model/arg_spec.h"
    #include "tensorflow/core/platform/types.h"
    
    namespace tensorflow {
    namespace generator {
    namespace cpp {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 07:02:00 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top