Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 296 for Dummy3 (0.2 sec)

  1. 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)
  2. 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)
  3. 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)
  4. test/fixedbugs/bug446.go

    func (r T) Method2() int { return b }
    
    // dummy1 and dummy2 must be initialized after a and b.
    var dummy1 = T(0).Method1()
    var dummy2 = T.Method2(0)
    
    // Use a function call to force generating code.
    var a = identity(1)
    var b = identity(2)
    
    func identity(a int) int { return a }
    
    func main() {
    	if dummy1 != 1 {
    		panic("dummy1 != 1")
    	}
    	if dummy2 != 2 {
    		panic("dummy2 != 2")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 30 07:14:49 UTC 2012
    - 699 bytes
    - Viewed (0)
  5. 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)
  6. staging/src/k8s.io/apiserver/pkg/authentication/request/websocket/protocol_test.go

    			ExpectedOK:              true,
    			ExpectedErr:             false,
    			ExpectedProtocolHeaders: []string{"dummy,dummy2"},
    		},
    		"invalid bearer token": {
    			ProtocolHeaders:         []string{"base64url.bearer.authorization.k8s.io.dG9rZW4,dummy"},
    			TokenAuth:               authenticator.TokenFunc(func(ctx context.Context, t string) (*authenticator.Response, bool, error) { return nil, false, nil }),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 08 21:43:39 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  7. src/runtime/debug/heapdump_test.go

    	println("starting dump")
    	WriteHeapDump(f.Fd())
    	println("done dump")
    }
    
    type G[T any] struct{}
    type I interface {
    	M()
    }
    
    //go:noinline
    func (g G[T]) M() {}
    
    var dummy I = G[int]{}
    var dummy2 I = G[G[int]]{}
    
    func TestWriteHeapDumpTypeName(t *testing.T) {
    	if runtime.GOOS == "js" {
    		t.Skipf("WriteHeapDump is not available on %s.", runtime.GOOS)
    	}
    	f, err := os.CreateTemp("", "heapdumptest")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 12 00:32:29 UTC 2022
    - 2K bytes
    - Viewed (0)
  8. 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)
  9. tests/integration/security/sds_ingress/util/generate_certs.sh

    openssl ca -config "${WD}/crlA.conf" -revoke "${WD}/clientA1.crt"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 05 22:01:21 UTC 2023
    - 5K bytes
    - Viewed (0)
  10. 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)
Back to top