Search Options

Results per page
Sort
Preferred Languages
Advance

Results 231 - 240 of 4,296 for 0$ (0.01 sec)

  1. tensorflow/c/eager/gradient_checker.cc

    1. AbstractTensorHandlePtr model_out(model_outputs[0]);
    2.  
    3. TF_Tensor* model_out_tensor;
    4. TF_RETURN_IF_ERROR(GetValue(model_out.get(), &model_out_tensor));
    5. int num_dims_out = TF_NumDims(model_out_tensor);
    6. TF_DeleteTensor(model_out_tensor);
    7.  
    8. // If the output is a scalar, then return the scalar output
    9. if (num_dims_out == 0) {
    10. outputs[0] = model_out.release();
    11. return absl::OkStatus();
    12. }
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Sat Oct 12 05:11:17 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  2. android/guava-tests/benchmark/com/google/common/collect/SortedCopyBenchmark.java

    1. }
    2. }
    3. return dummy;
    4. }
    5.  
    6. @Benchmark
    7. int ordering(int reps) {
    8. int dummy = 0;
    9. if (mutable) {
    10. for (int i = 0; i < reps; i++) {
    11. dummy += ORDERING.sortedCopy(input).get(0);
    12. }
    13. } else {
    14. for (int i = 0; i < reps; i++) {
    15. dummy += ORDERING.immutableSortedCopy(input).get(0);
    16. }
    17. }
    18. 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)
  3. src/test/java/org/codelibs/fess/rank/fusion/RankFusionProcessorTest.java

    1. if (rankFusionProcessor.search(query, new TestSearchRequestParams(0, pageSize, 0),
    2. OptionalThing.empty()) instanceof QueryResponseList list) {
    3. assertEquals(0, list.size());
    4. assertEquals(0, list.getAllRecordCount());
    5. assertEquals(1, list.getAllPageCount());
    6. 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)
  4. docs/en/docs/img/tutorial/bigger-applications/package.drawio

    1. <root>
    2. <mxCell id="0"/>
    3. <mxCell id="1" parent="0"/>
    4. <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)
  5. internal/bucket/lifecycle/filter.go

    1. predCount++
    2. }
    3. if !f.Tag.IsEmpty() {
    4. pType = tagPred
    5. predCount++
    6. }
    7. if f.ObjectSizeGreaterThan != 0 {
    8. pType = sizeGtPred
    9. predCount++
    10. }
    11. if f.ObjectSizeLessThan != 0 {
    12. pType = sizeLtPred
    13. predCount++
    14. }
    15. // Note: S3 supports empty <Filter></Filter>, so predCount == 0 is
    16. // valid.
    17. if predCount > 1 {
    18. return errInvalidFilter
    19. }
    20.  
    21. var err error
    22. 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)
  6. clause/expression.go

    1. } else {
    2. switch rv := reflect.ValueOf(expr.Vars[idx]); rv.Kind() {
    3. case reflect.Slice, reflect.Array:
    4. if rv.Len() == 0 {
    5. builder.AddVar(builder, nil)
    6. } else {
    7. for i := 0; i < rv.Len(); i++ {
    8. if i > 0 {
    9. builder.WriteByte(',')
    10. }
    11. builder.AddVar(builder, rv.Index(i).Interface())
    12. }
    13. }
    14. default:
    Registered: Sun Nov 03 09:35:10 UTC 2024
    - Last Modified: Tue Oct 10 06:45:48 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/opensearch/extension/analysis/NGramSynonymTokenizer.java

    1. readBufferLen = 0;
    2. ch = 0;
    3. blkStart = 0;
    4. nextBlkStart = 0;
    5. if (synonymLoader != null && synonymLoader.isUpdate(lastModified)) {
    6. lastModified = synonymLoader.getLastModified();
    7. final SynonymMap map = synonymLoader.getSynonymMap();
    8. if (map != null) {
    9. synonymMap = map;
    10. 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)
  8. src/cmd/asm/internal/asm/asm.go

    1. p.errorf("%s: expected immediate constant; found %s", op, obj.Dconv(prog, addr))
    2. }
    3. return addr.Offset
    4. }
    5.  
    6. // getRegister checks that addr represents a register and returns its value.
    7. func (p *Parser) getRegister(prog *obj.Prog, op obj.As, addr *obj.Addr) int16 {
    8. 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)
  9. src/archive/tar/strconv_test.go

    1. {"-1.999999999", time.Unix(-1, -1e9+1e0), true},
    2. {"0.000000001", time.Unix(0, 1e0+0e0), true},
    3. {"0.000001", time.Unix(0, 1e3+0e0), true},
    4. {"0.001000", time.Unix(0, 1e6+0e0), true},
    5. {"0", time.Unix(0, 0e0), true},
    6. {"0.999000", time.Unix(0, 1e9-1e6), true},
    7. {"0.999999", time.Unix(0, 1e9-1e3), true},
    8. {"0.999999999", time.Unix(0, 1e9-1e0), true},
    9. {"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)
  10. android/guava-tests/benchmark/com/google/common/base/JoinerBenchmark.java

    1. @Benchmark
    2. int joinerWithStringDelimiter(int reps) {
    3. int dummy = 0;
    4. for (int i = 0; i < reps; i++) {
    5. dummy ^= JOINER_ON_STRING.join(components).length();
    6. }
    7. return dummy;
    8. }
    9.  
    10. /** {@link Joiner} with a character delimiter. */
    11. @Benchmark
    12. int joinerWithCharacterDelimiter(int reps) {
    13. int dummy = 0;
    14. for (int i = 0; i < reps; i++) {
    15. 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)
Back to top