Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for isNoOp (0.12 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/adapter/ProtocolToModelAdapter.java

                return decorations.equals(other.decorations);
            }
    
            @Override
            public boolean isNoOp() {
                for (ViewDecoration decoration : decorations) {
                    if (!decoration.isNoOp()) {
                        return false;
                    }
                }
                return true;
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 04:42:54 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/cacher/caching_object.go

    //   invalidate the cache and delegate for the underlying object
    
    func (o *cachingObject) conditionalSet(isNoop func() bool, set func()) {
    	if fastPath := func() bool {
    		o.lock.RLock()
    		defer o.lock.RUnlock()
    		return isNoop()
    	}(); fastPath {
    		return
    	}
    	o.lock.Lock()
    	defer o.lock.Unlock()
    	if isNoop() {
    		return
    	}
    	if !o.deepCopied {
    		o.object = o.object.DeepCopyObject().(metaRuntimeInterface)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 05 18:03:48 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  3. operator/pkg/helmreconciler/reconciler.go

    func (h *HelmReconciler) SetStatusBegin() error {
    	isop := &istioV1Alpha1.IstioOperator{}
    	if err := h.getClient().Get(context.TODO(), config.NamespacedName(h.iop), isop); err != nil {
    		if runtime.IsNotRegisteredError(err) {
    			// CRD not yet installed in cluster, nothing to update.
    			return nil
    		}
    		return fmt.Errorf("failed to get IstioOperator before updating status due to %v", err)
    	}
    	if isop.Status == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 22 08:32:23 UTC 2024
    - 22K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/arch/x86/x86asm/intel.go

    			}
    			if p.IsVEX() {
    				if p == PrefixVEX3Bytes {
    					inst.Prefix[i+2] |= PrefixImplicit
    				}
    				inst.Prefix[i] |= PrefixImplicit
    				inst.Prefix[i+1] |= PrefixImplicit
    			}
    		}
    	}
    
    	if isLoop[inst.Op] || inst.Op == JCXZ || inst.Op == JECXZ || inst.Op == JRCXZ {
    		for i, p := range inst.Prefix {
    			if p == PrefixPT || p == PrefixPN {
    				inst.Prefix[i] |= PrefixImplicit
    			}
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 22:23:32 UTC 2017
    - 11.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/arch/x86/x86asm/decode.go

    	JG:  true,
    	JGE: true,
    	JL:  true,
    	JLE: true,
    	JNE: true,
    	JNO: true,
    	JNP: true,
    	JNS: true,
    	JO:  true,
    	JP:  true,
    	JS:  true,
    }
    
    // isLoop records the loop operators.
    var isLoop = [maxOp + 1]bool{
    	LOOP:   true,
    	LOOPE:  true,
    	LOOPNE: true,
    	JECXZ:  true,
    	JRCXZ:  true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:59:52 UTC 2023
    - 45.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/translate/export_graphdef.cc

    void FixupInputNamesFromEdges(Graph* graph) {
      for (Node* n : graph->nodes()) {
        if (n->IsOp()) {
          NodeDef* node_def = n->mutable_def();
          node_def->clear_input();
          for (const Edge* e : n->in_edges()) {
            Node* src = e->src();
            if (src->IsOp()) {
              Graph::AddInput(node_def, src->name(), e->src_output());
            }
          }
        }
      }
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/api/v2/tf_executor_to_graph.cc

    void FixupInputNamesFromEdges(Graph* graph) {
      for (Node* n : graph->nodes()) {
        if (n->IsOp()) {
          NodeDef* node_def = n->mutable_def();
          node_def->clear_input();
          for (const Edge* e : n->in_edges()) {
            Node* src = e->src();
            if (src->IsOp()) {
              Graph::AddInput(node_def, src->name(), e->src_output());
            }
          }
        }
      }
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 23:04:51 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/arch/x86/x86asm/gnu.go

    		if isMem(inst.Args[0]) {
    			unmarkImplicit(&inst, PrefixDataSize)
    		}
    
    	case SYSEXIT:
    		unmarkImplicit(&inst, PrefixDataSize)
    	}
    
    	if isCondJmp[inst.Op] || isLoop[inst.Op] || inst.Op == JCXZ || inst.Op == JECXZ || inst.Op == JRCXZ {
    		if countPrefix(&inst, PrefixCS) > 0 && countPrefix(&inst, PrefixDS) > 0 {
    			for i, p := range inst.Prefix {
    				switch p & 0xFFF {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/deadness_analysis.cc

          if (IsNextIteration(curr_node) && IsMerge(out)) {
            // Edge NextIteration->Merge has been counted.
            continue;
          }
          ++num_ready_inputs[out->id()];
          if (!out->IsOp()) continue;  // Skip Sink/Source nodes.
          if (num_ready_inputs[out->id()] != out->in_edges().size()) continue;
    
          absl::string_view frame_name = control_flow_info_[out_id].frame_name;
          if (IsRootEnter(out)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  10. tensorflow/c/c_api.cc

          // added since the last TF_SessionRun() call.
          for (auto id = session->last_num_graph_nodes; id < num_nodes; ++id) {
            Node* const node = graph.FindNodeId(id);
            if (node != nullptr && node->IsOp()) {
              NodeDef* const node_def = graph_def.add_node();
              *node_def = node->def();
            }
          }
          *graph_def.mutable_library() = graph.flib_def().ToProto();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
Back to top