Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 438 for existingPV (0.38 sec)

  1. pkg/scheduler/schedule_one_test.go

    					Spec:       v1.PersistentVolumeClaimSpec{VolumeName: "existingPV"},
    				},
    			},
    			pod:       st.MakePod().Name("ignore").UID("ignore").Namespace(v1.NamespaceDefault).PVC("existingPVC").Obj(),
    			wantNodes: sets.New("node1", "node2"),
    			name:      "existing PVC",
    			wErr:      nil,
    		},
    		{
    			// Pod with non existing PVC
    			registerPlugins: []tf.RegisterPluginFunc{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  2. pkg/controller/podgc/gc_controller_test.go

    		{
    			name: "nodes present in lister",
    			initialInformerNodes: []*v1.Node{
    				testutil.NewNode("existing1"),
    				testutil.NewNode("existing2"),
    			},
    			delay: 2 * quarantineTime,
    			pods: []*v1.Pod{
    				makePod("a", "existing1", v1.PodRunning),
    				makePod("b", "existing2", v1.PodFailed),
    				makePod("c", "existing2", v1.PodSucceeded),
    			},
    			itemsInQueue: 0,
    		},
    		{
    			name: "nodes present in client",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 08:16:48 UTC 2024
    - 29K bytes
    - Viewed (0)
  3. cni/pkg/install/kubeconfig.go

    	kubeconfigFilepath := filepath.Join(cfg.MountedCNINetDir, cfg.KubeconfigFilename)
    
    	existingKC, err := os.ReadFile(kubeconfigFilepath)
    	if err != nil {
    		installLog.Debugf("no preexisting kubeconfig at %s, assuming we need to create one", kubeconfigFilepath)
    		return err
    	}
    
    	if expectedKC.Full == string(existingKC) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:29 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. pkg/kube/inject/testdata/inputs/hello-existing-cncf-networks.yaml.15.template.gen.yaml

    Nicole LiHui <******@****.***> 1717379705 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/DelegatedGradlePropertiesExtensionsTest.kt

            mockForSettings(existing, absent).run {
                action()
                verifyTryGetProperty(existing, absent)
            }
        }
    
        private
        fun withMockForProject(existing: Pair<String, Any?>? = null, absent: String? = null, action: DynamicDelegatedPropertiesMock.ProjectMock.() -> Unit) {
            mockForProject(existing, absent).run {
                action()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 15:44:53 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  6. pkg/kube/inject/testdata/inputs/hello-existing-cncf-networks-json.yaml.16.template.gen.yaml

    Nicole LiHui <******@****.***> 1717379705 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  7. pkg/kubelet/config/config.go

    	existing.Spec = ref.Spec
    	existing.Labels = ref.Labels
    	existing.DeletionTimestamp = ref.DeletionTimestamp
    	existing.DeletionGracePeriodSeconds = ref.DeletionGracePeriodSeconds
    	existing.Status = ref.Status
    	updateAnnotations(existing, ref)
    
    	// 2. this is an graceful delete
    	if ref.DeletionTimestamp != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/Resolver.kt

                )
    
                compute(fqn.simpleName) { _, existing ->
                    if (existing != null && existing != fqn) {
                        analysisContext.errorCollector.collect(ResolutionError(import, ErrorReason.AmbiguousImport(fqn)))
                        existing
                    } else {
                        fqn
                    }
                }
            }
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:46 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  9. cni/pkg/install/cniconfig_test.go

    			chainedCNIPlugin: true,
    		},
    		{
    			name:              "specified existing CNI config file",
    			chainedCNIPlugin:  true,
    			specifiedConfName: "list.conflist",
    			expectedConfName:  "list.conflist",
    			existingConfFiles: []string{"bridge.conf", "list.conflist"},
    		},
    		{
    			name:              "specified existing CNI config file (.conf to .conflist)",
    			chainedCNIPlugin:  true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  10. docs/bucket/replication/setup_3site_replication.sh

    	--remote-bucket http://minio:minio123@127.0.0.1:9004/bucket \
    	--replicate "existing-objects,delete,delete-marker,replica-metadata-sync"
    sleep 1
    
    echo "adding replication rule for b -> a : ${remote_arn}"
    ./mc replicate add siteb/bucket/ \
    	--remote-bucket http://minio:minio123@127.0.0.1:9001/bucket \
    	--replicate "existing-objects,delete,delete-marker,replica-metadata-sync"
    sleep 1
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 10.2K bytes
    - Viewed (0)
Back to top