Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 282 for serviceIP (0.14 sec)

  1. pilot/pkg/model/validation_test.go

    			instance: &ServiceInstance{
    				Service: service1,
    				Endpoint: &IstioEndpoint{
    					Address:      "192.168.1.2",
    					EndpointPort: 1000000,
    				},
    			},
    		},
    		{
    			name: "endpoint missing service port",
    			instance: &ServiceInstance{
    				Service: service1,
    				ServicePort: &Port{
    					Name:     service1.Ports[1].Name + "-extra",
    					Port:     service1.Ports[1].Port,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 23 19:35:35 UTC 2023
    - 4K bytes
    - Viewed (0)
  2. platforms/core-configuration/core-kotlin-extensions/src/main/kotlin/org/gradle/internal/extensions/core/TaskInternalExtensions.kt

    import org.gradle.internal.service.ServiceRegistry
    
    
    internal
    inline fun <reified T : Any> TaskInternal.serviceOf(): T =
        project.serviceOf()
    
    
    inline fun <reified T : Any> Project.serviceOf(): T =
        (this as ProjectInternal).services.get()
    
    
    inline fun <reified T : Any> GradleInternal.serviceOf(): T =
        services.get()
    
    
    inline fun <reified T : Any> ServiceRegistry.get(): T =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 16:55:36 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl-tooling-builders/src/main/kotlin/org/gradle/kotlin/dsl/tooling/builders/KotlinBuildScriptModelBuilder.kt

    internal
    fun ProjectInternal.accessorsClassPathOf(classPath: ClassPath): AccessorsClassPath {
        val stage1BlocksAccessorClassPathGenerator = serviceOf<Stage1BlocksAccessorClassPathGenerator>()
        val projectAccessorClassPathGenerator = serviceOf<ProjectAccessorsClassPathGenerator>()
        val dependenciesAccessors = serviceOf<DependenciesAccessors>()
        return (projectAccessorClassPathGenerator.projectAccessorsClassPath(this, classPath)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 11:06:08 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheState.kt

            }
            if (gradle.isRootBuild) {
                gradle.serviceOf<CacheConfigurationsInternal>().setCleanupHasBeenConfigured(true)
            }
        }
    
        private
        suspend fun DefaultWriteContext.writeBuildOutputCleanupRegistrations(gradle: GradleInternal) {
            val buildOutputCleanupRegistry = gradle.serviceOf<BuildOutputCleanupRegistry>()
            withGradleIsolate(gradle, userTypesCodec) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/services/DefaultIsolatedProjectEvaluationListenerProvider.kt

            beforeProject.clear()
            afterProject.clear()
        }
    
        private
        fun isolate(actions: IsolatedProjectActions, owner: IsolateOwner) =
            IsolatedActionSerializer(owner, owner.serviceOf(), owner.serviceOf())
                .serialize(actions)
    }
    
    
    private
    data class IsolatedProjectActions(
        val beforeProject: IsolatedProjectActionList,
        val afterProject: IsolatedProjectActionList
    )
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/ingress/testdata/simple.yaml.golden

        - destination:
            host: service1.ns.svc.mydomain
            port:
              number: 4209
          weight: 100
      - match:
        - uri:
            exact: /sub/path
        route:
        - destination:
            host: service1.ns.svc.mydomain
            port:
              number: 4201
          weight: 100
      - match:
        - uri:
            exact: /sub/path
        route:
        - destination:
            host: service1.ns.svc.mydomain
            port:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 14 16:13:05 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/KotlinDslTemplatesDeprecationsIntegrationTest.kt

                import org.gradle.kotlin.dsl.support.serviceOf
    
                class DeprecationTrigger(gradle: Gradle) : ${org.gradle.kotlin.dsl.InitScriptApi::class.qualifiedName}(gradle) {
                    override val fileOperations: FileOperations = gradle.serviceOf()
                    override val processOperations: ProcessOperations = gradle.serviceOf()
                }
    
                DeprecationTrigger(gradle)
            """)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/KotlinDslAssignmentIntegrationTest.kt

        }
    
        private
        fun withSettingsWithAssignment() {
            withSettings("""
                import org.gradle.kotlin.dsl.support.serviceOf
                data class Container(val property: Property<String>)
                fun newStringProperty(): Property<String> = gradle.serviceOf<ObjectFactory>().property(String::class.java)
                val container = Container(newStringProperty()).apply {
                    property = "Hello world"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl-tooling-builders/src/main/kotlin/org/gradle/kotlin/dsl/tooling/builders/internal/KotlinScriptingModelBuildersRegistrationAction.kt

    class KotlinScriptingModelBuildersRegistrationAction : ProjectConfigureAction {
    
        override fun execute(project: ProjectInternal) {
    
            val intermediateModelProvider = project.serviceOf<IntermediateToolingModelProvider>()
            val builders = project.serviceOf<ToolingModelBuilderRegistry>()
    
            builders.register(KotlinBuildScriptModelBuilder)
            builders.register(KotlinBuildScriptTemplateModelBuilder)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 18 00:04:38 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. tests/integration/security/filebased_tls_origination/main_test.go

            mountPath: /etc/certs/custom
    `
    }
    
    func setupApps(ctx resource.Context, appNs namespace.Getter,
    	serviceNs namespace.Getter, customCfg *[]echo.Config,
    ) error {
    	appNamespace := appNs.Get()
    	serviceNamespace := serviceNs.Get()
    	var customConfig []echo.Config
    	client := echo.Config{
    		Service:   "client",
    		Namespace: appNamespace,
    		Ports:     []echo.Port{},
    		Subsets: []echo.SubsetConfig{{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 7.3K bytes
    - Viewed (0)
Back to top