Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 212 for cond_a (0.17 sec)

  1. src/main/resources/fess_indices/_aws/fess.json

            },
            "brazilian_stop": {
              "type":       "stop",
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Tue Mar 23 12:38:28 UTC 2021
    - 117.3K bytes
    - Viewed (0)
  2. src/main/resources/fess_indices/_cloud/fess.json

            },
            "brazilian_stop": {
              "type":       "stop",
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Feb 27 09:26:16 UTC 2021
    - 117.3K bytes
    - Viewed (0)
  3. pkg/queue/instance_test.go

    	signal := make(chan struct{})
    	go func() {
    		q.Run(stop)
    		signal <- struct{}{}
    	}()
    
    	q.Push(func() error {
    		t.Log("mock exec")
    		return nil
    	})
    
    	// mock queue block wait cond signal
    	time.AfterFunc(10*time.Millisecond, func() {
    		close(stop)
    	})
    
    	select {
    	case <-time.After(200 * time.Millisecond):
    		t.Error("close stop, method exit timeout.")
    	case <-signal:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 21 16:30:36 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/resource_device_inference.cc

        if (failed(res)) return res;
      }
    
      // To support WhileRegion, we need to propagate device attributes from
      // WhileRegion operands to body/cond region arguments *prior* to visiting
      // these regions, so use a pre-order walk.
      WalkResult walk_res = func_op.walk<WalkOrder::PreOrder>([&](Operation* op) {
        if (auto var_handle = dyn_cast<VarHandleOp>(op)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 03 03:47:00 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  5. src/go/types/return.go

    			cc := s.(*ast.CommClause)
    			if !check.isTerminatingList(cc.Body, "") || hasBreakList(cc.Body, label, true) {
    				return false
    			}
    
    		}
    		return true
    
    	case *ast.ForStmt:
    		if s.Cond == nil && !hasBreak(s.Body, label, true) {
    			return true
    		}
    	}
    
    	return false
    }
    
    func (check *Checker) isTerminatingList(list []ast.Stmt, label string) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. src/go/types/stmt.go

    	case *ast.ForStmt:
    		inner |= breakOk | continueOk
    		check.openScope(s, "for")
    		defer check.closeScope()
    
    		check.simpleStmt(s.Init)
    		if s.Cond != nil {
    			var x operand
    			check.expr(nil, &x, s.Cond)
    			if x.mode != invalid && !allBoolean(x.typ) {
    				check.error(s.Cond, InvalidCond, "non-boolean condition in for statement")
    			}
    		}
    		check.simpleStmt(s.Post)
    		// spec: "The init statement may be a short variable
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  7. src/runtime/sema.go

    	// handled as long as their "unwrapped" difference is bounded by 2^31.
    	// For this not to be the case, we'd need to have 2^31+ goroutines
    	// blocked on the same condvar, which is currently not possible.
    	notify uint32
    
    	// List of parked waiters.
    	lock mutex
    	head *sudog
    	tail *sudog
    }
    
    // less checks if a < b, considering a & b running counts that may overflow the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 19K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/finalizer/crd_finalizer.go

    			Message: "instances overlap with built-in resources in storage",
    		})
    	} else if apiextensionshelpers.IsCRDConditionTrue(crd, apiextensionsv1.Established) {
    		cond, deleteErr := c.deleteInstances(crd)
    		apiextensionshelpers.SetCRDCondition(crd, cond)
    		if deleteErr != nil {
    			if _, err = c.crdClient.CustomResourceDefinitions().UpdateStatus(context.TODO(), crd, metav1.UpdateOptions{}); err != nil {
    				utilruntime.HandleError(err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  9. src/go/parser/resolver.go

    		if n.Body != nil {
    			r.walkStmts(n.Body.List)
    		}
    
    	case *ast.ForStmt:
    		r.openScope(n.Pos())
    		defer r.closeScope()
    		if n.Init != nil {
    			ast.Walk(r, n.Init)
    		}
    		if n.Cond != nil {
    			ast.Walk(r, n.Cond)
    		}
    		if n.Post != nil {
    			ast.Walk(r, n.Post)
    		}
    		ast.Walk(r, n.Body)
    
    	case *ast.RangeStmt:
    		r.openScope(n.Pos())
    		defer r.closeScope()
    		ast.Walk(r, n.X)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 12:56:53 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/inline/inlheur/testdata/props/returns2.go

    // <endcallsites>
    // <endfuncpreamble>
    func T_two_calls_feed_ifswitch(q int) int {
    	// This case we don't handle; for the heuristic to kick in,
    	// all names in a given if/switch cond have to come from the
    	// same callsite
    	x := meaning(q)
    	y := meaning(-q)
    	if x < y {
    		switch x + y {
    		case 42:
    			return 1
    		}
    	}
    	return 0
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 20:15:01 UTC 2023
    - 5.7K bytes
    - Viewed (0)
Back to top