- Sort Score
- Result 10 results
- Languages All
Results 231 - 240 of 4,296 for 0$ (0.01 sec)
-
tensorflow/c/eager/gradient_checker.cc
- AbstractTensorHandlePtr model_out(model_outputs[0]);
- TF_Tensor* model_out_tensor;
- TF_RETURN_IF_ERROR(GetValue(model_out.get(), &model_out_tensor));
- int num_dims_out = TF_NumDims(model_out_tensor);
- TF_DeleteTensor(model_out_tensor);
- // If the output is a scalar, then return the scalar output
- if (num_dims_out == 0) {
- outputs[0] = model_out.release();
- return absl::OkStatus();
- }
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Sat Oct 12 05:11:17 UTC 2024 - 7.3K bytes - Viewed (0) -
android/guava-tests/benchmark/com/google/common/collect/SortedCopyBenchmark.java
- }
- }
- return dummy;
- }
- @Benchmark
- int ordering(int reps) {
- int dummy = 0;
- if (mutable) {
- for (int i = 0; i < reps; i++) {
- dummy += ORDERING.sortedCopy(input).get(0);
- }
- } else {
- for (int i = 0; i < reps; i++) {
- dummy += ORDERING.immutableSortedCopy(input).get(0);
- }
- }
- return dummy;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 3.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/rank/fusion/RankFusionProcessorTest.java
- if (rankFusionProcessor.search(query, new TestSearchRequestParams(0, pageSize, 0),
- OptionalThing.empty()) instanceof QueryResponseList list) {
- assertEquals(0, list.size());
- assertEquals(0, list.getAllRecordCount());
- assertEquals(1, list.getAllPageCount());
- assertEquals(0, list.getCurrentEndRecordNumber());
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 25.6K bytes - Viewed (0) -
docs/en/docs/img/tutorial/bigger-applications/package.drawio
- <root>
- <mxCell id="0"/>
- <mxCell id="1" parent="0"/>
- <mxCell id="2" value="" style="rounded=0;whiteSpace=wrap;html=1;fontStyle=1;strokeWidth=4;" parent="1" vertex="1">
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Thu May 12 00:06:16 UTC 2022 - 6.1K bytes - Viewed (0) -
internal/bucket/lifecycle/filter.go
- predCount++
- }
- if !f.Tag.IsEmpty() {
- pType = tagPred
- predCount++
- }
- if f.ObjectSizeGreaterThan != 0 {
- pType = sizeGtPred
- predCount++
- }
- if f.ObjectSizeLessThan != 0 {
- pType = sizeLtPred
- predCount++
- }
- // Note: S3 supports empty <Filter></Filter>, so predCount == 0 is
- // valid.
- if predCount > 1 {
- return errInvalidFilter
- }
- var err error
- switch pType {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed Sep 04 17:01:26 UTC 2024 - 6.2K bytes - Viewed (0) -
clause/expression.go
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Tue Oct 10 06:45:48 UTC 2023 - 8.3K bytes - Viewed (0) -
src/test/java/org/codelibs/opensearch/extension/analysis/NGramSynonymTokenizer.java
- readBufferLen = 0;
- ch = 0;
- blkStart = 0;
- nextBlkStart = 0;
- if (synonymLoader != null && synonymLoader.isUpdate(lastModified)) {
- lastModified = synonymLoader.getLastModified();
- final SynonymMap map = synonymLoader.getSynonymMap();
- if (map != null) {
- synonymMap = map;
- fst = synonymMap.fst;
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:54 UTC 2024 - 17K bytes - Viewed (0) -
src/cmd/asm/internal/asm/asm.go
- p.errorf("%s: expected immediate constant; found %s", op, obj.Dconv(prog, addr))
- }
- return addr.Offset
- }
- // getRegister checks that addr represents a register and returns its value.
- func (p *Parser) getRegister(prog *obj.Prog, op obj.As, addr *obj.Addr) int16 {
- if addr.Type != obj.TYPE_REG || addr.Offset != 0 || addr.Name != 0 || addr.Index != 0 {
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Mon Oct 21 14:11:44 UTC 2024 - 25.5K bytes - Viewed (0) -
src/archive/tar/strconv_test.go
- {"-1.999999999", time.Unix(-1, -1e9+1e0), true},
- {"0.000000001", time.Unix(0, 1e0+0e0), true},
- {"0.000001", time.Unix(0, 1e3+0e0), true},
- {"0.001000", time.Unix(0, 1e6+0e0), true},
- {"0", time.Unix(0, 0e0), true},
- {"0.999000", time.Unix(0, 1e9-1e6), true},
- {"0.999999", time.Unix(0, 1e9-1e3), true},
- {"0.999999999", time.Unix(0, 1e9-1e0), true},
- {"1.000000001", time.Unix(+1, +1e0-0e0), true},
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Tue Feb 09 05:28:50 UTC 2021 - 14K bytes - Viewed (0) -
android/guava-tests/benchmark/com/google/common/base/JoinerBenchmark.java
- @Benchmark
- int joinerWithStringDelimiter(int reps) {
- int dummy = 0;
- for (int i = 0; i < reps; i++) {
- dummy ^= JOINER_ON_STRING.join(components).length();
- }
- return dummy;
- }
- /** {@link Joiner} with a character delimiter. */
- @Benchmark
- int joinerWithCharacterDelimiter(int reps) {
- int dummy = 0;
- for (int i = 0; i < reps; i++) {
- dummy ^= JOINER_ON_CHARACTER.join(components).length();
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Dec 04 17:37:03 UTC 2017 - 4.9K bytes - Viewed (0)