Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for svcname (0.1 sec)

  1. pkg/registry/core/service/storage/storage_test.go

    		})
    	}
    }
    
    func TestDeleteWithFinalizer(t *testing.T) {
    	svcName := "foo"
    
    	storage, _, server := newStorage(t, []api.IPFamily{api.IPv4Protocol, api.IPv6Protocol})
    	defer server.Terminate(t)
    	defer storage.Store.DestroyFunc()
    
    	// This will allocate cluster IPs, NodePort, and HealthCheckNodePort.
    	svc := svctest.MakeService(svcName, svctest.SetTypeLoadBalancer,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  2. pkg/proxy/iptables/proxier_test.go

    			}
    			for svcName := range tc.expectedNewlyActiveUDPServices {
    				found := false
    				for _, stale := range result.NewlyActiveUDPServices {
    					if stale == svcName {
    						found = true
    					}
    				}
    				if !found {
    					t.Errorf("[%d] expected staleServiceNames[%v], but didn't find it: %v", tci, svcName, result.NewlyActiveUDPServices)
    				}
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  3. pkg/apis/core/validation/validation.go

    			if podMeta != nil && podMeta.Name != "" && volName != "" {
    				pvcName := podMeta.Name + "-" + volName
    				for _, msg := range ValidatePersistentVolumeName(pvcName, false) {
    					allErrs = append(allErrs, field.Invalid(fldPath.Child("name"), volName, fmt.Sprintf("PVC name %q: %v", pvcName, msg)))
    				}
    			}
    		}
    	}
    
    	if numVolumes == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  4. ChangeLog.md

    - [`KT-61245`](https://youtrack.jetbrains.com/issue/KT-61245) Analysis API: ContextCollector provides incorrect context for supertype constructor calls
    - [`KT-60384`](https://youtrack.jetbrains.com/issue/KT-60384) K2: Opening `@JvmName` source in IDEA: NPE at PsiRawFirBuilder$Visitor.toFirConstructor()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
Back to top