Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for ref1group (0.18 sec)

  1. pkg/controller/garbagecollector/testdata/escaping.dot

    strict digraph full {
      // Node definitions.
      "ref1-[]\"\\Iñtërnâtiônàlizætiøn,🐹" [
        label="uid=ref1-[]\"\\Iñtërnâtiônàlizætiøn,🐹\nnamespace=ref1ns\nref1kind-Iñtërnâtiônàlizætiøn,🐹.version.ref1group/ref1name-Iñtërnâtiônàlizætiøn,🐹\n"
        group="ref1group"
        version="version"
        kind="ref1kind-Iñtërnâtiônàlizætiøn,🐹"
        namespace="ref1ns"
        name="ref1name-Iñtërnâtiônàlizætiøn,🐹"
        uid="ref1-[]\"\\Iñtërnâtiônàlizætiøn,🐹"
        missing="false"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 23 17:12:33 UTC 2022
    - 1010 bytes
    - Viewed (0)
  2. pkg/controller/garbagecollector/dump_test.go

    			Kind:       "ref1kind-Iñtërnâtiônàlizætiøn,🐹",
    			APIVersion: "ref1group/version",
    		},
    		Namespace: "ref1ns",
    	}
    	ref2 := objectReference{
    		OwnerReference: metav1.OwnerReference{
    			UID:        types.UID("ref2-"),
    			Name:       "ref2name-",
    			Kind:       "ref2kind-",
    			APIVersion: "ref2group/version",
    		},
    		Namespace: "ref2ns",
    	}
    	testcases := []struct {
    		file  string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 14 00:05:53 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/Unions.java

            return null;
        }
    
        private ExcludeSpec tryGroupUnion(GroupExclude left, ExcludeSpec right) {
            String leftGroup = left.getGroup();
            if (right instanceof ModuleIdExclude) {
                ModuleIdExclude mie = (ModuleIdExclude) right;
                if (mie.getModuleId().getGroup().equals(leftGroup)) {
                    return left;
                }
            }
            if (right instanceof ModuleIdSetExclude) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  4. tensorflow/cc/ops/const_op.h

    #include <vector>
    
    #include "tensorflow/cc/framework/ops.h"
    #include "tensorflow/cc/framework/scope.h"
    #include "tensorflow/core/graph/node_builder.h"
    
    namespace tensorflow {
    namespace ops {
    
    /// @defgroup const_op Const Op
    /// @{
    
    Output Const(const Scope& scope, const Input::Initializer& val);
    
    Output ConstFromProto(const Scope& scope, const TensorProto& proto);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Sep 17 09:17:01 UTC 2020
    - 2.8K bytes
    - Viewed (0)
  5. tensorflow/cc/framework/ops.h

    #include "tensorflow/core/framework/tensor.pb.h"
    #include "tensorflow/core/graph/graph.h"
    #include "tensorflow/core/lib/hash/hash.h"
    #include "tensorflow/core/lib/strings/strcat.h"
    
    namespace tensorflow {
    
    /// @defgroup core Core Tensorflow API
    
    class Output;
    
    /// @addtogroup core
    /// @{
    
    /// Represents a node in the computation graph.
    class Operation {
     public:
      Operation() : node_(nullptr) {}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  6. tensorflow/cc/framework/cc_op_gen.cc

    
    #include "tensorflow/cc/ops/const_op.h"
    )include",
          "#include \"", op_header, "\"\n", namespace_begin);
    
      const string filename = GetFilename(dot_h_fname);
      const string doxygen = strings::StrCat("/// @defgroup ", filename, " ",
                                             ToTitle(filename), "\n", "/// @{\n\n");
    
      TF_CHECK_OK(h->Append(
          strings::StrCat("// This file is MACHINE GENERATED! Do not edit.\n\n"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 27 17:22:47 UTC 2023
    - 17K bytes
    - Viewed (0)
  7. tensorflow/cc/experimental/libtf/object.h

      explicit Capsule(TaggedValue v) : Handle(std::move(v)) {}
      template <class T>
      friend tensorflow::StatusOr<T> tf::libtf::Cast(Handle handle);
    };
    }  // namespace internal
    
    /// @defgroup Util Functions for type conversion
    ///
    /// @brief Functions for retrieving and converting Handle types.
    /// @{
    
    /// Retrieves tagged type of `T` handle.
    template <class T>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 11 08:05:36 UTC 2023
    - 23.6K bytes
    - Viewed (0)
Back to top