Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 576 for exportedp1 (0.3 sec)

  1. src/go/internal/gccgoimporter/parser.go

    		if r == scanner.EOF {
    			p.error("unexpected EOF")
    		}
    		got += utf8.RuneLen(r)
    	}
    }
    
    // Types = "types" maxp1 exportedp1 (offset length)* .
    func (p *parser) parseTypes(pkg *types.Package) {
    	maxp1 := p.parseInt()
    	exportedp1 := p.parseInt()
    	p.typeList = make([]types.Type, maxp1, maxp1)
    
    	type typeOffset struct {
    		offset int
    		length int
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 02 23:14:07 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/AbstractClasspathEntry.java

            return exported == that.exported
                && Objects.equal(path, that.path)
                && Objects.equal(accessRules, that.accessRules)
                && Objects.equal(getNativeLibraryLocation(), that.getNativeLibraryLocation());
        }
    
        @Override
        public int hashCode() {
            return Objects.hashCode(path, exported, accessRules, getNativeLibraryLocation());
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  3. src/go/printer/testdata/comments.x

    // The I0 interface; no method is exported.
    type I0 interface {
    	// contains filtered or unexported methods
    }
    
    // The I1 interface; some methods are not exported.
    type I1 interface {
    	I0
    	F(x float) float	// exported methods
    	// contains filtered or unexported methods
    }
    
    // The I2 interface; all methods are exported.
    type I2 interface {
    	I0
    	F(x float) float	// exported method
    	G(x float) float	// exported method
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:50 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  4. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/model/ModuleDependency.java

        public boolean isExported() {
            return exported;
        }
    
        public void setExported(boolean exported) {
            this.exported = exported;
        }
    
        @Override
        public void addToNode(Node parentNode) {
            Map<String, Object> attributes = new LinkedHashMap<>();
            attributes.put("type", "module");
            attributes.put("module-name", name);
            if (exported) {
                attributes.put("exported", "");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 13:57:30 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. src/cmd/doc/testdata/pkg.go

    	varSix  = 6
    )
    
    // Comment about exported function.
    func ExportedFunc(a int) bool {
    	// BUG(me): function body note
    	return true != false
    }
    
    // Comment about internal function.
    func internalFunc(a int) bool
    
    // Comment about exported type.
    type ExportedType struct {
    	// Comment before exported field.
    	ExportedField                   int // Comment on line with exported field.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:16:55 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  6. src/cmd/doc/doc_test.go

    	{
    		"type",
    		[]string{"-src", p, `ExportedType`},
    		[]string{
    			`Comment about exported type`, // Include comment.
    			`type ExportedType struct`,    // Type definition.
    			`Comment before exported field`,
    			`ExportedField.*Comment on line with exported field`,
    			`ExportedEmbeddedType.*Comment on line with exported embedded field`,
    			`unexportedType.*Comment on line with unexported embedded field`,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:16:55 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  7. test/fixedbugs/bug324.dir/prog.go

    	//	*Implementation does not implement p.Exported (missing p.private method)
    	// px = new(Implementation)
    
    	// this assignment is correctly illegal:
    	//	p.Exported does not implement Exported (missing private method)
    	// x = px
    
    	// this assignment unexpectedly compiles and then executes
    	defer func() {
    		recover()
    	}()
    	x = px.(Exported)
    	
    	println("should not get this far")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 07 16:37:05 UTC 2012
    - 1.2K bytes
    - Viewed (0)
  8. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/tooling/idea/DefaultIdeaSingleEntryLibraryDependency.java

            this.javadoc = javadoc;
            return this;
        }
    
        public boolean getExported() {
            return exported;
        }
    
        public DefaultIdeaSingleEntryLibraryDependency setExported(Boolean exported) {
            this.exported = exported;
            return this;
        }
    
        public IdeaDependencyScope getScope() {
            return scope;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  9. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/tooling/idea/DefaultIdeaModuleDependency.java

        }
    
        public String getTargetModuleName() {
            return targetModuleName;
        }
    
        public boolean getExported() {
            return exported;
        }
    
        public DefaultIdeaModuleDependency setExported(boolean exported) {
            this.exported = exported;
            return this;
        }
    
        @Override
        public String toString() {
            return "DefaultIdeaModuleDependency{"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/model/ModuleLibrary.java

        public void setScope(String scope) {
            this.scope = scope;
        }
    
        /**
         * Whether the library is exported to dependent modules.
         */
        public boolean isExported() {
            return exported;
        }
    
        public void setExported(boolean exported) {
            this.exported = exported;
        }
    
        @Override
        public void addToNode(Node parentNode) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 13:57:30 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top