Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 528 for DUMMY (0.05 sec)

  1. src/go/build/testdata/empty/dummy

    Jens Frederich <******@****.***> 1413343498 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 15 03:24:58 UTC 2014
    - Viewed (0)
  2. src/runtime/testdata/testwinlibsignal/dummy.go

    //go:build windows
    // +build windows
    
    package main
    
    import "C"
    
    //export Dummy
    func Dummy() int {
    	return 42
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 27 08:36:54 UTC 2021
    - 127 bytes
    - Viewed (0)
  3. tests/testdata/certs/dummy.crl

    Faseela K <******@****.***> 1688586561 +0530
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 05 19:49:21 UTC 2023
    - 638 bytes
    - Viewed (0)
  4. cmd/dummy-handlers.go

    	"github.com/minio/mux"
    	"github.com/minio/pkg/v3/policy"
    )
    
    // Data types used for returning dummy tagging XML.
    // These variables shouldn't be used elsewhere.
    // They are only defined to be used in this file alone.
    
    // GetBucketWebsite  - GET bucket website, a dummy api
    func (api objectAPIHandlers) GetBucketWebsiteHandler(w http.ResponseWriter, r *http.Request) {
    	ctx := newContext(r, w, "GetBucketWebsite")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  5. cmd/dummy-data-generator_test.go

    Klaus Post <******@****.***> 1663610716 +0200
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 19 18:05:16 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  6. android/guava-tests/benchmark/com/google/common/base/ObjectsBenchmark.java

          dummy += Objects.hashCode(S0, S1, S2, S3);
        }
        return dummy;
      }
    
      @Benchmark
      int hashString_5(int reps) {
        int dummy = 0;
        for (int i = 0; i < reps; i++) {
          dummy += Objects.hashCode(S0, S1, S2, S3, S4);
        }
        return dummy;
      }
    
      @Benchmark
      int hashMixed_5(int reps) {
        int dummy = 0;
        for (int i = 0; i < reps; i++) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 2.2K bytes
    - Viewed (0)
  7. test/codegen/compare_and_branch.go

    		dummy()
    	}
    }
    
    // Signed 64-bit comparison with 1/-1 to comparison with 0.
    func si64x0(x chan int64) {
    	// riscv64:"BGTZ"
    	for <-x >= 1 {
    		dummy()
    	}
    
    	// riscv64:"BLEZ"
    	for <-x < 1 {
    		dummy()
    	}
    
    	// riscv64:"BLTZ"
    	for <-x <= -1 {
    		dummy()
    	}
    
    	// riscv64:"BGEZ"
    	for <-x > -1 {
    		dummy()
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 21:01:50 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  8. test/switch.go

    		fallthrough
    	case 2:
    		dummy := 0
    		_ = dummy
    		fallthrough
    	case 3:
    		dummy := 0
    		_ = dummy
    		fallthrough
    	case 4:
    		dummy := 0
    		_ = dummy
    		assert(false, "4")
    	case 5:
    		dummy := 0
    		_ = dummy
    		fallthrough
    	case 6:
    		dummy := 0
    		_ = dummy
    		fallthrough
    	case 7:
    		dummy := 0
    		_ = dummy
    		fallthrough
    	case 8:
    		dummy := 0
    		_ = dummy
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 19 23:30:49 UTC 2022
    - 6.5K bytes
    - Viewed (0)
  9. guava-tests/benchmark/com/google/common/base/ObjectsBenchmark.java

          dummy += Objects.hashCode(S0, S1, S2, S3);
        }
        return dummy;
      }
    
      @Benchmark
      int hashString_5(int reps) {
        int dummy = 0;
        for (int i = 0; i < reps; i++) {
          dummy += Objects.hashCode(S0, S1, S2, S3, S4);
        }
        return dummy;
      }
    
      @Benchmark
      int hashMixed_5(int reps) {
        int dummy = 0;
        for (int i = 0; i < reps; i++) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 2.2K bytes
    - Viewed (0)
  10. android/guava-tests/benchmark/com/google/common/collect/ImmutableListCreationBenchmark.java

        int dummy = 0;
        for (int rep = 0; rep < reps; rep++) {
          ImmutableList.Builder<Object> builder = new ImmutableList.Builder<>(size);
          for (int i = 0; i < size; i++) {
            builder.add(OBJECT);
          }
          dummy += builder.build().size();
        }
        return dummy;
      }
    
      @Benchmark
      int copyArrayList(int reps) {
        int size = this.size;
        int dummy = 0;
        for (int rep = 0; rep < reps; rep++) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 2.3K bytes
    - Viewed (0)
Back to top