Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 30 for Filtering (0.23 sec)

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

    			},
    				lb.buildWaypointInboundHTTPFilters(nil, cc)...),
    			Name: "direct-http",
    		}
    		chains = append(chains, tcpChain, httpChain)
    		if len(wls) > 0 {
    			// Workload IP filtering happens here.
    			ipRange := []*xds.CidrRange{}
    			for _, wl := range wls {
    				for _, ip := range wl.Addresses {
    					addr, _ := netip.AddrFromSlice(ip)
    					cidr := util.ConvertAddressToCidr(addr.String())
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  2. cmd/metacache-set.go

    	Versioned bool
    	// V1 listing type
    	V1 bool
    
    	// Versioning config is used for if the path
    	// has versioning enabled.
    	Versioning *versioning.Versioning `msg:"-"`
    
    	// Lifecycle performs filtering based on lifecycle.
    	// This will filter out objects if the most recent version should be deleted by lifecycle.
    	// Is not transferred across request calls.
    	Lifecycle *lifecycle.Lifecycle `msg:"-"`
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 22:18:44 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                        resource.getDirectory(),
                        null,
                        resource);
    
                validateBoolean(
                        prefix,
                        "filtering",
                        problems,
                        errOn30,
                        Version.V20,
                        resource.getFiltering(),
                        resource.getDirectory(),
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    [[deprecate_filtered_configuration_file_and_filecollection_methods]]
    ==== Filtered Configuration `file` and `fileCollection` methods are deprecated
    
    In an ongoing effort to simplify the Gradle API, the following methods that support filtering based on declared dependencies have been deprecated:
    
    On link:{javadocPath}/org/gradle/api/artifacts/Configuration.html--[Configuration]:
    
    - `files(Dependency...)`
    - `files(Spec)`
    - `files(Closure)`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  5. pkg/proxy/nftables/proxier.go

    	name      string
    	chainType knftables.BaseChainType
    	hook      knftables.BaseChainHook
    	priority  knftables.BaseChainPriority
    }
    
    var nftablesBaseChains = []nftablesBaseChain{
    	// We want our filtering rules to operate on pre-DNAT dest IPs, so our filter
    	// chains have to run before DNAT.
    	{filterPreroutingChain, knftables.FilterType, knftables.PreroutingHook, knftables.DNATPriority + "-10"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  6. cmd/api-errors.go

    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrOverlappingFilterNotification: {
    		Code:           "InvalidArgument",
    		Description:    "An object key name filtering rule defined with overlapping prefixes, overlapping suffixes, or overlapping combinations of prefixes and suffixes for the same event types.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrFilterNameInvalid: {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  7. pkg/scheduler/internal/queue/scheduling_queue.go

    	Update(logger klog.Logger, oldPod, newPod *v1.Pod) error
    	Delete(pod *v1.Pod) error
    	// TODO(sanposhiho): move all PreEnqueueCkeck to Requeue and delete it from this parameter eventually.
    	// Some PreEnqueueCheck include event filtering logic based on some in-tree plugins
    	// and it affect badly to other plugins.
    	// See https://github.com/kubernetes/kubernetes/issues/110175
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modget/get.go

    				if !unique {
    					unresolved = append(unresolved, filtered)
    					continue
    				}
    
    				if m.Path == "" {
    					// The query is not viable. Choose an arbitrary candidate from
    					// before filtering and “resolve” it to report a conflict.
    					isPackage, m = r.chooseArbitrarily(cs)
    				}
    				if isPackage {
    					q.matchesPackages = true
    				}
    				r.resolve(q, m)
    				resolved++
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.28.md

    - Added a new feature gate, `SchedulerQueueingHints` (enabled by default).
      The new feature gate activates a framework for fine-grained filtering of events related to scheduler plugins.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_pods.go

    	// TODO: the logic here does not handle two cases:
    	//   1. If the containers were removed immediately after they died, kubelet
    	//      may fail to generate correct statuses, let alone filtering correctly.
    	//   2. If kubelet restarted before writing the terminated status for a pod
    	//      to the apiserver, it could still restart the terminated pod (even
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
Back to top