Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for unknownPhase (0.24 sec)

  1. pkg/controller/controller_utils_test.go

    					ObjectMeta: metav1.ObjectMeta{Name: "scheduledButPending"},
    					Spec:       v1.PodSpec{NodeName: "bar"},
    					Status:     v1.PodStatus{Phase: v1.PodPending},
    				},
    				{
    					ObjectMeta: metav1.ObjectMeta{Name: "unknownPhase"},
    					Spec:       v1.PodSpec{NodeName: "foo"},
    					Status:     v1.PodStatus{Phase: v1.PodUnknown},
    				},
    				{
    					ObjectMeta: metav1.ObjectMeta{Name: "runningButNotReady"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  2. tensorflow/cc/framework/test_op.cc

        .SetShapeFn(shape_inference::UnknownShape);
    
    REGISTER_OP("ThrowAway3")
        .Output("node: int32")
        .SetShapeFn(shape_inference::UnknownShape);
    
    REGISTER_OP("ThrowAway4")
        .Input("node: int32")
        .SetShapeFn(shape_inference::UnknownShape);
    
    REGISTER_OP("ThrowAway5")
        .Output("foo: int32")
        .Attr("node: int = 4")
        .SetShapeFn(shape_inference::UnknownShape);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 15 23:50:32 UTC 2017
    - 1.7K bytes
    - Viewed (0)
  3. platforms/core-runtime/wrapper-shared/src/test/groovy/org/gradle/wrapper/PathAssemblerTest.java

            configuration.setDistribution(new URI("http://server/dist/gradle-1.0.zip"));
            configuration.setDistributionBase("unknownBase");
    
            try {
                pathAssembler.getDistribution(configuration);
                fail();
            } catch (RuntimeException e) {
                assertEquals("Base: unknownBase is unknown", e.getMessage());
            }
        }
    
        @Test
        public void distributionDirWithUserInfo() throws Exception {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:12:34 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ops/mlir_passthrough_op.cc

        .Attr("mlir_module: string")
        .Attr("Tinputs : list(type) >= 0")
        .Input("inputs: Tinputs")
        .Attr("Toutputs : list(type) >= 0")
        .Output("outputs: Toutputs")
        .SetShapeFn(shape_inference::UnknownShape);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Sep 14 23:15:53 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ops/mlir_local_var_op.cc

    #include "tensorflow/core/framework/common_shape_fns.h"
    #include "tensorflow/core/framework/op.h"
    
    namespace tensorflow {
    
    REGISTER_OP("MlirLocalVarOp")
        .Output("resource: resource")
        .SetShapeFn(shape_inference::UnknownShape)
        .Doc(R"(Creates a handle to an in-scope variable.
    Used by internal passes for temporary representation of local state, which will
    be eventually removed.)");
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 08 23:15:13 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  6. tensorflow/c/ops.cc

    }
    
    void TF_ShapeInferenceContextSetUnknownShape(TF_ShapeInferenceContext* ctx,
                                                 TF_Status* status) {
      Status s = ::tensorflow::shape_inference::UnknownShape(
          reinterpret_cast<InferenceContext*>(ctx));
      Set_TF_Status_from_Status(status, s);
    }
    
    void TF_ShapeInferenceContextSubshape(TF_ShapeInferenceContext* ctx,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 28 22:41:35 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  7. tensorflow/c/kernels_test.cc

          .Attr("Attr: " #type)                                   \
          .SetShapeFn(tensorflow::shape_inference::UnknownShape); \
      REGISTER_OP("TestKernelAttr" #name "List")                  \
          .Attr("Attr: list(" #type ")")                          \
          .SetShapeFn(tensorflow::shape_inference::UnknownShape)
    ATTR_TEST_REGISTER_OP(String, string);
    ATTR_TEST_REGISTER_OP(Int, int);
    ATTR_TEST_REGISTER_OP(Float, float);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 50.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/encapsulate_subgraphs_pass_test.cc

          ::tensorflow::shape_inference::ShapeHandle o;
          TF_RETURN_IF_ERROR(c->Merge(c->UnknownShape(), c->input(0), &o));
          c->set_output(0, o);
          return absl::OkStatus();
        });
    REGISTER_OP("BinaryTest2")
        .Input("a: float")
        .Input("b: float")
        .Output("o: float")
        .SetShapeFn(::tensorflow::shape_inference::UnknownShape);
    
    REGISTER_OP("AddNLikeTest")
        .Input("inputs: N * T")
        .Output("sum: T")
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  9. tensorflow/c/c_api_experimental.cc

        std::vector<DimensionHandle> dims;
        const TF_ShapeAndType& input_shape = input_shapes->items[i];
        if (input_shape.num_dims == InferenceContext::kUnknownRank) {
          c.SetInput(i, c.UnknownShape());
          continue;
        }
        dims.reserve(input_shape.num_dims);
        for (int j = 0; j < input_shape.num_dims; ++j) {
          dims.push_back(c.MakeDim(input_shape.dims[j]));
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  10. tensorflow/c/c_api_test.cc

          .Attr("v: " #type)                                      \
          .SetShapeFn(tensorflow::shape_inference::UnknownShape); \
      REGISTER_OP("CApiAttributesTestOpList" #type)               \
          .Attr("v: list(" #type ")")                             \
          .SetShapeFn(tensorflow::shape_inference::UnknownShape)
    ATTR_TEST_REGISTER_OP(string);
    ATTR_TEST_REGISTER_OP(int);
    ATTR_TEST_REGISTER_OP(float);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
Back to top