Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 110 for ServiceName (0.34 sec)

  1. src/main/webapp/WEB-INF/env/crawler/resources/log4j2.xml

    			filePattern="${log.file.basedir}/${domain.name}${backup.date.suffix}-%i.log.gz">
    			<PatternLayout><Pattern>${log.pattern}</Pattern></PatternLayout><!-- <EcsLayout serviceName="fess" eventDataset="crawler" /> -->
    			<Policies>
    				<TimeBasedTriggeringPolicy />
    				<SizeBasedTriggeringPolicy size="100 MB" />
    			</Policies>
    			<DefaultRolloverStrategy fileIndex="max" min="1"
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Feb 20 13:05:30 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/common/deployment/external.go

    		config.IPFamilies = "IPv6, IPv4"
    		config.IPFamilyPolicy = "RequireDualStack"
    	}
    	return b.WithConfig(config)
    }
    
    func (e *External) LoadValues(echos echo.Instances) {
    	e.All = match.ServiceName(echo.NamespacedName{Name: ExternalSvc, Namespace: e.Namespace}).GetMatches(echos)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/flow-services/src/main/kotlin/org/gradle/internal/flow/services/FlowParametersInstantiator.kt

                        problems.add(problem)
                    }
                },
                object : PropertyVisitor {
                    override fun visitServiceReference(propertyName: String, optional: Boolean, value: PropertyValue, serviceName: String?, buildServiceType: Class<out BuildService<*>>) {
                        value.maybeFinalizeValue()
                    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:01:34 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  4. pkg/test/framework/components/zipkin/kube.go

    	if parentSpanID, ok := spanSpec["parentId"]; ok {
    		s.ParentSpanID = parentSpanID.(string)
    	}
    	if endpointObj, ok := spanSpec["localEndpoint"]; ok {
    		if em, ok := endpointObj.(map[string]any); ok {
    			s.ServiceName = em["serviceName"].(string)
    		}
    	}
    	if name, ok := spanSpec["name"]; ok {
    		s.Name = name.(string)
    	}
    	return s
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 14 19:29:38 UTC 2023
    - 8K bytes
    - Viewed (0)
  5. pkg/kube/inject/testdata/inject/statefulset.yaml.injected

    apiVersion: apps/v1
    kind: StatefulSet
    metadata:
      creationTimestamp: null
      name: hello
    spec:
      replicas: 3
      selector:
        matchLabels:
          app: hello
          tier: backend
          track: stable
      serviceName: hello
      template:
        metadata:
          annotations:
            istio.io/rev: default
            kubectl.kubernetes.io/default-container: hello
            kubectl.kubernetes.io/default-logs-container: hello
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  6. tests/integration/pilot/mcs/autoexport/autoexport_test.go

    			// Verify that ServiceExport is created automatically for services.
    			ctx.NewSubTest("exported").RunParallel(
    				func(ctx framework.TestContext) {
    					serviceB := match.ServiceName(echo.NamespacedName{Name: common.ServiceB, Namespace: echos.Namespace})
    					for _, cluster := range serviceB.GetMatches(echos.Instances).Clusters() {
    						cluster := cluster
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  7. src/main/resources/log4j2.xml

    			filePattern="${log.file.basedir}/${domain.name}${backup.date.suffix}-%i.log.gz">
    			<PatternLayout><Pattern>${log.pattern}</Pattern></PatternLayout><!-- <EcsLayout serviceName="fess" eventDataset="app" /> -->
    			<Policies>
    				<TimeBasedTriggeringPolicy />
    				<SizeBasedTriggeringPolicy size="100 MB" />
    			</Policies>
    			<DefaultRolloverStrategy fileIndex="max" min="1"
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Feb 20 13:17:33 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/testdata/misannotated.yaml

        istio.io/ingress.class: "istio"
    spec:
      rules:
      - http:
          paths:
          - path: /productpage
            backend:
              serviceName: productpage
              servicePort: 8080
    ---
    apiVersion: v1
    kind: Pod
    metadata:
      name: grafana-test
      labels:
        app: grafana-test
        istio: grafana
      annotations:
        # valid here
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 03 21:10:07 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  9. pkg/test/framework/components/echo/kube/templates/deployment.yaml

    metadata:
    {{- if $.Compatibility }}
      name: {{ $.Service }}-{{ $subset.Version }}-{{ $revision }}
    {{- else }}
      name: {{ $.Service }}-{{ $subset.Version }}
    {{- end }}
    spec:
      {{- if $.StatefulSet }}
      serviceName: {{ $.Service }}
      {{- end }}
      replicas: {{$subset.Replicas | default 1 }}
      selector:
        matchLabels:
          app: {{ $.Service }}
          version: {{ $subset.Version }}
    {{- if ne $.Locality "" }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. pkg/test/echo/proto/echo_grpc.pb.go

    // It's only intended for direct use with grpc.RegisterService,
    // and not to be introspected or modified (even as a copy)
    var EchoTestService_ServiceDesc = grpc.ServiceDesc{
    	ServiceName: "proto.EchoTestService",
    	HandlerType: (*EchoTestServiceServer)(nil),
    	Methods: []grpc.MethodDesc{
    		{
    			MethodName: "Echo",
    			Handler:    _EchoTestService_Echo_Handler,
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 26 01:14:28 UTC 2023
    - 5.9K bytes
    - Viewed (0)
Back to top