Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 93 for Views (0.03 sec)

  1. tensorflow/c/experimental/ops/gen/cpp/renderers/BUILD

        ),
        hdrs = glob(["*.h"]),
        visibility = ["//tensorflow/c/experimental/ops/gen/cpp:__pkg__"],
        deps = [
            "//tensorflow/c/experimental/ops/gen/common",
            "//tensorflow/c/experimental/ops/gen/cpp/views",
            "//tensorflow/core:framework_internal",
            "//tensorflow/core:lib",
            "//tensorflow/core:lib_internal",
            "@com_google_absl//absl/strings",
        ],
        alwayslink = 1,
    )
    
    tf_cc_tests(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 04 21:13:03 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/ops/gen/cpp/renderers/op_comment_renderer.h

    #include "tensorflow/c/experimental/ops/gen/cpp/renderers/renderer.h"
    #include "tensorflow/c/experimental/ops/gen/cpp/renderers/renderer_context.h"
    #include "tensorflow/c/experimental/ops/gen/cpp/views/op_view.h"
    
    namespace tensorflow {
    namespace generator {
    namespace cpp {
    
    class OpCommentRenderer : public Renderer {
     public:
      explicit OpCommentRenderer(RendererContext context, OpView op);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 05:51:40 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/ops/gen/cpp/renderers/op_comment_renderer.cc

    #include "tensorflow/c/experimental/ops/gen/cpp/renderers/renderer.h"
    #include "tensorflow/c/experimental/ops/gen/cpp/renderers/renderer_context.h"
    #include "tensorflow/c/experimental/ops/gen/cpp/views/op_view.h"
    
    namespace tensorflow {
    namespace generator {
    namespace cpp {
    
    OpCommentRenderer::OpCommentRenderer(RendererContext context, OpView op)
        : Renderer(context), op_(op) {}
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 05:51:40 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/ops/gen/cpp/views/arg_type_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_type_view.h"
    
    #include "tensorflow/c/experimental/ops/gen/model/arg_type.h"
    #include "tensorflow/core/framework/types.pb.h"
    #include "tensorflow/core/platform/types.h"
    
    namespace tensorflow {
    namespace generator {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 07:02:00 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. pilot/pkg/model/proxy_view_test.go

    	"istio.io/istio/pkg/network"
    )
    
    func TestProxyView(t *testing.T) {
    	cases := []struct {
    		name        string
    		networkView []string
    		network     string
    		visible     bool
    	}{
    		{
    			name:    "no views",
    			network: "network1",
    			visible: true,
    		},
    		{
    			name:        "network visible",
    			networkView: []string{"network1"},
    			network:     "network1",
    			visible:     true,
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. guava/src/com/google/common/graph/StandardValueGraph.java

     *
     * <p>Collection-returning accessors return unmodifiable views: the view returned will reflect
     * changes to the graph (if the graph is mutable) but may not be modified by the user.
     *
     * <p>The time complexity of all collection-returning accessors is O(1), since views are returned.
     *
     * @author James Sexton
     * @author Joshua O'Madadhain
     * @author Omar Darwish
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  7. testing/smoke-test/src/smokeTest/resources/org/gradle/play/integtest/fixtures/external/basicplayapp/app/controllers/Application.scala.old

     * limitations under the License.
     */
    
    package controllers
    
    import play.api._
    import play.api.mvc._
    
    object Application extends Controller {
    
      def index = Action {
        Ok(views.html.index("Your new application is ready."))
      }
    
      def shutdown = Action {
        System.exit(0)
        Ok("shutdown")
      }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 876 bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/adapter/ObjectGraphAdapter.java

     * limitations under the License.
     */
    
    package org.gradle.tooling.internal.adapter;
    
    import javax.annotation.Nullable;
    
    /**
     * Converts or adapts objects to views over the objects.
     */
    public interface ObjectGraphAdapter {
        @Nullable
        <T> T adapt(Class<T> targetType, Object sourceObject);
    
        <T> ViewBuilder<T> builder(Class<T> viewType);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 928 bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/graph/StandardValueGraph.java

     *
     * <p>Collection-returning accessors return unmodifiable views: the view returned will reflect
     * changes to the graph (if the graph is mutable) but may not be modified by the user.
     *
     * <p>The time complexity of all collection-returning accessors is O(1), since views are returned.
     *
     * @author James Sexton
     * @author Joshua O'Madadhain
     * @author Omar Darwish
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/binding/StructMethodBinding.java

    import org.gradle.internal.reflect.PropertyAccessorType;
    import org.gradle.model.internal.method.WeaklyTypeReferencingMethod;
    
    import javax.annotation.Nullable;
    
    /**
     * Binds a method declared in a views to its actual implementation.
     */
    public interface StructMethodBinding {
        WeaklyTypeReferencingMethod<?, ?> getViewMethod();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top