Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for NV (0.31 sec)

  1. src/database/sql/sql_test.go

    func (c *nvcConn) CheckNamedValue(nv *driver.NamedValue) error {
    	if c.skipNamedValueCheck {
    		return driver.ErrSkip
    	}
    	switch v := nv.Value.(type) {
    	default:
    		return driver.ErrSkip
    	case Out:
    		switch ov := v.Dest.(type) {
    		default:
    			return errors.New("unknown NameValueCheck OUTPUT type")
    		case *string:
    			*ov = "from-server"
    			nv.Value = "OUT:*string"
    		}
    		return nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    		default:
    			st.fail("unrecognized special G name code")
    			panic("not reached")
    		}
    	}
    }
    
    // callOffset parses:
    //
    //	<call-offset> ::= h <nv-offset> _
    //	              ::= v <v-offset> _
    //
    //	<nv-offset> ::= <(offset) number>
    //
    //	<v-offset> ::= <(offset) number> _ <(virtual offset) number>
    //
    // The c parameter, if not 0, is a character we just read which is the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  3. src/time/time.go

    // tail of buf, omitting trailing zeros. It omits the decimal
    // point too when the fraction is 0. It returns the index where the
    // output bytes begin and the value v/10**prec.
    func fmtFrac(buf []byte, v uint64, prec int) (nw int, nv uint64) {
    	// Omit trailing zeros up to and including decimal point.
    	w := len(buf)
    	print := false
    	for i := 0; i < prec; i++ {
    		digit := v % 10
    		print = print || digit != 0
    		if print {
    			w--
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssagen/ssa.go

    		cap = len
    	case t.IsPtr():
    		if !t.Elem().IsArray() {
    			s.Fatalf("bad ptr to array in slice %v\n", t)
    		}
    		nv := s.nilCheck(v)
    		ptr = s.newValue1(ssa.OpCopy, types.NewPtr(t.Elem().Elem()), nv)
    		len = s.constInt(types.Types[types.TINT], t.Elem().NumElem())
    		cap = len
    	default:
    		s.Fatalf("bad type in slice %v\n", t)
    	}
    
    	// Set default values
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  5. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    this.result}};lc.exports=Gi;Gi.default=Gi});var cc=v((wT,fc)=>{l();"use strict";var nv=uc(),sv=Fs(),av=Ti(),ov=Et(),Pt=class{constructor(e=[]){this.version="8.4.24",this.plugins=this.normalize(e)}use(e){return this.plugins=this.plugins.concat(this.normalize([e])),this}process(e,t={}){return this.plugins.length===0&&typeof t.parser=="undefined"&&typeof t.stringifier=="undefined"&&typeof t.syntax=="undefined"?new nv(this,e,t):new sv(this,e,t)}normalize(e){let t=[];for(let r of e)if(r.postcss===!0?r...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
  6. RELEASE.md

    Patrice Vignola, Pavani Majety, Philipp Hack, Prianka Liz Kariat, Rahul Batra,
    RajeshT, Renato Golin, riestere, Roger Iyengar, Rohit Santhanam, Rsanthanam-Amd,
    Sadeed Pv, Samuel Marks, Shimokawa, Naoaki, Siddhesh Kothadi, Simengliu-Nv,
    Sindre Seppola, snadampal, Srinivasan Narayanamoorthy, sushreebarsa,
    syedshahbaaz, Tamas Bela Feher, Tatwai Chong, Thibaut Goetghebuer-Planchon,
    tilakrayal, Tom Anderson, Tomohiro Endo, Trevor Morris, vibhutisawant,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top