Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for java_test (0.53 sec)

  1. src/cmd/go/testdata/script/cover_coverprofile_multipkg.txt

    	if AFunc() != 42 {
    		t.Fatalf("bad!")
    	}
    }
    -- aa/aa.go --
    package aa
    
    import "M/it"
    
    func AA(y int) int {
    	c := it.Conc{}
    	x := it.Callee(&c)
    	println(x, y)
    	return 0
    }
    -- aa/aa_test.go --
    package aa
    
    import "testing"
    
    func TestMumble(t *testing.T) {
    	AA(3)
    }
    -- b/b.go --
    package b
    
    func init() {
    	println("package 'b' init: release the kraken")
    }
    
    func BFunc() int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 17:02:36 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/text/unicode/norm/normalize.go

    // Copyright 2011 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Note: the file data_test.go that is generated should not be checked in.
    //go:generate go run maketables.go triegen.go
    //go:generate go test -tags test
    
    // Package norm contains types and functions for normalizing Unicode strings.
    package norm // import "golang.org/x/text/unicode/norm"
    
    import (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:26:23 UTC 2022
    - 14.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/text/unicode/norm/normalize.go

    // Copyright 2011 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Note: the file data_test.go that is generated should not be checked in.
    //go:generate go run maketables.go triegen.go
    //go:generate go test -tags test
    
    // Package norm contains types and functions for normalizing Unicode strings.
    package norm // import "golang.org/x/text/unicode/norm"
    
    import (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.9K bytes
    - Viewed (0)
Back to top