Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 983 for Destinations (0.22 sec)

  1. pkg/config/analysis/analyzers/virtualservice/util.go

    		if m := r.GetMirror(); m != nil {
    			destinations = append(destinations, &AnnotatedDestination{
    				RouteRule:    "http.mirror",
    				ServiceIndex: i,
    				Destination:  m,
    			})
    		}
    
    		for j, m := range r.GetMirrors() {
    			destinations = append(destinations, &AnnotatedDestination{
    				RouteRule:        "http.mirrors",
    				ServiceIndex:     i,
    				DestinationIndex: j,
    				Destination:      m.GetDestination(),
    			})
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 07 15:18:05 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  2. pkg/proxy/ipvs/util/testing/fake.go

    		return fmt.Errorf("failed to add destination for service %v, service not found", key.String())
    	}
    	dests := f.Destinations[key]
    	if dests == nil {
    		dests = make([]*utilipvs.RealServer, 0)
    		f.Destinations[key] = dests
    	}
    	f.Destinations[key] = append(f.Destinations[key], dest)
    	// The tests assumes that the slice is sorted
    	sort.Sort(byAddress(f.Destinations[key]))
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 7K bytes
    - Viewed (0)
  3. pkg/proxy/ipvs/graceful_termination_test.go

    						IP:       "1.1.1.1",
    						Port:     80,
    						Protocol: "tcp",
    					}: {
    						Address:  netutils.ParseIPSloppy("1.1.1.1"),
    						Protocol: "tcp",
    						Port:     uint16(80),
    					},
    				},
    				Destinations: map[utilipvstest.ServiceKey][]*utilipvs.RealServer{
    					{
    						IP:       "1.1.1.1",
    						Port:     80,
    						Protocol: "tcp",
    					}: {
    						{
    							Address:      netutils.ParseIPSloppy("10.0.0.1"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 11K bytes
    - Viewed (0)
  4. releasenotes/notes/host-in-route-destination.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    issues:
    - 33226
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 03 04:12:06 UTC 2021
    - 217 bytes
    - Viewed (0)
  5. pkg/test/framework/components/echo/echotest/run.go

    	t.rootCtx.Logf("Running tests with: sources %v -> destinations %v",
    		t.sources.Services().NamespacedNames().NamesWithNamespacePrefix(),
    		t.destinations.Services().NamespacedNames().NamesWithNamespacePrefix())
    
    	if t.sources.Len() == 0 {
    		t.rootCtx.Error("Sources are empty")
    	}
    	if t.destinations.Len() == 0 {
    		t.rootCtx.Error("Destinations are empty")
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 27 22:08:42 UTC 2023
    - 13K bytes
    - Viewed (0)
  6. pkg/test/framework/components/echo/echotest/filters.go

    }
    
    // To applies each of the filter functions in order to allow removing workloads from the set of destinations.
    // Example:
    //
    //	echotest.New(t, apps).
    //	  To(echotest.SimplePodServiceAndAllSpecial).
    //	  Run()
    func (t *T) To(filters ...Filter) *T {
    	for _, filter := range filters {
    		t.destinations = filter(t.destinations)
    	}
    	return t
    }
    
    func (t *T) ToMatch(m match.Matcher) *T {
    	return t.To(FilterMatch(m))
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 29 23:48:45 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/virtualservice/destinationhosts.go

    				if destinations.Destination.Subset != "" {
    					for _, host := range virtualservice.Hosts {
    						if destinations.Destination.Host == host {
    							virtualservices[r.Metadata.FullName] = append(virtualservices[r.Metadata.FullName], destinations.Destination)
    						}
    					}
    				}
    			}
    		}
    
    		return true
    	})
    
    	return virtualservices
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 07 15:18:05 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/LoggingOutputInternal.java

    public interface LoggingOutputInternal extends LoggingOutput {
        /**
         * Adds System.out and System.err as logging destinations. The output will include plain text only, with no color or dynamic text.
         */
        void attachSystemOutAndErr();
    
        /**
         * Adds the current processes' stdout and stderr as logging destinations. The output will also include color and dynamic text when one of these
         * is connected to a console.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  9. pkg/test/framework/components/echo/echotest/echotest.go

    	rootCtx framework.TestContext
    
    	sources      echo.Instances
    	destinations echo.Instances
    
    	destinationFilters []CombinationFilter
    
    	sourceDeploymentSetup      []srcSetupFn
    	deploymentPairSetup        []svcPairSetupFn
    	destinationDeploymentSetup []dstSetupFn
    
    	cfg *config.Builder
    }
    
    // New creates a *T using the given applications as sources and destinations for each subtest.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 27 23:26:33 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  10. pilot/pkg/features/ambient.go

    	EnableHBONESend = registerAmbient(
    		"PILOT_ENABLE_SENDING_HBONE",
    		true, false,
    		"If enabled, HBONE will be allowed when sending to destinations.")
    
    	EnableSidecarHBONEListening = registerAmbient(
    		"PILOT_ENABLE_SIDECAR_LISTENING_HBONE",
    		true, false,
    		"If enabled, HBONE support can be configured for proxies.")
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 00:02:56 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top