Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 106 for continued (0.29 sec)

  1. src/crypto/x509/verify_test.go

    			t.Errorf("unexpected error for test #%d: domain=%s, constraint=%s, err=%s", i, test.domain, test.constraint, err)
    			continue
    		}
    
    		if err == nil && test.expectError {
    			t.Errorf("unexpected success for test #%d: domain=%s, constraint=%s", i, test.domain, test.constraint)
    			continue
    		}
    
    		if result != test.shouldMatch {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  2. guava/src/com/google/common/cache/LocalCache.java

          for (ReferenceEntry<K, V> e = getFirst(hash); e != null; e = e.getNext()) {
            if (e.getHash() != hash) {
              continue;
            }
    
            K entryKey = e.getKey();
            if (entryKey == null) {
              tryDrainReferenceQueues();
              continue;
            }
    
            if (map.keyEquivalence.equivalent(key, entryKey)) {
              return e;
            }
          }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/cache/LocalCache.java

          for (ReferenceEntry<K, V> e = getFirst(hash); e != null; e = e.getNext()) {
            if (e.getHash() != hash) {
              continue;
            }
    
            K entryKey = e.getKey();
            if (entryKey == null) {
              tryDrainReferenceQueues();
              continue;
            }
    
            if (map.keyEquivalence.equivalent(key, entryKey)) {
              return e;
            }
          }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIntegrationTest.groovy

            output.count("Transforming") == 0
            outputContains("files: [jar1.jar.txt, jar2.jar.txt]")
        }
    
        def "user gets a reasonable error message when a transform throws exception and continues with other inputs"() {
            given:
            buildFile << """
                def a = file('a.jar')
                a << '1234'
                def b = file('b.jar')
                b << '321'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:42 UTC 2023
    - 100.8K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top