Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 201 for Views (0.04 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/ModelViews.java

        }
    
        public static <T> T getInstance(List<? extends ModelView<?>> views, int index, ModelType<T> type) {
            return getInstance(views.get(index), type);
        }
    
        public static <T> T getInstance(List<? extends ModelView<?>> views, int index, Class<T> type) {
            return getInstance(views.get(index), type);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/adapter/ViewBuilder.java

    package org.gradle.tooling.internal.adapter;
    
    import javax.annotation.Nullable;
    
    public interface ViewBuilder<T> {
    
        /**
         * Mixes the given object into all views of the given type created using {@link #build(Object)}.
         * Applied to all views reachable from created views. The mix-in object should be serializable.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/codegen/GradleReferencedType.java

        GENERATED_ANNOTATION("org.gradle.api.Generated"),
        LIST_PROPERTY_LIST_VIEW("org.gradle.api.internal.provider.views.ListPropertyListView"),
        SET_PROPERTY_SET_VIEW("org.gradle.api.internal.provider.views.SetPropertySetView"),
        MAP_PROPERTY_MAP_VIEW("org.gradle.api.internal.provider.views.MapPropertyMapView");
    
        @SuppressWarnings("ImmutableEnumChecker")
        private final Type type;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:40 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/ops/gen/cpp/views/op_view.cc

    #include "tensorflow/c/experimental/ops/gen/cpp/views/op_view.h"
    
    #include "tensorflow/c/experimental/ops/gen/common/view_util.h"
    #include "tensorflow/c/experimental/ops/gen/cpp/views/arg_view.h"
    #include "tensorflow/c/experimental/ops/gen/cpp/views/attr_view.h"
    #include "tensorflow/c/experimental/ops/gen/cpp/views/op_argument_view.h"
    #include "tensorflow/c/experimental/ops/gen/model/op_spec.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 07:02:00 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/ops/gen/cpp/views/op_view.h

    #define TENSORFLOW_C_EXPERIMENTAL_OPS_GEN_CPP_VIEWS_OP_VIEW_H_
    
    #include <vector>
    
    #include "tensorflow/c/experimental/ops/gen/cpp/views/arg_view.h"
    #include "tensorflow/c/experimental/ops/gen/cpp/views/attr_view.h"
    #include "tensorflow/c/experimental/ops/gen/cpp/views/op_argument_view.h"
    #include "tensorflow/c/experimental/ops/gen/model/op_spec.h"
    #include "tensorflow/core/platform/types.h"
    
    namespace tensorflow {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 15 18:23:40 UTC 2021
    - 2K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-groovy/src/main/java/org/gradle/model/dsl/internal/inputs/PotentialInput.java

    public class PotentialInput {
        private final int inputIndex;
    
        public PotentialInput(int inputIndex) {
            this.inputIndex = inputIndex;
        }
    
        public Object get(List<ModelView<?>> views) {
            return views.get(inputIndex).getInstance();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1002 bytes
    - Viewed (0)
  7. tensorflow/c/experimental/ops/gen/cpp/views/op_argument_view.cc

    #include "tensorflow/c/experimental/ops/gen/cpp/views/op_argument_view.h"
    
    #include "absl/strings/substitute.h"
    #include "tensorflow/c/experimental/ops/gen/cpp/views/arg_type_view.h"
    #include "tensorflow/c/experimental/ops/gen/cpp/views/arg_view.h"
    #include "tensorflow/c/experimental/ops/gen/cpp/views/attr_view.h"
    #include "tensorflow/c/experimental/ops/gen/model/arg_spec.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 07:02:00 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/ops/gen/cpp/renderers/op_implementation_renderer.cc

    #include "tensorflow/c/experimental/ops/gen/cpp/renderers/renderer_context.h"
    #include "tensorflow/c/experimental/ops/gen/cpp/views/arg_view.h"
    #include "tensorflow/c/experimental/ops/gen/cpp/views/attr_view.h"
    #include "tensorflow/c/experimental/ops/gen/cpp/views/op_view.h"
    
    namespace tensorflow {
    namespace generator {
    namespace cpp {
    
    OpImplementationRenderer::OpImplementationRenderer(RendererContext context,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 05:51:40 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/ops/gen/README.md

    canonical name of the object in the proto.
    
    Where views are a representation of the *input* model, in the C++ generator,
    "renderers" then use these views to build the *output* `SourceCode`; Renderers
    understand the language at the statement/directive level and target a functional
    section of the output, such as a block comment or an entire method or file.
    
    Other differences between views and renderers:
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 21 18:51:25 UTC 2021
    - 5.7K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/internal/provider/views/package-info.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * A package for implementation of Property views, used for property upgrades.
     */
    @org.gradle.api.NonNullApi
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 15:31:28 UTC 2024
    - 779 bytes
    - Viewed (0)
Back to top