Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 139 for DR (0.03 sec)

  1. tests/integration/pilot/multicluster_test.go

    					},
    				},
    				{
    					"subsets",
    					func(t framework.TestContext) {
    						cfg := tmpl.EvaluateOrFail(t, `
    apiVersion: networking.istio.io/v1beta1
    kind: DestinationRule
    metadata:
      name: mysvc-dr
    spec:
      host: {{.host}}
      subsets:
    {{- range .dst }}
      - name: {{ .Config.Cluster.Name }}
        labels:
          topology.istio.io/cluster: {{ .Config.Cluster.Name }}
    {{- end }}
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/amd64error.s

    	CALL (AX)(PC*1)                 // ERROR "invalid instruction"
    	CALL (AX)(SB*1)                 // ERROR "invalid instruction"
    	CALL (AX)(FP*1)                 // ERROR "invalid instruction"
    	// Forbid memory operands for MOV CR/DR. See #24981.
    	MOVQ CR0, (AX)                  // ERROR "invalid instruction"
    	MOVQ CR2, (AX)                  // ERROR "invalid instruction"
    	MOVQ CR3, (AX)                  // ERROR "invalid instruction"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/g3doc/space_to_depth.md

    # Automatic Space to Depth Transform in MLIR Bridge
    
    Author: wangtao@, yuanzx@, hinsu@, lyandy@, chiachenc@, aminim@, jpienaar@,
    dehao@
    
    ## TL;DR
    
    _This document describes an automatic space to depth transform for the first
    convolution in the new MLIR bridge to improve MXU efficiency of low batch size
    convolutions._
    
    ## Background
    
    For image models, the first layer is usually not MXU friendly as it has a
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Oct 24 02:51:43 UTC 2020
    - 8.3K bytes
    - Viewed (0)
  4. src/image/internal/imageutil/impl.go

    	// rest of Go 1 compatibility), and decide if we want to have a more
    	// general purpose DrawToRGBA method for other image types. One possibility
    	// is:
    	//
    	// func (src *YCbCr) CopyToRGBA(dst *RGBA, dr, sr Rectangle) (effectiveDr, effectiveSr Rectangle)
    	//
    	// in the spirit of the built-in copy function for 1-dimensional slices,
    	// that also allowed a CopyFromRGBA method if needed.
    
    	x0 := (r.Min.X - dst.Rect.Min.X) * 4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 10 17:50:11 UTC 2018
    - 7.4K bytes
    - Viewed (0)
  5. src/runtime/syscall_windows_test.go

    	_, r, err = proc.Call(
    		1,
    		uintptr(math.Float64bits(2.2)),
    		uintptr(math.Float32bits(3.3)),
    		uintptr(math.Float64bits(4.4e44)),
    	)
    	dr := math.Float64frombits(uint64(r))
    	if dr != 2.5 {
    		t.Errorf("got %f want 2.5 (err=%v)", dr, err)
    	}
    }
    
    func TestTimeBeginPeriod(t *testing.T) {
    	const TIMERR_NOERROR = 0
    	if *runtime.TimeBeginPeriodRetValue != TIMERR_NOERROR {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 31 16:31:35 UTC 2023
    - 32.5K bytes
    - Viewed (0)
  6. tests/integration/security/filebased_tls_origination/egress_gateway_origination_test.go

    				fakeRootCert        bool // If Fake root cert is to be used to verify server's presented certificate
    			}{
    				// Mutual Connection is originated by our DR but server side drops the connection to
    				// only use Simple TLS as it doesn't verify client side cert
    				// TODO: mechanism to enforce mutual TLS(client cert) validation by the server
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/cluster_test.go

    			g.Expect(md.FilterMetadata[util.IstioMetadataKey]).NotTo(BeNil())
    			istio := md.FilterMetadata[util.IstioMetadataKey]
    			g.Expect(istio.Fields["config"]).NotTo(BeNil())
    			dr := istio.Fields["config"]
    			g.Expect(dr.GetStringValue()).To(Equal("/apis/networking.istio.io/v1alpha3/namespaces//destination-rule/acme"))
    			if strings.Contains(cluster.Name, "Subset") {
    				foundSubset = true
    				sub := istio.Fields["subset"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  8. pilot/pkg/networking/util/util.go

    	// First get DR port level traffic policy
    	original, _ = GetPortLevelTrafficPolicy(original, port)
    	if subsetPolicy == nil {
    		return original
    	}
    	subsetPolicy, hasPortLevel := GetPortLevelTrafficPolicy(subsetPolicy, port)
    	if original == nil {
    		return subsetPolicy
    	}
    
    	// merge DR with subset traffic policy
    	// Override with subset values.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  9. src/database/sql/sql.go

    	sync.Locker // the *driverConn
    	resi        driver.Result
    }
    
    func (dr driverResult) LastInsertId() (int64, error) {
    	dr.Lock()
    	defer dr.Unlock()
    	return dr.resi.LastInsertId()
    }
    
    func (dr driverResult) RowsAffected() (int64, error) {
    	dr.Lock()
    	defer dr.Unlock()
    	return dr.resi.RowsAffected()
    }
    
    func stack() string {
    	var buf [2 << 10]byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  10. pilot/pkg/xds/ads_test.go

    				GroupVersionKind: gvk.DestinationRule,
    				Name:             fmt.Sprintf("dr%d", i), Namespace: testConfigNamespace,
    			},
    			Spec: &networking.DestinationRule{
    				Host:     host,
    				ExportTo: nil,
    			},
    		}); err != nil {
    			t.Fatal(err)
    		}
    	}
    	removeDestinationRule := func(i int) {
    		s.Store().Delete(gvk.DestinationRule, fmt.Sprintf("dr%d", i), testConfigNamespace, nil)
    	}
    
    	sc := &networking.Sidecar{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 30 17:25:17 UTC 2024
    - 30.3K bytes
    - Viewed (0)
Back to top