Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 139 for DR (0.23 sec)

  1. src/image/draw/draw_test.go

    				continue
    			}
    
    			const M = 1<<16 - 1
    			var dr, dg, db, da uint32
    			if op == Over {
    				dr, dg, db, da = dst.At(x, y).RGBA()
    			}
    			sr, sg, sb, sa := src.At(sx, sy).RGBA()
    			ma := uint32(M)
    			if mask != nil {
    				_, _, _, ma = mask.At(mx, my).RGBA()
    			}
    			a := M - (sa * ma / M)
    			golden.Set(x, y, color.RGBA64{
    				uint16((dr*a + sr*ma) / M),
    				uint16((dg*a + sg*ma) / M),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 18:07:05 UTC 2023
    - 26K bytes
    - Viewed (0)
  2. pilot/pkg/model/push_context_test.go

    			}
    			for i, dr := range drList {
    				if dr.rule.Name != tt.expectedDrName[i] {
    					t.Errorf("destinationRuleName expected %v got %v", tt.expectedDrName[i], dr.rule.Name)
    				}
    			}
    			testLocal := ps.destinationRuleIndex.namespaceLocal[tt.proxyNs]
    			if testLocal != nil {
    				destRules := testLocal.specificDestRules
    				for _, dr := range destRules[host.Name(testhost)] {
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  3. pilot/pkg/xds/lds.go

    // Map of all configs that do not impact LDS
    var skippedLdsConfigs = map[model.NodeType]sets.Set[kind.Kind]{
    	model.Router: sets.New(
    		// for autopassthrough gateways, we build filterchains per-dr subset
    		kind.WorkloadGroup,
    		kind.WorkloadEntry,
    		kind.Secret,
    		kind.ProxyConfig,
    		kind.DNSName,
    	),
    	model.SidecarProxy: sets.New(
    		kind.Gateway,
    		kind.WorkloadGroup,
    		kind.WorkloadEntry,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 15:58:06 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. tests/integration/security/pass_through_filter_chain_test.go

    							param.Namespace.String(): apps.Ns1.Namespace,
    						})).
    						// It's not trivial to force mTLS to pass-through ports. To work around this, we will
    						// set up a SE and DR that forces it.
    						//
    						// Since our client will talk directly to pods via IP, we have to configure the ports
    						// in the SE as TCP, since only TCP does will match based in IP address rather than host.
    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/grpcgen/grpcecho_test.go

      selector:
        app: echo
      ports:
      - name: grpc
        targetPort: grpc
        port: 7070
    `,
    		ConfigString: `
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: echo-dr
      namespace: default
    spec:
      host: echo-app.default.svc.cluster.local
      subsets:
        - name: v1
          labels:
            version: v1
        - name: v2
          labels:
            version: v2
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  6. tests/integration/security/egress_sidecar_tls_origination_test.go

      ports:
      - number: 80
        name: http-port
        protocol: HTTP
        targetPort: 443
      - number: 443
        name: https-port
        protocol: HTTPS
      resolution: DNS
    `
    	dr := `
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: originate-tls-for-server-sds-{{.WorkloadSelector}}
    spec:
      workloadSelector:
        matchLabels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/http/NetworkExplorer.java

                return;
            } catch( DfsReferral dr ) {
                StringBuffer redir = req.getRequestURL();
                String qs = req.getQueryString();
                redir = new StringBuffer( redir.substring( 0, redir.length() - req.getPathInfo().length() ));
                redir.append( '/' );
                redir.append(dr.server);
                redir.append( '/' );
                redir.append(dr.share);
                redir.append( '/' );
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Wed Jan 22 03:57:31 UTC 2020
    - 19.7K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/cluster_tls.go

    	}
    }
    
    // Set auto_sni if EnableAutoSni feature flag is enabled and if sni field is not explicitly set in DR.
    // Set auto_san_validation if VerifyCertAtClient feature flag is enabled and if there is no explicit SubjectAltNames specified  in DR.
    func (cb *ClusterBuilder) setAutoSniAndAutoSanValidation(mc *clusterWrapper, tls *networking.ClientTLSSettings) {
    	if mc == nil || !features.EnableAutoSni {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  9. pilot/pkg/xds/xds_cache_test.go

    		}
    	}
    }
    
    func TestXdsCache(t *testing.T) {
    	makeEp := func(subset string, dr *model.ConsolidatedDestRule) *endpoints.EndpointBuilder {
    		svc := &model.Service{Hostname: "foo.com"}
    		b := endpoints.NewCDSEndpointBuilder(
    			proxy, nil,
    			fmt.Sprintf("outbound|%s|foo.com", subset),
    			model.TrafficDirectionOutbound, subset, "foo.com", 80,
    			svc, dr)
    		return b
    	}
    	ep1 := makeEp("1", nil)
    	ep2 := makeEp("2", nil)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 31 20:43:08 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  10. operator/pkg/helmreconciler/wait.go

    		}
    	}
    
    	resourceDebugInfo := map[string]string{}
    	dr, dnr := deploymentsReady(cs, deployments, resourceDebugInfo)
    	dsr, dsnr := daemonsetsReady(daemonsets)
    	stsr, stsnr := statefulsetsReady(statefulsets)
    	nsr, nnr := namespacesReady(namespaces)
    	pr, pnr := podsReady(pods)
    	isReady := dr && nsr && dsr && stsr && pr
    	notReady := append(append(append(append(nnr, dnr...), pnr...), dsnr...), stsnr...)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 08 03:13:12 UTC 2023
    - 13.1K bytes
    - Viewed (0)
Back to top