Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 270 for service2 (0.21 sec)

  1. pkg/config/analysis/analyzers/analyzers_test.go

    		inputFiles: []string{"testdata/service-no-port-name.yaml"},
    		analyzer:   &service.PortNameAnalyzer{},
    		expected: []message{
    			{msg.PortNameIsNotUnderNamingConvention, "Service my-namespace1/my-service1"},
    			{msg.PortNameIsNotUnderNamingConvention, "Service my-namespace1/my-service1"},
    			{msg.PortNameIsNotUnderNamingConvention, "Service my-namespace2/my-service2"},
    		},
    	},
    	{
    		name:       "namedPort",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  2. pkg/printers/internalversion/printers_test.go

    	}
    }
    
    func TestPrintServiceLoadBalancer(t *testing.T) {
    	tests := []struct {
    		service  api.Service
    		options  printers.GenerateOptions
    		expected []metav1.TableRow
    	}{
    		// Test load balancer service with multiple external IP's
    		{
    			service: api.Service{
    				ObjectMeta: metav1.ObjectMeta{Name: "service1"},
    				Spec: api.ServiceSpec{
    					ClusterIPs: []string{"1.2.3.4"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  3. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/service/scopes/ServiceScope.java

     * <p>
     * Services are visible to other services in the same scope and descendent scopes.
     * Services are not visible to services in ancestor scopes.
     * <p>
     * When a service is defined in multiple scopes, the highest scope determines the visibility.
     * The additional instances of the service in lower scopes "override" the instance from the parent
     * for their scope and its children.
     *
     * @see Scope
     */
    @Retention(RetentionPolicy.RUNTIME)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/cluster.go

    	} else {
    		// Service exists. If the service update has port change, we need to the corresponding port clusters.
    		services = append(services, service)
    		for port, cluster := range servicePortClusters[service.Hostname.String()] {
    			// if this service port is removed, we can conclude that it is a removed cluster.
    			if _, exists := service.Ports.GetByPort(port); !exists {
    				deletedClusters = append(deletedClusters, cluster)
    			}
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  5. platforms/core-runtime/build-state/src/main/java/org/gradle/internal/buildprocess/BuildProcessState.java

    import org.gradle.internal.instrumentation.agent.AgentStatus;
    import org.gradle.internal.service.ServiceRegistry;
    import org.gradle.internal.service.ServiceRegistryBuilder;
    import org.gradle.internal.service.scopes.GlobalScopeServices;
    import org.gradle.internal.service.scopes.GradleUserHomeScopeServiceRegistry;
    import org.gradle.internal.service.scopes.Scope;
    
    import java.io.Closeable;
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache-base/src/main/kotlin/org/gradle/internal/cc/base/serialize/IsolateOwners.kt

            override fun <T> service(type: Class<T>): T = delegate.service(type)
        }
    
        class OwnerFlowScope(override val delegate: Gradle) : IsolateOwners() {
            override fun <T> service(type: Class<T>): T = (delegate as GradleInternal).services.get(type)
        }
    
        class OwnerFlowAction(override val delegate: OwnerFlowScope) : IsolateOwners() {
            override fun <T> service(type: Class<T>): T = delegate.service(type)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheHost.kt

                val settingsSource = TextResourceScriptSource(service<TextFileResourceLoader>().loadFile("settings file", settingsFile))
                lateinit var services: SettingsScopeServices
                val serviceRegistryFactory = object : ServiceRegistryFactory {
                    override fun createFor(domainObject: Any): ServiceRegistry {
                        services = SettingsScopeServices(service<ServiceRegistry>(), domainObject as SettingsInternal)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DefaultBuildModelControllerServices.kt

    import org.gradle.internal.reflect.Instantiator
    import org.gradle.internal.service.CachingServiceLocator
    import org.gradle.internal.service.Provides
    import org.gradle.internal.service.ServiceRegistrationProvider
    import org.gradle.internal.service.scopes.BuildScopeServices
    import org.gradle.internal.service.scopes.ServiceRegistryFactory
    import org.gradle.invocation.DefaultGradle
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DaemonProcessState.java

            // Merge the daemon services into the build process services
            // It would be better to separate these into different scopes, but many things still assume that daemon services are available in the global scope,
            // so keep them merged as a migration step
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/services/internal/RegisteredBuildServiceProvider.java

     * limitations under the License.
     */
    
    package org.gradle.api.services.internal;
    
    import com.google.common.collect.ImmutableList;
    import com.google.errorprone.annotations.concurrent.GuardedBy;
    import org.gradle.api.artifacts.component.BuildIdentifier;
    import org.gradle.api.internal.provider.ProviderInternal;
    import org.gradle.api.services.BuildService;
    import org.gradle.api.services.BuildServiceParameters;
    import org.gradle.internal.Try;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 09:24:00 UTC 2024
    - 8.1K bytes
    - Viewed (0)
Back to top