Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for gpars (0.04 sec)

  1. gradle/verification-metadata.xml

             <artifact name="dec-0.1.2.jar">
                <pgp value="3A4D86C56CA99373B6D8953DBE84D764623A3644"/>
             </artifact>
          </component>
          <component group="org.codehaus.gpars" name="gpars" version="1.2.1">
             <artifact name="gpars-1.2.1.jar">
                <sha256 value="f9e08bf964f34d129344404c01666276ec43c6704dd74e8d4ca32dcd1d2fb4a8" origin="Key couldn't be downloaded"/>
             </artifact>
          </component>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 22:30:36 UTC 2024
    - 90.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/subst.go

    )
    
    type substMap map[*TypeParam]Type
    
    // makeSubstMap creates a new substitution map mapping tpars[i] to targs[i].
    // If targs[i] is nil, tpars[i] is not substituted.
    func makeSubstMap(tpars []*TypeParam, targs []Type) substMap {
    	assert(len(tpars) == len(targs))
    	proj := make(substMap, len(tpars))
    	for i, tpar := range tpars {
    		proj[tpar] = targs[i]
    	}
    	return proj
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:04:07 UTC 2024
    - 11K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/call.go

    			}
    		} else {
    			// variadic_func(a, b, c)
    			if nargs >= npars-1 {
    				// Create custom parameters for arguments: keep
    				// the first npars-1 parameters and add one for
    				// each argument mapping to the ... parameter.
    				vars := make([]*Var, npars-1) // npars > 0 for variadic functions
    				copy(vars, sig.params.vars)
    				last := sig.params.vars[npars-1]
    				typ := last.typ.(*Slice).elem
    				for len(vars) < nargs {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  4. src/go/types/subst.go

    )
    
    type substMap map[*TypeParam]Type
    
    // makeSubstMap creates a new substitution map mapping tpars[i] to targs[i].
    // If targs[i] is nil, tpars[i] is not substituted.
    func makeSubstMap(tpars []*TypeParam, targs []Type) substMap {
    	assert(len(tpars) == len(targs))
    	proj := make(substMap, len(tpars))
    	for i, tpar := range tpars {
    		proj[tpar] = targs[i]
    	}
    	return proj
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:04:07 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  5. src/go/types/call.go

    			}
    		} else {
    			// variadic_func(a, b, c)
    			if nargs >= npars-1 {
    				// Create custom parameters for arguments: keep
    				// the first npars-1 parameters and add one for
    				// each argument mapping to the ... parameter.
    				vars := make([]*Var, npars-1) // npars > 0 for variadic functions
    				copy(vars, sig.params.vars)
    				last := sig.params.vars[npars-1]
    				typ := last.typ.(*Slice).elem
    				for len(vars) < nargs {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_s390x.go

    	SizeofIovec           = 0x10
    	SizeofMsghdr          = 0x38
    	SizeofCmsghdr         = 0x10
    )
    
    const (
    	SizeofSockFprog = 0x10
    )
    
    type PtraceRegs struct {
    	Psw                      PtracePsw
    	Gprs                     [16]uint64
    	Acrs                     [16]uint32
    	Orig_gpr2                uint64
    	Fp_regs                  PtraceFpregs
    	Per_info                 PtracePer
    	Ieee_instruction_pointer uint64
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/bpxsvc_zos.go

    	PT_REGHSET              = 22 // Read all GPRHs
    	PT_ATTACH               = 30 // Attach to a process
    	PT_DETACH               = 31 // Detach from a process
    	PT_REGSET               = 32 // Read all GPRs
    	PT_REATTACH             = 33 // Reattach to a process
    	PT_LDINFO               = 34 // Read loader info
    	PT_MULTI                = 35 // Multi process mode
    	PT_LD64INFO             = 36 // RMODE64 Info Area
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  8. docs/fr/docs/alternatives.md

    Maintenant, APIStar est un ensemble d'outils pour valider les spécifications OpenAPI, et non un framework web.
    
    !!! info
    APIStar a été créé par Tom Christie. Le même gars qui a créé :
    
        * Django REST Framework
        * Starlette (sur lequel **FastAPI** est basé)
        * Uvicorn (utilisé par Starlette et **FastAPI**)
    
    !!! check "A inspiré **FastAPI** à"
    Exister.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 27.5K bytes
    - Viewed (0)
Back to top