Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 149 for selectA (1.03 sec)

  1. pkg/controller/daemon/daemon_controller.go

    func (dsc *DaemonSetsController) getDaemonPods(ctx context.Context, ds *apps.DaemonSet) ([]*v1.Pod, error) {
    	selector, err := metav1.LabelSelectorAsSelector(ds.Spec.Selector)
    	if err != nil {
    		return nil, err
    	}
    
    	// List all pods to include those that don't match the selector anymore but
    	// have a ControllerRef pointing to this controller.
    	pods, err := dsc.podLister.Pods(ds.Namespace).List(labels.Everything())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  2. pkg/proxy/nftables/proxier.go

    	nodeIP         net.IP
    	recorder       events.EventRecorder
    
    	serviceHealthServer healthcheck.ServiceHealthServer
    	healthzServer       *healthcheck.ProxierHealthServer
    
    	// nodePortAddresses selects the interfaces where nodePort works.
    	nodePortAddresses *proxyutil.NodePortAddresses
    	// networkInterfacer defines an interface for several net library functions.
    	// Inject for test purpose.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

       useJUnitPlatform()
    }
    ```
    Instead, you can:
    
    - set the test framework before configuring options
    - migrate to the <<jvm_test_suite_plugin#jvm_test_suite_plugin,JVM Test Suite Plugin>>
    ```
    test {
       // select test framework before configuring options
       useJUnitPlatform()
       options {
       }
    }
    ```
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  4. configure.py

          ask_for_var=('Please specify an Android build tools version to use. '
                       '[Available versions: %s]') % versions,
          check_success=valid_build_tools,
          error_msg=('The selected SDK does not have build-tools version %s '
                     'available.'))
    
      write_action_env_to_bazelrc('ANDROID_BUILD_TOOLS_VERSION',
                                  android_build_tools_version)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (1)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    		// Allow time for in-flight requests with a handle to the old info to register themselves
    		time.Sleep(time.Second)
    		// Wait for in-flight requests to drain
    		oldInfo.waitGroup.Wait()
    	}()
    
    	select {
    	case <-time.After(r.requestTimeout * 2):
    		klog.Warningf("timeout waiting for requests to drain for %s/%s, tearing down storage", oldInfo.spec.Group, oldInfo.spec.Names.Kind)
    	case <-requestsDrained:
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/admission_test.go

    				continue
    			}
    		}
    
    		if paramRef.Selector != nil {
    			ls := p.GetLabels()
    			matched := true
    
    			for k, v := range paramRef.Selector.MatchLabels {
    				if l, hasLabel := ls[k]; !hasLabel {
    					matched = false
    					break
    				} else if l != v {
    					matched = false
    					break
    				}
    			}
    
    			// Empty selector matches everything
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 01:39:01 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

    "labelSelectorPath defines the JSON path inside of a custom resource that corresponds to Scale `status.selector`. Only JSON paths without the array notation are allowed. Must be a JSON Path under `.status` or `.spec`. Must be set to work with HorizontalPodAutoscaler. The field pointed by this JSON path must be a string field (not a complex selector struct) which contains a serialized label selector in string form. More info: https://kubernetes.io/docs/tasks/access-kubernetes-api/custom-resources/c...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
  8. cmd/kubelet/app/server.go

    			}
    		}, 5*time.Second, wait.NeverStop)
    	}
    
    	if s.RunOnce {
    		return nil
    	}
    
    	// If systemd is used, notify it that we have started
    	go daemon.SdNotify(false, "READY=1")
    
    	select {
    	case <-done:
    		break
    	case <-ctx.Done():
    		break
    	}
    
    	return nil
    }
    
    // buildKubeletClientConfig constructs the appropriate client config for the kubelet depending on whether
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  9. pkg/controller/podautoscaler/horizontal.go

    	if selector == "" {
    		errMsg := "selector is required"
    		a.eventRecorder.Event(hpa, v1.EventTypeWarning, "SelectorRequired", errMsg)
    		setCondition(hpa, autoscalingv2.ScalingActive, v1.ConditionFalse, "InvalidSelector", "the HPA target's scale is missing a selector")
    		return nil, fmt.Errorf(errMsg)
    	}
    
    	parsedSelector, err := labels.Parse(selector)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    			return true, nil
    		}
    		return false, nil
    	}); err != nil {
    		// given the function above never returns error,
    		// the non-empty error means that the stopCh was closed
    		return
    	}
    	for {
    		select {
    		case event, ok := <-c.incoming:
    			if !ok {
    				return
    			}
    			// Don't dispatch bookmarks coming from the storage layer.
    			// They can be very frequent (even to the level of subseconds)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
Back to top