Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 110 for Option (0.14 sec)

  1. api/openapi-spec/v3/apis__apiextensions.k8s.io__v1_openapi.json

    `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n  is interpreted as \"data at least as new as the provided `resourceVersion`\"\n  and the bookmark event is send when...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 178.6K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__certificates.k8s.io__v1_openapi.json

    `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n  is interpreted as \"data at least as new as the provided `resourceVersion`\"\n  and the bookmark event is send when...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 151.7K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.5.md

        - [Action Required](#action-required)
        - [Other notable changes](#other-notable-changes-10)
    - [v1.5.0-alpha.2](#v150-alpha2)
      - [Downloads for v1.5.0-alpha.2](#downloads-for-v150-alpha2)
        - [Client Binaries](#client-binaries-12)
        - [Server Binaries](#server-binaries-12)
      - [Changelog since v1.5.0-alpha.1](#changelog-since-v150-alpha1)
        - [Action Required](#action-required-1)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
  4. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

    project :impl
    \\--- compileClasspath
    """
        }
    
        def "selects a module component dependency with a given name with dependency command line option"() {
            given:
            mavenRepo.module("org", "leaf1").dependsOnModules("leaf2").publish()
            mavenRepo.module("org", "leaf2").dependsOnModules("leaf3").publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/runtime/framework_test.go

    func withMetricsRecorder(recorder *metrics.MetricAsyncRecorder) Option {
    	return func(o *frameworkOptions) {
    		o.metricsRecorder = recorder
    	}
    }
    
    func TestRecordingMetrics(t *testing.T) {
    	state := &framework.CycleState{}
    	state.SetRecordPluginMetrics(true)
    
    	tests := []struct {
    		name               string
    		action             func(f framework.Framework)
    		inject             injectedResult
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 103K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.4.md

      - [Changelog since v1.4.0-alpha.3](#changelog-since-v140-alpha3)
        - [Action Required](#action-required)
        - [Other notable changes](#other-notable-changes-16)
    - [v1.4.0-alpha.3](#v140-alpha3)
      - [Downloads](#downloads-15)
      - [Changelog since v1.4.0-alpha.2](#changelog-since-v140-alpha2)
        - [Action Required](#action-required-1)
        - [Other notable changes](#other-notable-changes-17)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  7. cmd/bucket-replication.go

    	startTime := time.Now()
    	bucket := ri.Bucket
    	object := ri.Name
    
    	// set defaults for replication action based on operation being performed - actual
    	// replication action can only be determined after stat on remote. This default is
    	// needed for updating replication metrics correctly when target is offline.
    	rAction := replicateMetadata
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  8. src/cmd/go/internal/work/exec.go

    func actionList(root *Action) []*Action {
    	seen := map[*Action]bool{}
    	all := []*Action{}
    	var walk func(*Action)
    	walk = func(a *Action) {
    		if seen[a] {
    			return
    		}
    		seen[a] = true
    		for _, a1 := range a.Deps {
    			walk(a1)
    		}
    		all = append(all, a)
    	}
    	walk(root)
    	return all
    }
    
    // Do runs the action graph rooted at root.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    	}
    
    	resourceVersion := accessor.GetResourceVersion()
    
    	options := metav1.NewDeleteOptions(0)
    	options.Preconditions = &metav1.Preconditions{ResourceVersion: &resourceVersion}
    
    	// delete object
    	_, wasDeleted, err := registry.Delete(testContext, podA.Name, rest.ValidateAllObjectFunc, options)
    	if err != nil {
    		t.Errorf("Unexpected error: %v", err)
    	}
    	if !wasDeleted {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet.go

    	HandlePodRemoves(pods []*v1.Pod)
    	HandlePodReconcile(pods []*v1.Pod)
    	HandlePodSyncs(pods []*v1.Pod)
    	HandlePodCleanups(ctx context.Context) error
    }
    
    // Option is a functional option type for Kubelet
    type Option func(*Kubelet)
    
    // Bootstrap is a bootstrapping interface for kubelet, targets the initialization protocol
    type Bootstrap interface {
    	GetConfiguration() kubeletconfiginternal.KubeletConfiguration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
Back to top