/dports/math/vampire/vampire-4.5.1/Shell/ |
H A D | ConstraintReaderBack.cpp | 149 Constraint::fromIterator(constraintType, in getConstraint() 318 …ConstraintRCPtr c(Constraint::fromIterator(constrType, pvi( CoeffStack::Iterator(coeffs) ), -freeC… in constraints() 398 …ConstraintRCPtr c(Constraint::fromIterator(CT_GR, pvi(CoeffStack::Iterator(coeff)),CoeffNumber::ze… in constraints() 435 …ConstraintRCPtr c1(Constraint::fromIterator(CT_GREQ, pvi(CoeffStack::Iterator(negatedCoeff)),freeU… in constraints() 446 …ConstraintRCPtr c(Constraint::fromIterator(CT_GREQ, pvi(CoeffStack::Iterator(coefficients)),freeCo… in constraints() 459 …ConstraintRCPtr c1(Constraint::fromIterator(CT_GREQ, pvi(CoeffStack::Iterator(negatedCoeff)),freeU… in constraints() 463 …ConstraintRCPtr c(Constraint::fromIterator(CT_GREQ, pvi(CoeffStack::Iterator(coefficients)),freeCo… in constraints() 488 ConstraintRCPtr cons(Constraint::fromIterator(CT_GREQ, pvi(CoeffStack::Iterator(coef)), free)); in constraints() 498 ConstraintRCPtr cons(Constraint::fromIterator(CT_GREQ, pvi(CoeffStack::Iterator(coef)), -free)); in constraints()
|
H A D | AnswerExtractor.cpp | 483 …res = Clause::fromIterator(getSingletonIterator(lit),NonspecificInference0(UnitInputType::AXIOM,In… in getResolverClause() 502 Clause* refutation = Clause::fromIterator(LiteralIterator::getEmpty(), in getRefutation()
|
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/apache/arrow/java/flight/flight-core/src/main/java/org/apache/arrow/flight/grpc/ |
H A D | StatusUtils.java | 206 public static <FROM, TO> Iterator<TO> wrapIterator(Iterator<FROM> fromIterator, in wrapIterator() argument 208 Objects.requireNonNull(fromIterator); in wrapIterator() 214 return fromIterator.hasNext(); in wrapIterator() 223 return transformer.apply(fromIterator.next()); in wrapIterator()
|
/dports/security/vault/vault-1.8.2/vendor/github.com/apache/arrow/java/flight/flight-core/src/main/java/org/apache/arrow/flight/grpc/ |
H A D | StatusUtils.java | 206 public static <FROM, TO> Iterator<TO> wrapIterator(Iterator<FROM> fromIterator, in wrapIterator() argument 208 Objects.requireNonNull(fromIterator); in wrapIterator() 214 return fromIterator.hasNext(); in wrapIterator() 223 return transformer.apply(fromIterator.next()); in wrapIterator()
|
/dports/mail/nextcloud-mail/mail/vendor/rubix/ml/docs/extractors/ |
H A D | api.md | 2 …nstantiate a new [Dataset](../datasets/api.md) object by passing it to the `fromIterator()` method. 11 $dataset = Labeled::fromIterator(new NDJSON('example.ndjson')); 44 $dataset = Unlabeled::fromIterator($iterator);
|
/dports/databases/arrow/apache-arrow-6.0.1/java/flight/flight-core/src/main/java/org/apache/arrow/flight/grpc/ |
H A D | StatusUtils.java | 231 public static <FROM, TO> Iterator<TO> wrapIterator(Iterator<FROM> fromIterator, in wrapIterator() argument 233 Objects.requireNonNull(fromIterator); in wrapIterator() 239 return fromIterator.hasNext(); in wrapIterator() 248 return transformer.apply(fromIterator.next()); in wrapIterator()
|
/dports/devel/py-mypy/mypy-0.910/mypyc/test-data/ |
H A D | run-sets.test | 8 def fromIterator() -> List[Set[int]]: 59 from native import fromIterator 60 sets = fromIterator()
|
/dports/mail/nextcloud-mail/mail/vendor/rubix/ml/docs/ |
H A D | extracting-data.md | 2 …taset in storage and can be used to instantiate a dataset object using the `fromIterator()` method. 15 …mport data from the CSV format. We'll use it in conjunction with the `fromIterator()` method to in… 22 $dataset = Labeled::fromIterator(new CSV('example.csv', true)) 56 $dataset = Labeled::fromIterator(new JSON('example.json')); 80 $dataset = Unlabeled::fromIterator($iterator); 136 Labeled::fromIterator(new CSV('example.csv'))
|
/dports/www/chromium-legacy/chromium-88.0.4324.182/chromecast/base/java/src/org/chromium/chromecast/base/ |
H A D | Itertools.java | 18 public static <T> Iterable<T> fromIterator(Iterator<T> iterator) { in fromIterator() method in Itertools
|
/dports/www/chromium-legacy/chromium-88.0.4324.182/chromecast/base/java/test/org/chromium/chromecast/base/ |
H A D | ItertoolsTest.java | 41 for (String item : Itertools.fromIterator(emptyIterator)) { in testForEachLoopWithIterator()
|
/dports/math/vampire/vampire-4.5.1/UnitTests/ |
H A D | tInterpretedNormalizer.cpp | 45 …Clause* cl = Clause::fromIterator(getSingletonIterator(lit), NonspecificInference0(UnitInputType::… in TEST_FUN()
|
/dports/math/vampire/vampire-4.5.1/Inferences/ |
H A D | URResolution.cpp | 186 res = Clause::fromIterator(getSingletonIterator(single), inf); in generateClause() 189 res = Clause::fromIterator(LiteralIterator::getEmpty(), inf); in generateClause()
|
H A D | GlobalSubsumption.cpp | 261 … Clause* replacement = Clause::fromIterator(LiteralStack::BottomFirstIterator(survivors),inf); in perform()
|
/dports/biology/gatk/gatk-4.2.0.0/src/main/java/org/broadinstitute/hellbender/utils/ |
H A D | Utils.java | 1200 …public static <F, T> Iterator<T> transformParallel(final Iterator<F> fromIterator, final Function<… 1201 Utils.nonNull(fromIterator, "fromIterator"); 1206 return Iterators.transform(fromIterator, new com.google.common.base.Function<F, T>() { 1221 while (fromIterator.hasNext()) { 1225 final F next = fromIterator.next();
|
/dports/www/chromium-legacy/chromium-88.0.4324.182/chromecast/browser/android/apk/src/org/chromium/chromecast/shell/ |
H A D | CastCommandLineHelper.java | 88 for (String swtch : Itertools.fromIterator(args.keys())) { in initCommandLineWithSavedArgs()
|
/dports/devel/aws-sdk-php/aws-sdk-php74-3.185.15/Aws/S3/ |
H A D | BatchDelete.php | 96 public static function fromIterator( function in Aws\\S3\\BatchDelete
|
H A D | S3ClientTrait.php | 138 return BatchDelete::fromIterator($this, $bucket, $iter, $options)
|
/dports/www/nextcloud/nextcloud/3rdparty/aws/aws-sdk-php/src/S3/ |
H A D | BatchDelete.php | 96 public static function fromIterator( function in Aws\\S3\\BatchDelete
|
H A D | S3ClientTrait.php | 138 return BatchDelete::fromIterator($this, $bucket, $iter, $options)
|
/dports/math/vampire/vampire-4.5.1/Shell/LTB/ |
H A D | Selector.cpp | 164 …Clause* cl=Clause::fromIterator(VirtualIterator<Literal*>::getEmpty(), Unit::AXIOM, new Inference0… in selectForProblem()
|
/dports/mail/nextcloud-mail/mail/vendor/rubix/ml/tests/Datasets/ |
H A D | UnlabeledTest.php | 76 public function fromIterator() : void function in Rubix\\ML\\Tests\\Datasets\\UnlabeledTest 78 $dataset = Unlabeled::fromIterator(new NDJSON('tests/test.ndjson'));
|
H A D | LabeledTest.php | 84 public function fromIterator() : void function in Rubix\\ML\\Tests\\Datasets\\LabeledTest 86 $dataset = Labeled::fromIterator(new NDJSON('tests/test.ndjson'));
|
/dports/math/vampire/vampire-4.5.1/Kernel/ |
H A D | Clause.hpp | 93 static Clause* fromIterator(Iter litit, const Inference& inf) in fromIterator() function in Kernel::Clause
|
H A D | Constraint.hpp | 147 …static Constraint* fromIterator(ConstraintType t, Iter coeffIterator, const CoeffNumber& freeCoeff) in fromIterator() function in Kernel::Constraint
|
/dports/math/vampire/vampire-4.5.1/Saturation/ |
H A D | Splitter.cpp | 204 …Clause* foRef = Clause::fromIterator(LiteralIterator::getEmpty(),FromSatRefutation(InferenceRule::… in handleSatRefutation() 264 Clause* foRef = Clause::fromIterator(LiteralIterator::getEmpty(), foInf); in handleSatRefutation() 326 Clause* foRef = Clause::fromIterator(LiteralIterator::getEmpty(), finalInf); in handleSatRefutation() 1235 Clause* temp = Clause::fromIterator(getArrayishObjectIterator(possibly_flipped_lits, size), in buildAndInsertComponentClause() 1252 Clause* compCl = Clause::fromIterator(getArrayishObjectIterator(lits, size), in buildAndInsertComponentClause()
|