Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 37 for Filtering (0.14 sec)

  1. pkg/kube/namespace/filter.go

    			// No need to notify handlers for deletes. The namespace was deleted, so the object will be as well (and a delete could not de-select).
    			// Note that specifically for the edge case of a Namespace watcher that is filtering, this will ignore deletes we should
    			// otherwise send.
    			// See kclient.applyDynamicFilter for rationale.
    			f.namespaceDeletedLocked(ns.ObjectMeta)
    		},
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 17:12:52 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  2. subprojects/distributions-dependencies/build.gradle.kts

            api(libs.snakeyaml)             { version { strictly("2.0") }}
            api(libs.testng)                { version { strictly("6.3.1"); because("later versions break test cross-version test filtering") }}
            api(libs.tomlj)                 { version { strictly(tomljVersion) }}
            api(libs.trove4j)               { version { strictly("1.0.20200330") }}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 19:54:08 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_test.go

    	metav1.AddToGroupVersion(scheme, metav1.SchemeGroupVersion)
    	utilruntime.Must(example.AddToScheme(scheme))
    	utilruntime.Must(examplev1.AddToScheme(scheme))
    }
    
    // GetPodAttrs returns labels and fields of a given object for filtering purposes.
    func GetPodAttrs(obj runtime.Object) (labels.Set, fields.Set, error) {
    	pod, ok := obj.(*example.Pod)
    	if !ok {
    		return nil, nil, fmt.Errorf("not a pod")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 17K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dependency_locking.adoc

    It takes a comma (`,`) separated list of module notations.
    In this mode, the existing lock state is still used as input to resolution, filtering out the modules targeted by the update.
    
    ----
    ❯ gradle dependencies --update-locks org.apache.commons:commons-lang3,org.slf4j:slf4j-api
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:55:22 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  5. pkg/scheduler/scheduler.go

    // ScheduleResult represents the result of scheduling a pod.
    type ScheduleResult struct {
    	// Name of the selected node.
    	SuggestedHost string
    	// The number of nodes the scheduler evaluated the pod against in the filtering
    	// phase and beyond.
    	EvaluatedNodes int
    	// The number of nodes out of the evaluated ones that fit the pod.
    	FeasibleNodes int
    	// The nominating info for scheduling cycle.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top