Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 51 for DR (0.05 sec)

  1. pilot/pkg/model/push_context.go

    	// Map of dest rule host and the merged destination rules for that host.
    	// Only stores wildcard destination rules
    	wildcardDestRules map[host.Name][]*ConsolidatedDestRule
    }
    
    // ConsolidatedDestRule represents a dr and from which it is consolidated.
    type ConsolidatedDestRule struct {
    	// rule is merged from the following destinationRules.
    	rule *config.Config
    	// the original dest rules from which above rule is merged.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  2. src/net/http/transport_test.go

    }
    
    func testTransportRace(req *Request) {
    	save := req.Body
    	pr, pw := io.Pipe()
    	defer pr.Close()
    	defer pw.Close()
    	dr := &delegateReader{c: make(chan io.Reader)}
    
    	t := &Transport{
    		Dial: func(net, addr string) (net.Conn, error) {
    			return &dumpConn{pw, dr}, nil
    		},
    	}
    	defer t.CloseIdleConnections()
    
    	quitReadCh := make(chan struct{})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/arm64/asm7.go

    		return 0
    	}
    	a := AADD
    	if v < 0 {
    		a = ASUB
    		v = -v
    	}
    	return c.oaddi(p, a, v, rd, rn)
    }
    
    /*
     * load a literal value into dr
     */
    func (c *ctxt7) omovlit(as obj.As, p *obj.Prog, a *obj.Addr, dr int) uint32 {
    	var o1 int32
    	if p.Pool == nil { /* not in literal pool */
    		c.aclass(a)
    		c.ctxt.Logf("omovlit add %d (%#x)\n", c.instoffset, uint64(c.instoffset))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  4. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    nstructed){var a=(0,kx.default)(n,{isIdentifier:!0});a!==n?((0,Sx.ensureObject)(this,"raws"),this.raws.value=a):this.raws&&delete this.raws.value}this._value=n}}]),e}(Cx.default);Pr.default=Ex;zc.exports=Pr.default});var Qs=v((Dr,Vc)=>{l();"use strict";Dr.__esModule=!0;Dr.default=void 0;var Tx=Dx(Ue()),Px=ne();function Dx(i){return i&&i.__esModule?i:{default:i}}function Ix(i,e){i.prototype=Object.create(e.prototype),i.prototype.constructor=i,Ys(i,e)}function Ys(i,e){return Ys=Object.setPrototype...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
  5. docs/ja/docs/async.md

    # 並行処理と async / await
    
    *path operation 関数*のための `async def` に関する詳細と非同期 (asynchronous) コード、並行処理 (Concurrency)、そして、並列処理 (Parallelism) の背景について。
    
    ## 急いでいますか?
    
    <abbr title="too long; didn't read (長すぎて読めない人のための要約という意味のスラング)"><strong>TL;DR:</strong></abbr>
    
    次のような、`await` を使用して呼び出すべきサードパーティライブラリを使用している場合:
    
    ```Python
    results = await some_library()
    ```
    
    以下の様に `async def` を使用して*path operation 関数*を宣言します。
    
    ```Python hl_lines="2"
    @app.get('/')
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  6. tests/integration/ambient/baseline_test.go

    `).ApplyOrFail(t)
    			t.ConfigIstio().Eval(apps.Namespace.Name(), map[string]string{
    				"Destination": dst.Config().Service,
    			}, `apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: dr
    spec:
      host: "{{.Destination}}"
      subsets:
      - name: v1
        labels:
          version: v1
      - name: v2
        labels:
          version: v2
    `).ApplyOrFail(t)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/x86/asm6.go

    	{AMOVQ, Yrl, Ynone, Ycr3, movMemReg2op, [4]uint8{0x0f, 0x22, 3, 0}},
    	{AMOVQ, Yrl, Ynone, Ycr4, movMemReg2op, [4]uint8{0x0f, 0x22, 4, 0}},
    	{AMOVQ, Yrl, Ynone, Ycr8, movMemReg2op, [4]uint8{0x0f, 0x22, 8, 0}},
    
    	// mov dr
    	{AMOVL, Ydr0, Ynone, Yrl, movRegMem2op, [4]uint8{0x0f, 0x21, 0, 0}},
    	{AMOVL, Ydr6, Ynone, Yrl, movRegMem2op, [4]uint8{0x0f, 0x21, 6, 0}},
    	{AMOVL, Ydr7, Ynone, Yrl, movRegMem2op, [4]uint8{0x0f, 0x21, 7, 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)
  8. pkg/apis/core/validation/validation.go

    		return allErrs
    	}
    
    	// We decided to restrict the usage of userns with other host namespaces:
    	// 	https://github.com/kubernetes/kubernetes/pull/111090#discussion_r935994282
    	// The tl;dr is: you can easily run into permission issues that seem unexpected, we don't
    	// know of any good use case and we can always enable them later.
    
    	// Note we already validated above spec.SecurityContext is not nil.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  9. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

      names:
        categories:
        - istio-io
        - networking-istio-io
        kind: DestinationRule
        listKind: DestinationRuleList
        plural: destinationrules
        shortNames:
        - dr
        singular: destinationrule
      scope: Namespaced
      versions:
      - additionalPrinterColumns:
        - description: The name of a service from the service registry
          jsonPath: .spec.host
          name: Host
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  10. manifests/charts/base/crds/crd-all.gen.yaml

      names:
        categories:
        - istio-io
        - networking-istio-io
        kind: DestinationRule
        listKind: DestinationRuleList
        plural: destinationrules
        shortNames:
        - dr
        singular: destinationrule
      scope: Namespaced
      versions:
      - additionalPrinterColumns:
        - description: The name of a service from the service registry
          jsonPath: .spec.host
          name: Host
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
Back to top