Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for lives (0.04 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset_test.go

    	}
    }
    
    func TestMain(m *testing.M) {
    	klog.InitFlags(nil)
    	os.Exit(m.Run())
    }
    
    // TestNoRestraint tests whether the no-restraint factory gives every client what it asks for
    // even though that is unfair.
    // Expects fairness when there is no competition, unfairness when there is competition.
    func TestNoRestraint(t *testing.T) {
    	metrics.Register()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 58.4K bytes
    - Viewed (0)
  2. pkg/proxy/ipvs/proxier.go

    func getFirstColumn(r io.Reader) ([]string, error) {
    	b, err := io.ReadAll(r)
    	if err != nil {
    		return nil, err
    	}
    
    	lines := strings.Split(string(b), "\n")
    	words := make([]string, 0, len(lines))
    	for i := range lines {
    		fields := strings.Fields(lines[i])
    		if len(fields) > 0 {
    			words = append(words, fields[0])
    		}
    	}
    	return words, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    type validationOptions struct {
    	// allowDefaults permits the validation schema to contain default attributes
    	allowDefaults bool
    	// disallowDefaultsReason gives a reason as to why allowDefaults is false (for better user feedback)
    	disallowDefaultsReason string
    	// requireRecognizedConversionReviewVersion requires accepted webhook conversion versions to contain a recognized version
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  4. pkg/apis/admissionregistration/types.go

    	Connect      OperationType = "CONNECT"
    )
    
    // WebhookClientConfig contains the information to make a TLS
    // connection with the webhook
    type WebhookClientConfig struct {
    	// `url` gives the location of the webhook, in standard URL form
    	// (`scheme://host:port/path`). Exactly one of `url` or `service`
    	// must be specified.
    	//
    	// The `host` should not refer to a service running in the cluster; use
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    	//    up these events from the channel, after consuming the whole time
    	//    budget (defaulted to 100ms) on waiting, we will simply close the watch,
    	//    which will cause the test failure
    	// Using fakeTimeBudget gives us always a budget to wait and have a test
    	// pick up something from ResultCh in the meantime.
    	//
    	// The same can potentially happen in production, but in that case a watch
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    	}
    
    	return apiResourceList, nil
    }
    
    // An interface to see if one storage supports override its default verb for monitoring
    type StorageMetricsOverride interface {
    	// OverrideMetricsVerb gives a storage object an opportunity to override the verb reported to the metrics endpoint
    	OverrideMetricsVerb(oldVerb string) (newVerb string)
    }
    
    // An interface to see if an object supports swagger documentation as a method
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  7. cmd/kubelet/app/server.go

    		legacyregistry.RawMustRegister(metrics.NewGaugeFunc(
    			&metrics.GaugeOpts{
    				Subsystem: kubeletmetrics.KubeletSubsystem,
    				Name:      "certificate_manager_client_ttl_seconds",
    				Help: "Gauge of the TTL (time-to-live) of the Kubelet's client certificate. " +
    					"The value is in seconds until certificate expiry (negative if already expired). " +
    					"If client certificate is invalid or unused, the value will be +INF.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/admissionregistration/v1beta1/generated.proto

      optional string Expression = 2;
    }
    
    // WebhookClientConfig contains the information to make a TLS
    // connection with the webhook
    message WebhookClientConfig {
      // `url` gives the location of the webhook, in standard URL form
      // (`scheme://host:port/path`). Exactly one of `url` or `service`
      // must be specified.
      //
      // The `host` should not refer to a service running in the cluster; use
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 50.4K bytes
    - Viewed (0)
Back to top