Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 793 for Destinations (0.18 sec)

  1. pkg/proxy/nftables/helpers_test.go

    	add set ip testing firewall { type ipv4_addr . inet_proto . inet_service ; comment "destinations that are subject to LoadBalancerSourceRanges" ; }
    	add set ip testing firewall-allow { type ipv4_addr . inet_proto . inet_service . ipv4_addr ; flags interval ; comment "destinations+sources that are allowed by LoadBalancerSourceRanges" ; }
    	add chain ip testing firewall-check
    	add chain ip testing firewall-allow-check
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 09:57:47 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/services/LoggingServiceRegistry.java

         * </ul>
         *
         * <p>Does not:</p>
         *
         * <ul>
         * <li>Replace System.out and System.err to capture output written to these destinations. Use {@link LoggingManagerInternal#captureSystemSources()} to enable this.</li>
         * <li>Configure java util logging. Use {@link LoggingManagerInternal#captureSystemSources()} to enable this.</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  3. pilot/pkg/model/sidecar_test.go

    			},
    			Spec: &networking.VirtualService{
    				Hosts: []string{"virtualbar"},
    				Http: []*networking.HTTPRoute{
    					{
    						Mirror: &networking.Destination{Host: "foo.svc.cluster.local"},
    						Route:  []*networking.HTTPRouteDestination{{Destination: &networking.Destination{Host: "baz.svc.cluster.local"}}},
    					},
    				},
    			},
    		},
    	}
    
    	virtualServices2 = []config.Config{
    		{
    			Meta: config.Meta{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  4. internal/event/name.go

    package event
    
    import (
    	"encoding/json"
    	"encoding/xml"
    )
    
    // Name - event type enum.
    // Refer http://docs.aws.amazon.com/AmazonS3/latest/dev/NotificationHowTo.html#notification-how-to-event-types-and-destinations
    // for most basic values we have since extend this and its not really much applicable other than a reference point.
    // "s3:Replication:OperationCompletedReplication" is a MinIO extension.
    type Name int
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 01:11:10 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/ioctl_linux.go

    	Reserved      uint32
    }
    
    // IoctlFileDedupeRange performs an FIDEDUPERANGE ioctl operation to share the
    // range of data conveyed in value from the file associated with the file
    // descriptor srcFd to the value.Info destinations. See the
    // ioctl_fideduperange(2) man page for details.
    func IoctlFileDedupeRange(srcFd int, value *FileDedupeRange) error {
    	buf := make([]byte, SizeofRawFileDedupeRange+
    		len(value.Info)*SizeofRawFileDedupeRangeInfo)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/link.go

    }
    
    // AddRestDest assigns []Args{{a, Destination}} to p.RestArgs when the second destination
    // operand does not fit into prog.RegTo2.
    func (p *Prog) AddRestDest(a Addr) {
    	p.RestArgs = append(p.RestArgs, AddrPos{a, Destination})
    }
    
    // GetTo2 returns the second destination operand.
    // The same kinds of operands are saved in order so GetTo2 actually
    // return the first destination operand in Prog.RestArgs[]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  7. pilot/pkg/xds/endpoints/ep_filters.go

    // auto-mTLS, DestinationRule, and PeerAuthentication to determine if we would send mTLS to these endpoints.
    // Note there is no guarantee these destinations *actually* handle mTLS; just that we are configured to send mTLS to them.
    func (b *EndpointBuilder) EndpointsWithMTLSFilter(endpoints []*LocalityEndpoints) []*LocalityEndpoints {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/networkfilter.go

    			statPrefix = telemetry.BuildStatPrefix(push.Mesh.OutboundClusterStatName, routes[0].Destination.Host,
    				routes[0].Destination.Subset, port, 0, &service.Attributes)
    		}
    
    		return lb.buildOutboundNetworkFiltersWithSingleDestination(
    			statPrefix, clusterName, routes[0].Destination.Subset, port, destinationRule, tunnelingconfig.Apply, includeMx)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  9. pkg/proxy/nftables/proxier.go

    						proxier.localDetector.IfNotLocalNFT(),
    						"jump", markMasqChain,
    					),
    				})
    			}
    		}
    
    		// Set up external traffic handling (if any "external" destinations are
    		// enabled). All captured traffic for all external destinations should
    		// jump to externalTrafficChain, which will handle some special cases and
    		// then jump to externalPolicyChain.
    		if usesExternalTrafficChain {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  10. src/net/addrselect.go

    	attrDA := &s.addrAttr[i]
    	attrDB := &s.addrAttr[j]
    	attrSourceDA := &s.srcAttr[i]
    	attrSourceDB := &s.srcAttr[j]
    
    	const preferDA = true
    	const preferDB = false
    
    	// Rule 1: Avoid unusable destinations.
    	// If DB is known to be unreachable or if Source(DB) is undefined, then
    	// prefer DA.  Similarly, if DA is known to be unreachable or if
    	// Source(DA) is undefined, then prefer DB.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 00:24:06 UTC 2024
    - 9.7K bytes
    - Viewed (0)
Back to top