Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 282 for serviceIP (0.15 sec)

  1. pilot/pkg/serviceregistry/kube/controller/ambient/services.go

    )
    
    func (a *index) ServicesCollection(
    	Services krt.Collection[*v1.Service],
    	ServiceEntries krt.Collection[*networkingclient.ServiceEntry],
    	Waypoints krt.Collection[Waypoint],
    	Namespaces krt.Collection[*v1.Namespace],
    ) krt.Collection[model.ServiceInfo] {
    	ServicesInfo := krt.NewCollection(Services, func(ctx krt.HandlerContext, s *v1.Service) *model.ServiceInfo {
    		portNames := map[int32]model.ServicePortName{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 12:29:55 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/concurrent/IO.kt

     * limitations under the License.
     */
    
    package org.gradle.kotlin.dsl.concurrent
    
    import org.gradle.api.Project
    import org.gradle.internal.service.scopes.Scope
    import org.gradle.internal.service.scopes.ServiceScope
    
    import org.gradle.kotlin.dsl.support.serviceOf
    import org.gradle.kotlin.dsl.support.useToRun
    
    import java.io.File
    
    
    /**
     * A scheduler of IO actions.
     */
    interface IO {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:45 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/service.go

    //sys	QueryServiceStatusEx(service Handle, infoLevel uint32, buff *byte, buffSize uint32, bytesNeeded *uint32) (err error) = advapi32.QueryServiceStatusEx
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/multicluster/service.go

    			gvk.Service,
    		},
    	}
    }
    
    // Analyze implements Analyzer
    func (s *ServiceAnalyzer) Analyze(c analysis.Context) {
    	services := map[resource.FullName]map[cluster.ID]*resource.Instance{}
    	c.ForEach(gvk.Service, func(r *resource.Instance) bool {
    		clusterID := r.Origin.ClusterName()
    		if clusterID == "" {
    			return true
    		}
    		if _, ok := services[r.Metadata.FullName]; !ok {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/cli-runtime/artifacts/kustomization/service.yaml

    kind: Service
    apiVersion: v1
    metadata:
      name: the-service
    spec:
      selector:
        deployment: hello
      type: LoadBalancer
      ports:
      - protocol: TCP
        port: 8666
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 26 00:29:27 UTC 2019
    - 183 bytes
    - Viewed (0)
  6. releasenotes/notes/fix-analysis-gatewayport.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: istioctl
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 03 07:52:54 UTC 2023
    - 275 bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/SettingsExtensions.kt

     * limitations under the License.
     */
    package org.gradle.kotlin.dsl.support
    
    import org.gradle.api.initialization.Settings
    
    
    inline fun <reified T : Any> Settings.serviceOf(): T =
        gradle.serviceOf()
    
    
    internal
    fun serviceRegistryOf(settings: Settings) =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 875 bytes
    - Viewed (0)
  8. testing/architecture-test/src/changes/archunit-store/injected-services-should-have-service-scope-applied.txt

    Class <org.gradle.api.reporting.components.internal.TypeAwareBinaryRenderer> is not annotated with @ServiceScope in (TypeAwareBinaryRenderer.java:0)
    Class <org.gradle.api.services.BuildServiceParameters> is not annotated with @ServiceScope in (BuildServiceParameters.java:0)
    Class <org.gradle.api.services.BuildServiceRegistry> is not annotated with @ServiceScope in (BuildServiceRegistry.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  9. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/SamplesJavaIncrementalAnnotationProcessingIntegrationTest.groovy

            outputs.snapshot { compile() }
    
            when:
            processing.dir.file("groovy/user/src/main/java/Service1.java").text = """
            @Service
            public class Service1 {
                public void hasChanged() {}
            }
            """
            compile()
    
            then:
            outputs.recompiledClasses("Service1", "ServiceRegistry", "Main")
        }
    
        def compile() {
            inDirectory(processing.dir.file('groovy'))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/Service.java

    import org.apache.maven.api.annotations.ThreadSafe;
    
    /**
     * Marker interface for all services provided by the {@link Session}.
     * <p>
     * Services can be retrieved from the session using the
     * {@link Session#getService(Class)} method.
     *
     * @since 4.0.0
     * @see Session#getService(Class)
     */
    @Experimental
    @ThreadSafe
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:54:53 UTC 2024
    - 1.2K bytes
    - Viewed (0)
Back to top