Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for test6128 (0.26 sec)

  1. src/cmd/cgo/internal/test/test.go

    		t.Errorf("expected 5, got %v", v)
    	}
    }
    
    // issue 5986
    
    func test5986(t *testing.T) {
    	C.output5986()
    }
    
    // issue 6128
    
    func test6128() {
    	// nothing to run, just make sure this compiles.
    	_ = C.X
    }
    
    // issue 6390
    
    func test6390(t *testing.T) {
    	p1 := C.malloc(1024)
    	if p1 == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/vendor_complex.txt

    [!cross] [exec:gccgo] go build -compiler=gccgo -o complex.exe complex
    
    -- complex/main.go --
    package main
    
    import (
    	_ "complex/nest/sub/test12"
    	_ "complex/nest/sub/test23"
    	"complex/w"
    	"v"
    )
    
    func main() {
    	println(v.Hello + " " + w.World)
    }
    
    -- complex/nest/sub/test12/p.go --
    package test12
    
    // Check that vendor/v1 is used but vendor/v2 is NOT used (sub/vendor/v2 wins).
    
    import (
    	"v1"
    	"v2"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 18 14:52:30 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  3. docs/debugging/README.md

    `xl-meta` accepts zip files as input and will output all `xl.meta` files found within the archive. For example:
    
    ```
    $ mc support inspect play/test123/test*/xl.meta
    mc: File data successfully downloaded as inspect.6f96b336.zip
    $ xl-meta inspect.6f96b336.zip
    {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Feb 25 01:17:53 UTC 2022
    - 8.7K bytes
    - Viewed (0)
  4. pkg/apis/networking/validation/validation_test.go

    			newIngressClass: makeValidIngressClass("test123", "foo.co/bar", setResourceVersion("2")),
    			oldIngressClass: makeValidIngressClass("test123", "foo.co/different"),
    			expectedErrs:    field.ErrorList{field.Invalid(field.NewPath("spec").Child("controller"), "foo.co/bar", apimachineryvalidation.FieldImmutableErrorMsg)},
    		},
    		"parameters change": {
    			newIngressClass: makeValidIngressClass("test123", "foo.co/bar",
    				setResourceVersion("2"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 73.3K bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/test/cgo_test.go

    package cgotest
    
    import "testing"
    
    // The actual test functions are in non-_test.go files
    // so that they can use cgo (import "C").
    // These wrappers are here for gotest to find.
    
    func Test1328(t *testing.T)                  { test1328(t) }
    func Test1560(t *testing.T)                  { test1560(t) }
    func Test1635(t *testing.T)                  { test1635(t) }
    func Test3250(t *testing.T)                  { test3250(t) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 21:53:11 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  6. src/net/http/server_test.go

    		},
    		{
    			"/%x", // patterns that do not unescape are left unchanged
    			[]string{"/%25x"},
    			[]string{"/%25x"},
    		},
    	}
    
    	run := func(t *testing.T, test121 bool) {
    		defer func(u bool) { use121 = u }(use121)
    		use121 = test121
    
    		mux := NewServeMux()
    		for _, m := range matches {
    			mux.HandleFunc(m.pattern, func(w ResponseWriter, r *Request) {})
    		}
    
    		for _, m := range matches {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 13 13:54:22 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  7. test/recover.go

    		test9reflect1()
    		test9reflect2()
    	}
    	test10()
    	if !interp {
    		test10reflect1()
    		test10reflect2()
    	}
    	test11()
    	if !interp {
    		test11reflect1()
    		test11reflect2()
    	}
    	test111()
    	test12()
    	if !interp {
    		test12reflect1()
    		test12reflect2()
    	}
    	test13()
    	if !interp {
    		test13reflect1()
    		test13reflect2()
    	}
    	test14()
    	if !interp {
    		test14reflect1()
    		test14reflect2()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 10.6K bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-filepath.h

      static FilePath GetCurrentDir();
    
      // Given directory = "dir", base_name = "test", number = 0,
      // extension = "xml", returns "dir/test.xml". If number is greater
      // than zero (e.g., 12), returns "dir/test_12.xml".
      // On Windows platform, uses \ as the separator rather than /.
      static FilePath MakeFileName(const FilePath& directory,
                                   const FilePath& base_name,
                                   int number,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-filepath.h

      static FilePath GetCurrentDir();
    
      // Given directory = "dir", base_name = "test", number = 0,
      // extension = "xml", returns "dir/test.xml". If number is greater
      // than zero (e.g., 12), returns "dir/test_12.xml".
      // On Windows platform, uses \ as the separator rather than /.
      static FilePath MakeFileName(const FilePath& directory,
                                   const FilePath& base_name,
                                   int number,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/test/testx.go

    func BackIntoGo() {
    	x := 1
    
    	for i := 0; i < 10000; i++ {
    		xvariadic(x)
    		if x != 1 {
    			panic("x is not 1?")
    		}
    	}
    }
    
    func xvariadic(x ...interface{}) {
    }
    
    func test1328(t *testing.T) {
    	C.IntoC()
    }
    
    // issue 1560
    // Test that C functions and Go functions run in parallel.
    
    var (
    	issue1560 int32
    
    	issue1560Ch = make(chan bool, 2)
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 21:53:11 UTC 2023
    - 10.6K bytes
    - Viewed (0)
Back to top