Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 98 for continued (0.27 sec)

  1. src/crypto/sha512/sha512_test.go

    		New512_256,
    	}
    
    	for i, fn1 := range h {
    		for j, fn2 := range h {
    			if i == j {
    				continue
    			}
    
    			h1 := fn1()
    			h2 := fn2()
    
    			state, err := h1.(encoding.BinaryMarshaler).MarshalBinary()
    			if err != nil {
    				t.Errorf("i=%d: could not marshal: %v", i, err)
    				continue
    			}
    
    			if err := h2.(encoding.BinaryUnmarshaler).UnmarshalBinary(state); err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 03 21:17:08 UTC 2023
    - 105.6K bytes
    - Viewed (0)
  2. pkg/controller/garbagecollector/garbagecollector_test.go

    			}
    		}
    
    		for _, owner := range node.owners {
    			ownerNode, ok := uidToNode[owner.UID]
    			if !ok {
    				// It's possible that the owner node doesn't exist
    				continue
    			}
    			if _, ok := ownerNode.dependents[node]; !ok {
    				t.Errorf("node %s has node %s as an owner, but it's not present in the latter node's dependents list", node.identity, ownerNode.identity)
    			}
    		}
    	}
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

      for (auto& block : region.getBlocks()) {
        Operation* terminator = block.getTerminator();
        auto return_op = llvm::dyn_cast_or_null<mhlo::ReturnOp>(terminator);
        if (return_op == nullptr) continue;
    
        rewriter.setInsertionPoint(return_op);
        rewriter.replaceOpWithNewOp<TF::YieldOp>(return_op,
                                                 return_op->getOperands());
      }
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  4. doc/go1.17_spec.html

    			}
    		}
    	}
    </pre>
    
    <h3 id="Continue_statements">Continue statements</h3>
    
    <p>
    A "continue" statement begins the next iteration of the
    innermost <a href="#For_statements">"for" loop</a> at its post statement.
    The "for" loop must be within the same function.
    </p>
    
    <pre class="ebnf">
    ContinueStmt = "continue" [ Label ] .
    </pre>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  5. cmd/object-handlers.go

    		partsLength := len(objInfo.Parts)
    		OA.ObjectParts.PartsCount = partsLength
    
    		if opts.MaxParts > -1 {
    			for i, v := range objInfo.Parts {
    				if v.Number <= opts.PartNumberMarker {
    					continue
    				}
    
    				if len(OA.ObjectParts.Parts) == opts.MaxParts {
    					break
    				}
    
    				OA.ObjectParts.NextPartNumberMarker = v.Number
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  6. src/reflect/all_test.go

    		t1 := tt.in.Type()
    		if !t1.ConvertibleTo(t1) {
    			t.Errorf("(%s).ConvertibleTo(%s) = false, want true", t1, t1)
    			continue
    		}
    
    		t2 := tt.out.Type()
    		if !t1.ConvertibleTo(t2) {
    			t.Errorf("(%s).ConvertibleTo(%s) = false, want true", t1, t2)
    			continue
    		}
    
    		all[t1] = true
    		all[t2] = true
    		canConvert[[2]Type{t1, t2}] = true
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  7. pkg/proxy/ipvs/proxier_test.go

    		if err != nil {
    			t.Errorf("Case [%d], unexpected list IPVS virtual server error: %v", i, err)
    		}
    		if len(list) != 1 {
    			t.Errorf("Case [%d], expect %d virtual servers, got %d", i, 1, len(list))
    			continue
    		}
    		if !list[0].Equal(testCases[i].newVirtualServer) {
    			t.Errorf("Case [%d], unexpected mismatch, expect: %#v, got: %#v", i, testCases[i].newVirtualServer, list[0])
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    // optionally skipping some.
    func (ps *printState) printList(args []AST, skip func(AST) bool) {
    	first := true
    	for _, a := range args {
    		if skip != nil && skip(a) {
    			continue
    		}
    		if !first {
    			ps.writeString(", ")
    		}
    
    		needsParen := false
    		if ps.llvmStyle {
    			if p, ok := a.(hasPrec); ok {
    				if p.prec() >= precComma {
    					needsParen = true
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_node_status_test.go

    				expectedActions = 1
    			}
    			require.Len(t, actions, expectedActions)
    
    			for i, action := range actions {
    				if i%2 == 0 && i > 0 {
    					require.IsType(t, core.GetActionImpl{}, action)
    					continue
    				}
    
    				require.IsType(t, core.PatchActionImpl{}, action)
    				patchAction := action.(core.PatchActionImpl)
    
    				updatedNode, err := applyNodeStatusPatch(node, patchAction.GetPatch())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_test.go

    		for _, container := range pod.Spec.Containers {
    			for resource := range container.Resources.Requests {
    				newQuantity, exist := updateResourceMap[resource]
    				if !exist {
    					continue
    				}
    				if newQuantity.Value() < 0 {
    					return fmt.Errorf("Allocation failed")
    				}
    				newAllocatableResource.ScalarResources[resource] = newQuantity.Value()
    			}
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
Back to top