Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,052 for exportId (0.28 sec)

  1. test/typeparam/gencrawler.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Testing that all methods of a private generic type are exported, if a variable
    // with that type is exported.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 301 bytes
    - Viewed (0)
  2. hack/golangci.yaml.in

          path-except: cmd/kubeadm
    
        {{- if not .Hints}}
    
        # The following issues were deemed "might be worth fixing, needs to be
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 13 13:12:04 UTC 2024
    - 8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/templates/build-src-plugin-java-module-transform/buildSrc/src/main/java/org/gradle/sample/transform/javamodules/ModuleInfo.java

        private List<String> exports = new ArrayList<>();
        private List<String> requires = new ArrayList<>();
        private List<String> requiresTransitive = new ArrayList<>();
    
        ModuleInfo(String moduleName, String moduleVersion) {
            this.moduleName = moduleName;
            this.moduleVersion = moduleVersion;
        }
    
        public void exports(String exports) {
            this.exports.add(exports);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/vendor_list_issue11977.txt

    package tx3_test
    
    import "vendor.org/tx3"
    import "testing"
    
    var Found = tx3.Exported
    
    func TestNop(t *testing.T) {}
    
    -- $GOPATH/src/github.com/rsc/go-get-issue-11864/vendor/vendor.org/tx3/export_test.go --
    package tx3
    
    var Exported = true
    
    -- $GOPATH/src/github.com/rsc/go-get-issue-11864/vendor/vendor.org/tx3/tx3.go --
    package tx3
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 14:41:02 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. src/runtime/sizeof_test.go

    	var tests = []struct {
    		val    any     // type as a value
    		_32bit uintptr // size on 32bit platforms
    		_64bit uintptr // size on 64bit platforms
    	}{
    		{runtime.G{}, 272, 432},   // g, but exported for testing
    		{runtime.Sudog{}, 56, 88}, // sudog, but exported for testing
    	}
    
    	for _, tt := range tests {
    		want := tt._32bit
    		if _64bit {
    			want = tt._64bit
    		}
    		got := reflect.TypeOf(tt.val).Size()
    		if want != got {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 22:07:41 UTC 2024
    - 892 bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/extension/internal/CoreExportsProvider.java

        private final CoreExports exports;
    
        @Inject
        public CoreExportsProvider(CoreRealm coreRealm) {
            this(new CoreExports(CoreExtensionEntry.discoverFrom(coreRealm.getRealm())));
        }
    
        public CoreExportsProvider(CoreExports exports) {
            this.exports = Objects.requireNonNull(exports);
        }
    
        public CoreExports get() {
            return exports;
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:53:42 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  7. test/fixedbugs/issue15470.go

    // Copyright 2016 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.
    
    // Issue 15470: Make sure special-case signatures can
    // be exported and imported w/o problems.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 29 00:42:13 UTC 2016
    - 288 bytes
    - Viewed (0)
  8. test/fixedbugs/issue5260.go

    // rundir
    
    // Copyright 2013 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.
    
    // Issue 5260: Unicode BOM in exported string constant
    // cannot be read back during package import.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 18:45:18 UTC 2013
    - 289 bytes
    - Viewed (0)
  9. test/fixedbugs/bug324.dir/p.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.
    
    package p
    
    type Exported interface {
    	private()
    }
    
    type Implementation struct{}
    
    func (p *Implementation) private() { println("p.Implementation.private()") }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 21 12:14:50 UTC 2011
    - 347 bytes
    - Viewed (0)
  10. test/fixedbugs/bug398.go

    // license that can be found in the LICENSE file.
    
    // Used to crash compiler in interface type equality check.
    // (This test used to have problems - see #15596.)
    
    package p
    
    // exported interfaces
    
    type I1 interface { // ERROR "invalid recursive type: anonymous interface refers to itself"
          F() interface{I1}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 19 04:39:56 UTC 2023
    - 951 bytes
    - Viewed (0)
Back to top