Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 42 for Ra (1.1 sec)

  1. src/net/http/server.go

    	if oe, ok := err.(*net.OpError); ok && oe.Op == "read" {
    		return true
    	}
    	return false
    }
    
    // Serve a new connection.
    func (c *conn) serve(ctx context.Context) {
    	if ra := c.rwc.RemoteAddr(); ra != nil {
    		c.remoteAddr = ra.String()
    	}
    	ctx = context.WithValue(ctx, LocalAddrContextKey, c.rwc.LocalAddr())
    	var inFlightResponse *response
    	defer func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  2. cluster/gce/util.sh

      declare -r name="${1}"
      declare -r encoded="${2}"
      declare -r kv_sep="${3:-:}"
      declare -r item_sep="${4:-,}"
    
      declare -a pairs # indexed array
      declare -A map # associative array
      IFS="${item_sep}" read -ra pairs <<<"${encoded}" # split on item_sep
      for pair in "${pairs[@]}"; do
        declare key
        declare value
        IFS="${kv_sep}" read -r key value <<<"${pair}" # split on kv_sep
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  3. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    ext();for(;y;)b.push(y),y=y.next();c.append(b)}),c&&(s||t[t.length-1]).after(c)}}i.remove()}var Ra=Symbol("rootRuleMergeSel"),Mp=Symbol("rootRuleEscapes");function AS(i){let{params:e}=i,{type:t,selector:r,escapes:n}=kS(e);if(t==="unknown")throw i.error(`Unknown @${i.name} parameter ${JSON.stringify(e)}`);if(t==="basic"&&r){let a=new Pp({selector:r,nodes:i.nodes});i.removeAll(),i.append(a)}i[Mp]=n,i[Ra]=n?!n("all"):t==="noop"}var Ma=Symbol("hasRootRule");Ba.exports=(i={})=>{let e=Rp(["media","sup...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
  4. cmd/batch-handlers.go

    	JobType       string    `json:"jobType" msg:"jt"`
    	StartTime     time.Time `json:"startTime" msg:"st"`
    	LastUpdate    time.Time `json:"lastUpdate" msg:"lu"`
    	RetryAttempts int       `json:"retryAttempts" msg:"ra"`
    	Attempts      int       `json:"attempts" msg:"at"`
    
    	Complete bool `json:"complete" msg:"cmp"`
    	Failed   bool `json:"failed" msg:"fld"`
    
    	// Last bucket/object batch replicated
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 56K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/x86/asm6.go

    	return
    
    bad:
    	ctxt.Diag("asmand: bad address %v", obj.Dconv(p, a))
    }
    
    func (ab *AsmBuf) asmand(ctxt *obj.Link, cursym *obj.LSym, p *obj.Prog, a *obj.Addr, ra *obj.Addr) {
    	ab.asmandsz(ctxt, cursym, p, a, reg[ra.Reg], regrex[ra.Reg], 0)
    }
    
    func (ab *AsmBuf) asmando(ctxt *obj.Link, cursym *obj.LSym, p *obj.Prog, a *obj.Addr, o int) {
    	ab.asmandsz(ctxt, cursym, p, a, o, 0, 0)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  6. src/net/http/serve_test.go

    	response2 := <-response2c
    	if g, e := response2, "RA:12.12.12.12:12"; g != e {
    		t.Fatalf("response 2 addr = %q; want %q", g, e)
    	}
    
    	// Finish the first response.
    	conn1.(*blockingRemoteAddrConn).addrs <- &net.TCPAddr{
    		IP: net.ParseIP("21.21.21.21"), Port: 21}
    
    	// ... and see it
    	response1 := <-response1c
    	if g, e := response1, "RA:21.21.21.21:21"; g != e {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  7. src/net/dnsclient_unix_test.go

    	}
    }
    
    // TestNoSuchHost verifies that tryOneName works correctly when the domain does
    // not exist.
    //
    // Issue 12778: verify that NXDOMAIN without RA bit errors as "no such host"
    // and not "server misbehaving"
    //
    // Issue 25336: verify that NXDOMAIN errors fail fast.
    //
    // Issue 27525: verify that empty answers fail fast.
    func TestNoSuchHost(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  8. go.sum

    google.golang.org/api v0.4.0/go.mod h1:8k5glujaEP+g9n7WNsDg8QP6cUVNI86fCNMcbazEtwE=
    google.golang.org/api v0.7.0/go.mod h1:WtwebWUNSVBH/HAw79HIFXZNqEvBhG+Ra+ax0hx3E3M=
    google.golang.org/api v0.8.0/go.mod h1:o4eAsZoiT+ibD93RtjEohWalFOjRDx6CVaqeizhEnKg=
    google.golang.org/api v0.9.0/go.mod h1:o4eAsZoiT+ibD93RtjEohWalFOjRDx6CVaqeizhEnKg=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 93.1K bytes
    - Viewed (0)
  9. cluster/gce/gci/configure-helper.sh

      #   command=["/bin/sh", "-c", "exec KUBE_EXEC_BINARY --param1=val1 --param2-val2"].
      # New format:
      #   command=["KUBE_EXEC_BINARY"]  # No shell dependencies.
      #   args=["--param1=val1", "--param2-val2"]
      IFS=' ' read -ra FLAGS <<< "$1"
      params=""
      for flag in "${FLAGS[@]}"; do
        params+="\n\"$flag\","
      done
      if [ -n "$params" ]; then
        echo "${params::-1}"  #  drop trailing comma
      fi
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  10. cmd/testdata/undeleteable-object.tgz

    I’“ª *ïÉf&Ñ´ ­ðê I-‚÷¥O„=uÉ€ ‚· Žv3$Äk Úœ9Øžu%?N •L6jDš¢ wr4(oƒâúÍÛ] †®DÕNt ‹ Ê\ ÃeþÂB˜þвü'Øù-<ä¢@ÕÏ ë Ý£ƒã—ò ´z •g}LjìjØaåú‘£„¸y ­M ª 'BÀ y_ ¦ìi6é´J J }v…Lb•‰ ½RWJ¿ohõL÷ne <¤‹e÷@ôåæ|6XÃ~I XoúØx${(û :¢ ôá "_Ä âùX ï³oƒóªÜ×U†´é{Ó“ËŒ ‘£ J9b h UÈ gF · šØ JbY·½“ú Õܯ0¼l mÝ Š¯> Ÿ—KS`ÒÁÿ®ºçu‘[O¥È µ@%{þ ª %Ñ› 1 $­À6÷e‰T§f?³ù©‹ßV multisitea/data/disterasure/xl2/.minio.sys/pool.bin/xl.meta XL2 Æ w Ä$•Ä Ó ÉŸþ¥¹ °Ä ºHØH Å Kƒ¤Type ¥V2ObjÞ ¢IDÄ ¤DDirÄ 5 A·DoCÁ§slÂ0RÿŦEcAlgo £EcM £EcN §EcBSizeÒ §EcIndex ¦EcDistœ...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 26 00:31:12 UTC 2024
    - 8.7M bytes
    - Viewed (0)
Back to top