Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 53 of 53 for serviceOf (0.1 sec)

  1. cluster/gce/windows/common.psm1

        [parameter(Mandatory=$false)] [int]$Delay = 0
      )
      if ($Delay -gt 0) {
        Start-Sleep $Delay
      }
      Get-Service -ErrorAction Continue $Service | Select-Object * | Out-String
      & sc.exe queryex $Service
      & sc.exe qc $Service
      & sc.exe qfailure $Service
    }
    
    # Checks if a file should be written or overwritten by testing if it already
    # exists and checking the value of the global $REDO_STEPS variable. Emits an
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 19 14:47:38 UTC 2022
    - 25.4K bytes
    - Viewed (0)
  2. pilot/pkg/model/sidecar.go

    		if ilw.matchPort {
    			return serviceMatchingListenerPort(service, ilw)
    		}
    		return service
    	}
    	return nil
    }
    
    // matchingAliasService the original service or a trimmed service which has a subset of aliases, based on imports from sidecar
    func matchingAliasService(importedHosts hostClassification, service *Service) *Service {
    	if service == nil {
    		return nil
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:23 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/controller.go

    	}
    }
    
    // servicesForNamespacedName returns all services for the given service name.
    // If Kubernetes Multi-Cluster Services (MCS) is enabled, this will contain the regular
    // service as well as the MCS service (clusterset.local), if available. Otherwise,
    // only the regular service will be returned.
    func (c *Controller) servicesForNamespacedName(name types.NamespacedName) []*model.Service {
    	if features.EnableMCSHost {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 41.2K bytes
    - Viewed (0)
Back to top