Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 42 for route_name (0.18 sec)

  1. pilot/pkg/networking/core/sidecar_simulation_test.go

    					r := xdstest.ExtractRouteConfigurations(sim.Routes)
    					vh := r[tt.routeName]
    					exp := tt.expected
    					if variant == "httproute" && tt.expectedGateway != nil {
    						exp = tt.expectedGateway
    					}
    					if vh == nil && exp != nil {
    						t.Fatalf("route %q not found, have %v", tt.routeName, xdstest.MapKeys(r))
    					}
    					gotHosts := xdstest.ExtractVirtualHosts(vh)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  2. platforms/jvm/normalization-java/src/main/java/org/gradle/internal/normalization/java/impl/ApiMemberSelector.java

            return null;
        }
    
        @Override
        public void visitInnerClass(String name, String outerName, String innerName, int access) {
            boolean privateInnerClass = (access & ACC_PRIVATE) != 0;
            if (name.equals(className) && privateInnerClass) {
                thisClassIsPrivateInnerClass = true;
            }
            if (outerName == null || innerName == null || privateInnerClass) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/gateway.go

    			if gateway.IsHTTPSServerWithTLSTermination(server) {
    				routeName := mergedGateway.TLSServerInfo[server].RouteName
    				// This is a HTTPS server, where we are doing TLS termination. Build a http connection manager with TLS context
    				httpFilterChainOpts := configgen.createGatewayHTTPFilterChainOpts(builder.node, server.Port, server,
    					routeName, proxyConfig, istionetworking.TransportProtocolTCP, builder.push)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 46.4K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/gateway_test.go

    	cg := NewConfigGenTest(t, TestOptions{})
    	testCases := []struct {
    		name              string
    		node              *pilot_model.Proxy
    		server            *networking.Server
    		routeName         string
    		proxyConfig       *meshconfig.ProxyConfig
    		result            *filterChainOpts
    		transportProtocol istionetworking.TransportProtocol
    	}{
    		{
    			name: "HTTP1.0 mode enabled",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/route/route_cache.go

    )
    
    var (
    	Separator = []byte{'~'}
    	Slash     = []byte{'/'}
    )
    
    // Cache includes the variables that can influence a Route Configuration.
    // Implements XdsCacheEntry interface.
    type Cache struct {
    	RouteName string
    
    	ProxyVersion string
    	// proxy cluster ID
    	ClusterID string
    	// proxy dns domain
    	DNSDomain string
    	// DNSCapture indicates whether the workload has enabled dns capture
    	DNSCapture bool
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  6. pilot/pkg/xds/bench_test.go

    		}
    		return &model.WatchedResource{ResourceNames: watchedResources}
    	case v3.RouteType:
    		l := s.ConfigGen.BuildListeners(proxy, s.PushContext())
    		routeNames := xdstest.ExtractRoutesFromListeners(l)
    		return &model.WatchedResource{ResourceNames: routeNames}
    	}
    	return nil
    }
    
    // Setup test builds a mock test environment. Note: push context is not initialized, to be able to benchmark separately
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 18:13:40 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/detection/TestClassVisitor.java

            isAbstract = (access & Opcodes.ACC_ABSTRACT) != 0;
            className = name;
            superClassName = superName;
        }
    
        @Override
        public void visitInnerClass(String name, String outerName, String innerName, int access) {
            if (ignoreNonStaticInnerClass() && innerClassIsNonStatic(name, access)) {
                isAbstract = true;
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  8. src/main/webapp/WEB-INF/view/admin/role/admin_role_edit.jsp

                                    <div class="form-group row">
                                        <label for="name" class="col-sm-3 text-sm-right col-form-label"><la:message
                                                key="labels.role_name"/></label>
                                        <div class="col-sm-9">
                                            <la:errors property="name"/>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 3.4K bytes
    - Viewed (0)
  9. pkg/kubelet/volumemanager/reconciler/reconstruct_test.go

    			os.MkdirAll(vp, 0755)
    
    			// Arrange 2 - populate DSW
    			outerName := filepath.Base(tc.volumePath)
    			pod, pv, pvc := getPodPVCAndPV(tc.volumeMode, "pod1", outerName, "pvc1")
    			volumeSpec := &volume.Spec{PersistentVolume: pv}
    			kubeClient := createtestClientWithPVPVC(pv, pvc, v1.AttachedVolume{
    				Name:       v1.UniqueVolumeName(fmt.Sprintf("fake-plugin/%s", outerName)),
    				DevicePath: "fake/path",
    			})
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/listener_waypoint.go

    	if match != nil && match.Port != 0 && match.Port != uint32(listenPort) {
    		return nil
    	}
    
    	routeName := in.Name
    	if match != nil && match.Name != "" {
    		routeName = routeName + "." + match.Name
    	}
    
    	out := &route.Route{
    		Name:     routeName,
    		Match:    istio_route.TranslateRouteMatch(virtualService, match, true),
    		Metadata: util.BuildConfigInfoMetadata(virtualService.Meta),
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
Back to top