Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 126 for Cond (0.04 sec)

  1. security/pkg/k8s/chiron/utils_test.go

    }
    
    func GetCondition(conditions []cert.CertificateSigningRequestCondition, condition cert.RequestConditionType) cert.CertificateSigningRequestCondition {
    	for _, cond := range conditions {
    		if cond.Type == condition {
    			return cond
    		}
    	}
    	return cert.CertificateSigningRequestCondition{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 03:58:11 UTC 2024
    - 13K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_patterns.td

    def : Pat<(MHLO_SelectOp $cond, $t,
                                    (MHLO_BroadcastInDimOp:$output
                                      $bcast_operand,
                                      $broadcast_dimensions)),
              (TF_SelectV2Op $cond, $t, $bcast_operand),
              [(IsTFStyleBroadcast $broadcast_dimensions, $output)]>;
    def : Pat<(MHLO_SelectOp $cond, (MHLO_BroadcastInDimOp:$output
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Feb 03 08:58:22 UTC 2024
    - 34K bytes
    - Viewed (0)
  3. callbacks/preload.go

    	column, values := schema.ToQueryValues(clause.CurrentTable, relForeignKeys, foreignValues)
    
    	if len(values) != 0 {
    		for _, cond := range conds {
    			if fc, ok := cond.(func(*gorm.DB) *gorm.DB); ok {
    				tx = fc(tx)
    			} else {
    				inlineConds = append(inlineConds, cond)
    			}
    		}
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:52:33 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirExpressionTypeProvider.kt

        private fun PsiElement.isWhileLoopCondition() =
            unwrapQualified<KtWhileExpressionBase> { whileExpr, cond -> whileExpr.condition == cond } != null
    
        private fun PsiElement.isIfCondition() =
            unwrapQualified<KtIfExpression> { ifExpr, cond -> ifExpr.condition == cond } != null
    
        override fun isDefinitelyNull(expression: KtExpression): Boolean =
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/func_test.go

    }
    
    // If specifies a BlockIf.
    func If(cond, sub, alt string) ctrl {
    	return ctrl{BlockIf, cond, []string{sub, alt}}
    }
    
    // Exit specifies a BlockExit.
    func Exit(arg string) ctrl {
    	return ctrl{BlockExit, arg, []string{}}
    }
    
    // Eq specifies a BlockAMD64EQ.
    func Eq(cond, sub, alt string) ctrl {
    	return ctrl{BlockAMD64EQ, cond, []string{sub, alt}}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:01:04 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/tf_device_passes.td

        the loads/stores in the body/cond/branch functions to the cluster body, then
        performs the above lifting. E.g.,
    
        ```mlir
        func @cluster_with_loop() -> () {
          %0 = "tf.VarHandleOp"() ...
          "tf_device.cluster"() ( {
             %1 = "tf.While"(%0) {body = @while_body, cond = @while_cond}
             tf_device.return
          })
          return
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  7. src/cmd/trace/tasks.go

    type taskFilter struct {
    	name string
    	cond []func(*parsedTrace, *trace.UserTaskSummary) bool
    }
    
    // match returns true if a task, described by its ID and summary, matches
    // the filter.
    func (f *taskFilter) match(t *parsedTrace, task *trace.UserTaskSummary) bool {
    	if t == nil {
    		return false
    	}
    	for _, c := range f.cond {
    		if !c(t, task) {
    			return false
    		}
    	}
    	return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/phases/join/kubelet.go

    	if err != nil && !apierrors.IsNotFound(err) {
    		return errors.Wrapf(err, "cannot get Node %q", nodeName)
    	}
    	for _, cond := range node.Status.Conditions {
    		if cond.Type == v1.NodeReady && cond.Status == v1.ConditionTrue {
    			return errors.Errorf("a Node with name %q and status %q already exists in the cluster. "+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/ast/astutil/rewrite.go

    	case *ast.BranchStmt:
    		a.apply(n, "Label", nil, n.Label)
    
    	case *ast.BlockStmt:
    		a.applyList(n, "List")
    
    	case *ast.IfStmt:
    		a.apply(n, "Init", nil, n.Init)
    		a.apply(n, "Cond", nil, n.Cond)
    		a.apply(n, "Body", nil, n.Body)
    		a.apply(n, "Else", nil, n.Else)
    
    	case *ast.CaseClause:
    		a.applyList(n, "List")
    		a.applyList(n, "Body")
    
    	case *ast.SwitchStmt:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  10. src/crypto/tls/boring_test.go

    			reachable := map[string]bool{leaf.parentOrg: true}
    			reachableFIPS := map[string]bool{leaf.parentOrg: leaf.fipsOK}
    			list := [][]byte{leaf.der}
    			listName := leaf.name
    			addList := func(cond int, c *boringCertificate) {
    				if cond != 0 {
    					list = append(list, c.der)
    					listName += "," + c.name
    					if reachable[c.org] {
    						reachable[c.parentOrg] = true
    					}
    					if reachableFIPS[c.org] && c.fipsOK {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:45:37 UTC 2024
    - 19.4K bytes
    - Viewed (0)
Back to top