Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 105 for clonePod (0.13 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/passes/merge_initializer_function_ops_to_main.cc

        symbol_table.erase(init_func_op);
      }
    
      // Empties the "initializers" attribute from the `SessionInitializerOp` since
      // all ops of the initializer ops are cloned into @main.
      session_init_op.setInitializersAttr(ArrayAttr::get(ctx, {}));
    }
    
    }  // namespace
    
    std::unique_ptr<OperationPass<ModuleOp>>
    CreateMergeInitializerFunctionOpsToMainPass() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun May 12 12:54:52 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/mlir_graph_optimization_pass.cc

      bool is_module_updated = !mlir::OperationEquivalence::isEquivalentTo(
          module_ref_clone, *module_ref,
          mlir::OperationEquivalence::Flags::IgnoreLocations);
      // Destroy this cloned op to avoid memory leaks.
      module_ref_clone->destroy();
    
      if (!pass_status.ok()) {
        if (pass_state == MlirOptimizationPassState::Enabled) return pass_status;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  3. src/net/http/request_test.go

    	// Ensure that any modifications to the cloned
    	// request do not pollute the original request.
    	if g, w := req.PathValue("p2"), ""; g != w {
    		t.Fatalf("p2 mismatch got %q, want %q", g, w)
    	}
    	if g, w := req.PathValue("p1"), "orig"; g != w {
    		t.Fatalf("p1 mismatch got %q, want %q", g, w)
    	}
    
    	// Assert on the changes to the cloned request.
    	if g, w := clonedReq.PathValue("p1"), "orig"; g != w {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 18:42:34 UTC 2024
    - 44K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/typeset.go

    	// reusing the original method in embeddings, we can clone the method's Func
    	// Object and give it the position of a corresponding embedded interface. Then
    	// we can get rid of the mpos map below and simply use the cloned method's
    	// position.
    
    	var seen objset
    	var allMethods []*Func
    	mpos := make(map[*Func]syntax.Pos) // method specification or method embedding position, for good error messages
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  5. internal/config/identity/openid/openid.go

    	ProviderCfgs map[string]*providerCfg
    
    	pubKeys          publicKeys
    	roleArnPolicyMap map[arn.ARN]string
    
    	transport   http.RoundTripper
    	closeRespFn func(io.ReadCloser)
    }
    
    // Clone returns a cloned copy of OpenID config.
    func (r *Config) Clone() Config {
    	if r == nil {
    		return Config{}
    	}
    	cfg := Config{
    		Enabled:            r.Enabled,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  6. src/go/types/typeset.go

    	// reusing the original method in embeddings, we can clone the method's Func
    	// Object and give it the position of a corresponding embedded interface. Then
    	// we can get rid of the mpos map below and simply use the cloned method's
    	// position.
    
    	var seen objset
    	var allMethods []*Func
    	mpos := make(map[*Func]token.Pos) // method specification or method embedding position, for good error messages
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  7. pkg/ctrlz/assets/static/js/jquery-3.2.1.slim.min.js

    b=a.appendChild(d.createElement("div")),c=d.createElement("input");c.setAttribute("type","radio"),c.setAttribute("checked","checked"),c.setAttribute("name","t"),b.appendChild(c),o.checkClone=b.cloneNode(!0).cloneNode(!0).lastChild.checked,b.innerHTML="<textarea>x</textarea>",o.noCloneChecked=!!b.cloneNode(!0).lastChild.defaultValue}();var ra=d.documentElement,sa=/^key/,ta=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,ua=/^([^.]*)(?:\.(.+)|)/;function va(){return!0}function wa(){return!1}function...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 68K bytes
    - Viewed (0)
  8. tests/hooks_test.go

    		t.Fatalf("Failed to query product, got error: %v", err)
    	}
    
    	var resultClone Product2
    	if err := DB.First(&resultClone, "name = ?", "Nice_clone").Error; err != nil {
    		t.Fatalf("Failed to find cloned product, got error: %v", err)
    	}
    
    	result.Price *= 2
    	result.Name += "_clone"
    	AssertObjEqual(t, result, resultClone, "Price", "Name")
    
    	DB.Model(&result).Update("Price", 500)
    	var result2 Product2
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Sat Feb 18 01:20:29 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

                                   llvm::SetVector<Operation*>& merged_set,
                                   OpType& found_op) {
      // Find the TPUReplicationMetadata or TPUCompilationResult ops which will be
      // cloned/inserted into each region. We add them to the merged_set so that
      // they're ignored when extracting the four main functions.
      found_op = nullptr;
      for (OpType op : func.getOps<OpType>()) {
        if (found_op != nullptr) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  10. maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/DefaultLegacyArtifactCollector.java

            }
    
            if (updateScope) {
                fireEvent(ResolutionListener.UPDATE_SCOPE, listeners, nearest, farthestArtifact);
    
                // previously we cloned the artifact, but it is more efficient to just update the artifactScope
                // if problems are later discovered that the original object needs its original artifactScope value,
                // cloning may
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 36.7K bytes
    - Viewed (0)
Back to top