Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for setScm (0.13 sec)

  1. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

        }
    
        public Organization getOrganization() {
            return getModel().getOrganization();
        }
    
        public void setScm(Scm scm) {
            getModel().setScm(scm);
        }
    
        public Scm getScm() {
            return getModel().getScm();
        }
    
        public void setMailingLists(List<MailingList> mailingLists) {
            getModel().setMailingLists(mailingLists);
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (SETBCR [1] (FlagGT)) => (MOVDconst [0])
    (SETBCR [1] (Flag(LT|EQ))) => (MOVDconst [1])
    (SETBCR [2] (FlagEQ)) => (MOVDconst [0])
    (SETBCR [2] (Flag(LT|GT))) => (MOVDconst [1])
    
    (SETBC [0] (InvertFlags bool)) => (SETBC [1] bool)
    (SETBC [1] (InvertFlags bool)) => (SETBC [0] bool)
    (SETBC [2] (InvertFlags bool)) => (SETBC [2] bool)
    
    (SETBCR [0] (InvertFlags bool)) => (SETBCR [1] bool)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ppc64/asm.go

    	}
    
    	// tname is a valid relocation to an ABI defined register save/restore function. Re-relocate
    	// them to a go version of these functions in runtime/asm_ppc64x.s
    	ts := ldr.LookupOrCreateSym("runtime.elf_"+s[1], 0)
    	r.SetSym(ts)
    	r.SetAdd(int64((n - minReg) * offMul))
    	firstUse = !ldr.AttrReachable(ts)
    	if firstUse {
    		// This function only becomes reachable now. It has been dropped from
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/riscv/obj.go

    			if p.From.Type == obj.TYPE_REG && p.From.Reg == REG_LR {
    				return true
    			}
    		}
    	}
    
    	return false
    }
    
    // setPCs sets the Pc field in all instructions reachable from p.
    // It uses pc as the initial value and returns the next available pc.
    func setPCs(p *obj.Prog, pc int64) int64 {
    	for ; p != nil; p = p.Link {
    		p.Pc = pc
    		for _, ins := range instructionsForProg(p) {
    			pc += int64(ins.length())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    // Note that BTx instructions use the carry bit, so we need to convert tests for zero flag
    // into tests for carry flags.
    // ULT and SETB check the carry flag; they are identical to CS and SETCS. Same, mutatis
    // mutandis, for UGE and SETAE, and CC and SETCC.
    ((NE|EQ) (TESTL (SHLL (MOVLconst [1]) x) y)) => ((ULT|UGE) (BTL x y))
    ((NE|EQ) (TESTQ (SHLQ (MOVQconst [1]) x) y)) => ((ULT|UGE) (BTQ x y))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  6. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

            request.setMultiModuleProjectDirectory(cliRequest.multiModuleProjectDirectory);
            request.setRootDirectory(cliRequest.rootDirectory);
            request.setTopDirectory(cliRequest.topDirectory);
            request.setPom(determinePom(commandLine, workingDirectory, baseDirectory));
            request.setTransferListener(determineTransferListener(quiet, verbose, commandLine, request));
            request.setExecutionListener(determineExecutionListener());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/xcoff.go

    		lds.smclas = XMC_RW
    	}
    	f.loaderSymbols = append(f.loaderSymbols, lds)
    
    	// Relocation to retrieve the external address
    	sb.AddBytes(make([]byte, 8))
    	r, _ := sb.AddRel(objabi.R_ADDR)
    	r.SetSym(extsym.Sym())
    	r.SetSiz(uint8(ctxt.Arch.PtrSize))
    	// TODO: maybe this could be
    	// sb.SetSize(0)
    	// sb.SetData(nil)
    	// sb.AddAddr(ctxt.Arch, extsym.Sym())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  8. src/cmd/link/internal/loader/loader.go

    func (rel Reloc) SetType(t objabi.RelocType) { rel.Reloc.SetType(uint16(t)) }
    func (rel Reloc) Sym() Sym                   { return rel.l.resolve(rel.r, rel.Reloc.Sym()) }
    func (rel Reloc) SetSym(s Sym)               { rel.Reloc.SetSym(goobj.SymRef{PkgIdx: 0, SymIdx: uint32(s)}) }
    func (rel Reloc) IsMarker() bool             { return rel.Siz() == 0 }
    
    // Aux holds a "handle" to access an aux symbol record from an
    // object file.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
Back to top