Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 105 for clonePod (0.18 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-string.h

    class GTEST_API_ String {
     public:
      // Static utility methods
    
      // Clones a 0-terminated C string, allocating memory using new.  The
      // caller is responsible for deleting the return value using
      // delete[].  Returns the cloned string, or NULL if the input is
      // NULL.
      //
      // This is different from strdup() in string.h, which allocates
      // memory using malloc().
      static const char* CloneCString(const char* c_str);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  2. README.md

    ## Development Information
    
    ### Get Source Code
    
    1. Clone Fess's repository:
        ```
        $ cd ~/workspace
        $ git clone https://github.com/codelibs/fess.git
        ```
        
    2. Import the cloned repository as a [Maven](https://maven.apache.org/) project on [Eclipse](https://www.eclipse.org/eclipseide/) or another IDE.
    
    ### Setup for OpenSearch Plugins
    
    Run antrun:run to download plugins into the plugins directory:
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Feb 25 00:40:07 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/passes/merge_save_function_ops_to_main.cc

      }
    
      func::FuncOp save_func_op = GetSaveFuncOp(module_op);
      if (!save_func_op) return;
    
      MergeSaveFunctionOpsToMain(save_func_op, main_func_op);
    
      // Erase the save function when all ops are successfully cloned.
      save_func_op.erase();
    }
    
    std::unique_ptr<OperationPass<ModuleOp>>
    CreateMergeSaveFunctionOpsToMainPass() {
      return std::make_unique<MergeSaveFunctionOpsToMainPass>();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf-communication.mlir

    // function. The original public function will be modified to create a token,
    // while the function is cloned and rewritten with an extra token argument and
    // an extra token result. All callers to the original function are updated to
    // point to the cloned function and the function the caller is in is updated to
    // pass a token or create a token.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 08 18:24:20 UTC 2024
    - 38.3K bytes
    - Viewed (0)
  5. pkg/controller/volume/persistentvolume/testing/testing.go

    	r.lock.Lock()
    	defer r.lock.Unlock()
    
    	// Remove the volume from list of resulting volumes.
    	delete(r.volumes, volume.Name)
    
    	// Generate deletion event. Cloned volume is needed to prevent races (and we
    	// would get a clone from etcd too).
    	if r.fakeVolumeWatch != nil {
    		r.fakeVolumeWatch.Delete(volume.DeepCopy())
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_communication.cc

            std::optional<StringRef> symbol_name =
                clone ? std::optional<StringRef>(clone.getName()) : std::nullopt;
            // If the function being called is to be cloned, update the call to also
            // point to the cloned function.
            token = RewriteCallOp(builder, call, symbol_name, token);
          }
        } else if (auto region_if = dyn_cast<IfOp>(curr_op)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 40.5K bytes
    - Viewed (0)
  7. maven-artifact/src/main/java/org/apache/maven/artifact/versioning/VersionRange.java

        }
    
        /**
         * @deprecated VersionRange is immutable, cloning is not useful and even more an issue against the cache
         * @return a clone
         */
        @Deprecated
        public VersionRange cloneOf() {
            List<Restriction> copiedRestrictions = null;
    
            if (restrictions != null) {
                copiedRestrictions = new ArrayList<>();
    
                if (!restrictions.isEmpty()) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:40:37 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  8. cmd/metacache-entries.go

    func (m metaCacheEntries) isSorted() bool {
    	return sort.SliceIsSorted(m, m.less)
    }
    
    // shallowClone will create a shallow clone of the array objects,
    // but object metadata will not be cloned.
    func (m metaCacheEntries) shallowClone() metaCacheEntries {
    	dst := make(metaCacheEntries, len(m))
    	copy(dst, m)
    	return dst
    }
    
    type metadataResolutionParams struct {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 04:34:26 UTC 2024
    - 24K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/partially_decluster_pass.cc

                                absl::Span<Node* const> post_order) {
      // Find nodes that have at least one user outside their cluster that expects
      // hostmem output.  These nodes should be cloned to outside the cluster to
      // avoid the device-host copy we'd otherwise need.
    
      MemoryTypeVector input_mtypes, output_mtypes;
    
      for (Node* n : post_order) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 11:36:41 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/experimental/remat/rematerializer.h

        const auto len = (remat.end - remat.begin);
        auto idelta = deltas.begin();
    
        for (MemSpec m; m.op_index < operations_.size() + len; ++m.op_index) {
          // Are we in the cloned portion of the new operation sequence?
          // Then all alloc/dealloc information must come from deltas.
          const bool patch =
              (m.op_index >= remat.insert) && (m.op_index < remat.insert + len);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 14 20:57:44 UTC 2023
    - 12K bytes
    - Viewed (0)
Back to top