Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 130 for ServiceName (0.26 sec)

  1. pkg/test/framework/components/jwt/kube.go

    	"istio.io/istio/pkg/test/framework/resource/config/apply"
    	"istio.io/istio/pkg/test/kube"
    	"istio.io/istio/pkg/test/scopes"
    	"istio.io/istio/pkg/test/util/yml"
    )
    
    const (
    	serviceName = "jwt-server"
    	httpPort    = 8000
    	httpsPort   = 8443
    )
    
    var (
    	_ resource.Resource = &serverImpl{}
    	_ Server            = &serverImpl{}
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 22 23:45:43 UTC 2022
    - 4K bytes
    - Viewed (0)
  2. helm/minio/templates/console-ingress.yaml

                backend:
                  service:
                    name: {{ $fullName }}
                    port: 
                      number: {{ $servicePort }}
                {{- else }}
                backend:
                  serviceName: {{ $fullName }}
                  servicePort: {{ $servicePort }}
                {{- end }}
          {{- if . }}
          host: {{ tpl . $ | quote }}
          {{- end }}
        {{- end }}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 03 06:27:17 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. helm/minio/templates/ingress.yaml

                backend:
                  service:
                    name: {{ $fullName }}
                    port: 
                      number: {{ $servicePort }}
                {{- else }}
                backend:
                  serviceName: {{ $fullName }}
                  servicePort: {{ $servicePort }}
                {{- end }}
          {{- if . }}
          host: {{ tpl . $ | quote }}
          {{- end }}
        {{- end }}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 03 06:27:17 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/env/suggest/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="suggest" /> -->
    			<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
    - 1.3K bytes
    - Viewed (0)
  5. src/main/webapp/WEB-INF/env/thumbnail/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="thumbnail" /> -->
    			<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
    - 1.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/properties/PropertyVisitor.java

        /**
         * Visits a service reference. Service references may or may not be declared with a name.
         */
        default void visitServiceReference(String propertyName, boolean optional, PropertyValue value, @Nullable String serviceName, Class<? extends BuildService<?>> buildServiceType) {}
    
        default void visitSoftwareTypeProperty(String propertyName, PropertyValue value, SoftwareType softwareType) {}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:21 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. pkg/test/framework/components/prometheus/kube.go

    	"istio.io/istio/pkg/test/framework/resource"
    	"istio.io/istio/pkg/test/framework/resource/config/apply"
    	testKube "istio.io/istio/pkg/test/kube"
    	"istio.io/istio/pkg/test/scopes"
    )
    
    const (
    	serviceName = "prometheus"
    	appName     = "prometheus"
    )
    
    var (
    	_ Instance  = &kubeComponent{}
    	_ io.Closer = &kubeComponent{}
    )
    
    type kubeComponent struct {
    	id resource.ID
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  8. pkg/test/framework/components/echo/kube/instance.go

    		return echo.CallResult{}, err
    	}
    	aggErr := istiomultierror.New()
    	for _, w := range workloads {
    		clusterName := w.(*workload).cluster.Name()
    		serviceName := fmt.Sprintf("%s (cluster=%s)", c.cfg.Service, clusterName)
    
    		out, err := common.ForwardEcho(serviceName, c, opts, w.(*workload).Client)
    		if err != nil {
    			aggErr = multierror.Append(aggErr, err)
    			continue
    		}
    		resps = append(resps, out.Responses...)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 16 18:55:23 UTC 2023
    - 9K bytes
    - Viewed (0)
  9. 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)
  10. pkg/test/framework/components/zipkin/zipkin.go

    // TODO(bianpengyuan) consider using zipkin proto api https://github.com/istio/istio/issues/13926
    type Span struct {
    	SpanID       string
    	ParentSpanID string
    	ServiceName  string
    	Name         string
    	ChildSpans   []*Span
    }
    
    // Trace represents a trace by a collection of spans which all belong to that trace
    type Trace struct {
    	Spans []Span
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 23 01:09:12 UTC 2021
    - 2K bytes
    - Viewed (0)
Back to top