Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 212 for cond_a (0.23 sec)

  1. src/crypto/internal/nistec/fiat/generate.go

    	{{ .Prefix }}Square(&e.x, &t.x)
    	return e
    }
    
    // Select sets v to a if cond == 1, and to b if cond == 0.
    func (v *{{ .Element }}) Select(a, b *{{ .Element }}, cond int) *{{ .Element }} {
    	{{ .Prefix }}Selectznz((*{{ .Prefix }}UntypedFieldElement)(&v.x), {{ .Prefix }}Uint1(cond),
    		(*{{ .Prefix }}UntypedFieldElement)(&b.x), (*{{ .Prefix }}UntypedFieldElement)(&a.x))
    	return v
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 9.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/reduce_while_operands.cc

    // 3. no call func inside while.
    bool ReduceWhileOperands(TFL::WhileOp while_op) {
      std::vector<uint64_t> explicitly_consumed_ids;
      Block &cond = while_op.getCond().front();
      Block &body = while_op.getBody().front();
    
      auto n = while_op.getNumOperands();
      if (!AllOperationSafe(cond) || !AllOperationSafe(body)) return false;
    
      // Find all Consumed indices.
      // i is consumed element if result(i) is used outside whileOp or
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  3. istioctl/pkg/waypoint/waypoint.go

    					if err == nil {
    						// Check if gateway has Programmed condition set to true
    						for _, cond := range gwc.Status.Conditions {
    							if cond.Type == string(gateway.GatewayConditionProgrammed) && string(cond.Status) == "True" {
    								programmed = true
    								break
    							}
    						}
    					}
    					if programmed {
    						break
    					}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:33 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  4. pkg/controller/util/node/controller_utils.go

    			continue
    		}
    
    		// Pod will be modified, so making copy is required.
    		pod := pods[i].DeepCopy()
    		for _, cond := range pod.Status.Conditions {
    			if cond.Type != v1.PodReady {
    				continue
    			}
    
    			cond.Status = v1.ConditionFalse
    			if !utilpod.UpdatePodCondition(&pod.Status, &cond) {
    				break
    			}
    
    			logger.V(2).Info("Updating ready status of pod to false", "pod", klog.KObj(pod))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 05 23:39:52 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/pin-ops-with-side-effects.mlir

    // CHECK-NEXT: }) : (tensor<1xi1>) -> ()
    // CHECK-NEXT: return
    
    // CHECK-LABEL: @tfl_while_gets_control_node
    func.func @tfl_while_gets_control_node()->() {
      "tfl.while"() (
      {
        // cond
        ^bb0:
         "tfl.yield"() : () -> ()
      },
      {
        //body
       ^bb0:
        "tfl.yield"() : () -> ()
      }) : () -> ()
      func.return
    }
    // CHECK-NEXT: %[[CONTROL:.*]] = tfl.control_node controls "tfl.while"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 17 10:45:19 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache.go

    // observed from a watch.
    type watchCache struct {
    	sync.RWMutex
    
    	// Condition on which lists are waiting for the fresh enough
    	// resource version.
    	cond *sync.Cond
    
    	// Maximum size of history window.
    	capacity int
    
    	// upper bound of capacity since event cache has a dynamic size.
    	upperBoundCapacity int
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 10:20:57 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/arm64/anames7.go

    var cnames7 = []string{
    	"", // C_NONE starts from 1
    	"NONE",
    	"REG",
    	"ZREG",
    	"RSP",
    	"FREG",
    	"VREG",
    	"PAIR",
    	"SHIFT",
    	"EXTREG",
    	"SPR",
    	"SPOP",
    	"COND",
    	"ARNG",
    	"ELEM",
    	"LIST",
    	"ZCON",
    	"ABCON0",
    	"ADDCON0",
    	"ABCON",
    	"AMCON",
    	"ADDCON",
    	"MBCON",
    	"MOVCON",
    	"BITCON",
    	"ADDCON2",
    	"LCON",
    	"MOVCON2",
    	"MOVCON3",
    	"VCON",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 16:37:49 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/tests/tfl_while_op_licm.mlir

      // CHECK: [[CST:%[^ ]*]] = arith.constant dense<1> : tensor<i32>
      // CHECK: "tfl.while"([[ARG0]], [[ARG1]])
      // CHECK: (tensor<i32>, tensor<1xf32>) -> (tensor<i32>, tensor<1xf32>)
      %0:2 = "tfl.while"(%arg0, %arg1) (
        // cond
        {
        ^bb0(%condArg0: tensor<*xi32>, %condArg1: tensor<*xf32>):
          %0 = "arith.constant" () {value = dense<0> : tensor<i32>} : () -> tensor<i32> loc("Const")
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 14:24:59 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  9. src/go/ast/walk.go

    		if n.Comm != nil {
    			Walk(v, n.Comm)
    		}
    		walkList(v, n.Body)
    
    	case *SelectStmt:
    		Walk(v, n.Body)
    
    	case *ForStmt:
    		if n.Init != nil {
    			Walk(v, n.Init)
    		}
    		if n.Cond != nil {
    			Walk(v, n.Cond)
    		}
    		if n.Post != nil {
    			Walk(v, n.Post)
    		}
    		Walk(v, n.Body)
    
    	case *RangeStmt:
    		if n.Key != nil {
    			Walk(v, n.Key)
    		}
    		if n.Value != nil {
    			Walk(v, n.Value)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:34:10 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  10. src/go/printer/testdata/statements.golden

    		use(x)
    	}
    	for x := range []int{} {
    		use(x)
    	}	// no parens printed
    }
    
    // Formatting of selected short single- and multi-line statements.
    func _() {
    	if cond {
    	}
    	if cond {
    	}	// multiple lines
    	if cond {
    	} else {
    	}	// else clause always requires multiple lines
    
    	for {
    	}
    	for i := 0; i < len(a); 1++ {
    	}
    	for i := 0; i < len(a); 1++ {
    		a[i] = i
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 12 18:18:12 UTC 2014
    - 8K bytes
    - Viewed (0)
Back to top