Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for postinst (0.58 sec)

  1. pom.xml

    						<fileEncoding>utf-8</fileEncoding>
    					</preinstallScriptlet>
    					<postinstallScriptlet>
    						<scriptFile>${project.build.directory}/generated-packaging/rpm/scripts/postinst</scriptFile>
    						<fileEncoding>utf-8</fileEncoding>
    					</postinstallScriptlet>
    					<preremoveScriptlet>
    						<scriptFile>${project.build.directory}/generated-packaging/rpm/scripts/prerm</scriptFile>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 30 06:49:02 UTC 2024
    - 48.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/api_test.go

    				}
    				typ := inst.Inst.Type
    
    				testInst := test.instances[ii]
    				if got := inst.Name.Value; got != testInst.name {
    					t.Fatalf("got name %s, want %s", got, testInst.name)
    				}
    
    				if len(targs) != len(testInst.targs) {
    					t.Fatalf("got %d type arguments; want %d", len(targs), len(testInst.targs))
    				}
    				for i, targ := range targs {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  3. src/cmd/go/internal/load/pkg.go

    		ImportStack []string
    		Pos         string
    		Err         string
    	}{p.ImportStack, p.Pos, p.Err.Error()}
    	return json.Marshal(perr)
    }
    
    func (p *PackageError) setPos(posList []token.Position) {
    	if len(posList) == 0 {
    		return
    	}
    	pos := posList[0]
    	pos.Filename = base.ShortPath(pos.Filename)
    	p.Pos = pos.String()
    }
    
    // ImportPathError is a type of error that prevents a package from being loaded
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
Back to top