Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 86 for DR (0.02 sec)

  1. pkg/istio-agent/xds_proxy.go

    			fmt.Fprintf(w, "%v\n", err)
    			return
    		}
    		typeURL := fmt.Sprintf("istio.io%s", req.URL.Path)
    		dr := discovery.DiscoveryRequest{
    			TypeUrl: typeURL,
    		}
    		resourceName := qp.Get("resourceName")
    		if resourceName != "" {
    			dr.ResourceNames = []string{resourceName}
    		}
    		response, err := p.tapRequest(&dr, 5*time.Second)
    		if err != nil {
    			w.WriteHeader(http.StatusServiceUnavailable)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/cmd/internal/obj/arm/asm5.go

    func (c *ctxt5) omvs(p *obj.Prog, a *obj.Addr, dr int) uint32 {
    	o1 := ((uint32(p.Scond) & C_SCOND) ^ C_SCOND_XOR) << 28
    	o1 |= 0x30 << 20
    	o1 |= (uint32(dr) & 15) << 12
    	o1 |= uint32(a.Offset) & 0x0fff
    	o1 |= (uint32(a.Offset) & 0xf000) << 4
    	return o1
    }
    
    // MVN $C_NCON, Reg -> MOVW $C_RCON, Reg
    func (c *ctxt5) omvr(p *obj.Prog, a *obj.Addr, dr int) uint32 {
    	o1 := c.oprrr(p, AMOVW, int(p.Scond))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/GUtil.java

                throw new IllegalArgumentException("could not make url use https", e);
            }
        }
    
        public static boolean isSecureUrl(URI url) {
            /*
             * TL;DR: http://127.0.0.1 will bypass this validation, http://localhost will fail this validation.
             *
             * Hundreds of Gradle's integration tests use a local web-server to test logic that relies upon
             * this behavior.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 19.3K bytes
    - Viewed (0)
Back to top