Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 316 for svcname (0.18 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/nftables/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: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/volumezone/volume_zone.go

    			continue
    		}
    		pvcName := volume.PersistentVolumeClaim.ClaimName
    		if pvcName == "" {
    			return nil, framework.NewStatus(framework.UnschedulableAndUnresolvable, "PersistentVolumeClaim had no name")
    		}
    		pvc, err := pl.pvcLister.PersistentVolumeClaims(pod.Namespace).Get(pvcName)
    		if s := getErrorAsStatus(err); !s.IsSuccess() {
    			return nil, s
    		}
    
    		pvName := pvc.Spec.VolumeName
    		if pvName == "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:13:06 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. 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)
  5. pkg/scheduler/framework/plugins/nodevolumelimits/csi.go

    	namespace := pvc.Namespace
    	pvcName := pvc.Name
    	scName := storagehelpers.GetPersistentVolumeClaimClass(pvc)
    
    	// If StorageClass is not set or not found, then PVC must be using immediate binding mode
    	// and hence it must be bound before scheduling. So it is safe to not count it.
    	if scName == "" {
    		logger.V(5).Info("PVC has no StorageClass", "PVC", klog.KObj(pvc))
    		return "", ""
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 18:07:11 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  6. CNAME

    Harshavardhana <******@****.***> 1624037668 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 18 17:34:28 UTC 2021
    - 14 bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/deployment/services.go

    		protMap := portMap[port]
    		if len(protMap) > 1 {
    			// Collect names from both protocols
    			svcNames := make(ServiceNames, 0)
    			for protocol := range protMap {
    				svcNames = append(svcNames, protMap[protocol]...)
    			}
    			sort.Strings(svcNames)
    			m := msg.NewDeploymentAssociatedToMultipleServices(r, r.Metadata.FullName.Name.String(), port, svcNames)
    
    			if line, ok := util.ErrorLine(r, fmt.Sprintf(util.MetadataName)); ok {
    				m.Line = line
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  8. platforms/jvm/jvm-services/src/main/java/org/gradle/internal/jvm/inspection/JvmInstallationMetadata.java

            String javaVendor,
            String runtimeName,
            String runtimeVersion,
            String jvmName,
            String jvmVersion,
            String jvmVendor,
            String architecture
        ) {
            return new DefaultJvmInstallationMetadata(javaHome, javaVersion, javaVendor, runtimeName, runtimeVersion, jvmName, jvmVersion, jvmVendor, architecture);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/nodevolumelimits/csi_test.go

    				pvLister:             getFakeCSIPVLister(test.filterName, test.driverNames...),
    				pvcLister:            append(getFakeCSIPVCLister(test.filterName, scName, test.driverNames...), test.extraClaims...),
    				scLister:             getFakeCSIStorageClassLister(scName, test.driverNames[0]),
    				randomVolumeIDPrefix: rand.String(32),
    				translator:           csiTranslator,
    			}
    			_, ctx := ktesting.NewTestContext(t)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 18:07:11 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  10. mockwebserver-deprecated/src/main/kotlin/okhttp3/mockwebserver/PushPromise.kt

      @get:JvmName("headers") val headers: Headers,
      @get:JvmName("response") val response: MockResponse,
    ) {
      @JvmName("-deprecated_method")
      @Deprecated(
        message = "moved to val",
        replaceWith = ReplaceWith(expression = "method"),
        level = DeprecationLevel.ERROR,
      )
      fun method(): String = method
    
      @JvmName("-deprecated_path")
      @Deprecated(
        message = "moved to val",
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top