Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 514 for sw_vers (0.28 sec)

  1. src/net/dnsconfig_windows.go

    	"time"
    )
    
    func dnsReadConfig(ignoredFilename string) (conf *dnsConfig) {
    	conf = &dnsConfig{
    		ndots:    1,
    		timeout:  5 * time.Second,
    		attempts: 2,
    	}
    	defer func() {
    		if len(conf.servers) == 0 {
    			conf.servers = defaultNS
    		}
    	}()
    	aas, err := adapterAddresses()
    	if err != nil {
    		return
    	}
    
    	for _, aa := range aas {
    		// Only take interfaces whose OperStatus is IfOperStatusUp(0x01) into DNS configs.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 10:25:02 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. pilot/pkg/config/monitor/file_snapshot_test.go

    	g.Expect(configs).To(HaveLen(1))
    	g.Expect(configs[0].Domain).To(Equal("foo"))
    
    	gateway := configs[0].Spec.(*networking.Gateway)
    	g.Expect(gateway.Servers[0].Port.Number).To(Equal(uint32(80)))
    	g.Expect(gateway.Servers[0].Port.Protocol).To(Equal("http"))
    	g.Expect(gateway.Servers[0].Hosts).To(Equal([]string{"*.example.com"}))
    }
    
    func TestFileSnapshotWithFilter(t *testing.T) {
    	g := NewWithT(t)
    
    	ts := &testState{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  3. pilot/pkg/model/gateway_test.go

    				if tt.serversForRouteNum[k] != len(v) {
    					t.Errorf("for route %v expected %v servers got %v", k, tt.serversForRouteNum[k], len(v))
    				}
    			}
    			ns := 0
    			for _, ms := range mgw.MergedServers {
    				ns += len(ms.Servers)
    			}
    			if ns != tt.serverNum {
    				t.Errorf("Incorrect number of total servers. Expected: %v Got: %d", tt.serverNum, ns)
    			}
    			if len(mgw.GatewayNameForServer) != tt.gatewaysNum {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 02:36:23 UTC 2024
    - 9K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/gateway/testdata/route-binding.yaml.golden

        internal.istio.io/parents: Gateway/gateway/default.istio-system
      creationTimestamp: null
      name: gateway-istio-autogenerated-k8s-gateway-default
      namespace: istio-system
    spec:
      servers:
      - hosts:
        - '*/*.domain.example'
        port:
          name: default
          number: 80
          protocol: HTTP
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      annotations:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  5. internal/grid/debug.go

    	debugWaitForExit
    	debugSetConnPingDuration
    	debugSetClientPingDuration
    	debugAddToDeadline
    	debugIsOutgoingClosed
    	debugBlockInboundMessages
    )
    
    // TestGrid contains a grid of servers for testing purposes.
    type TestGrid struct {
    	Servers     []*httptest.Server
    	Listeners   []net.Listener
    	Managers    []*Manager
    	Mux         []*mux.Router
    	Hosts       []string
    	cleanupOnce sync.Once
    	cancel      context.CancelFunc
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. samples/bookinfo/src/reviews/Dockerfile

    FROM open-liberty:24.0.0.1-kernel-slim-java17-openj9
    
    ENV SERVERDIRNAME reviews
    
    COPY --from=builder /home/gradle/reviews-wlpcfg/servers/LibertyProjectServer/ /opt/ol/wlp/usr/servers/defaultServer/
    
    RUN /opt/ol/wlp/bin/featureUtility installServerFeatures  --acceptLicense /opt/ol/wlp/usr/servers/defaultServer/server.xml --verbose && \
        chmod -R g=rwx /opt/ol/wlp/output/defaultServer/
    
    ARG service_version
    ARG enable_ratings
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 23:40:57 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/options/etcd.go

    			allErrors = append(allErrors, fmt.Errorf("--etcd-servers-overrides invalid, must be of format: group/resource#servers, where servers are URLs, semicolon separated"))
    			continue
    		}
    
    		apiresource := strings.Split(tokens[0], "/")
    		if len(apiresource) != 2 {
    			allErrors = append(allErrors, fmt.Errorf("--etcd-servers-overrides invalid, must be of format: group/resource#servers, where servers are URLs, semicolon separated"))
    			continue
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 15:02:16 UTC 2024
    - 20K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/testdata/tls.yaml.golden

        internal.istio.io/parents: Gateway/gateway/passthrough.istio-system
      creationTimestamp: null
      name: gateway-istio-autogenerated-k8s-gateway-passthrough
      namespace: istio-system
    spec:
      servers:
      - hosts:
        - '*/*'
        port:
          name: default
          number: 34000
          protocol: TLS
        tls: {}
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      annotations:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 01 20:54:36 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. samples/bookinfo/src/reviews/reviews-wlpcfg/build.gradle

    task copyApplication(type: Copy) {
        dependsOn ':reviews-application:war'
        from '../reviews-application/build/libs/reviews-application-1.0.war'
        into 'servers/LibertyProjectServer/apps/'
    }
    
    task build(dependsOn: ['copyApplication']){
    }
    
    task clean {
        delete "servers/LibertyProjectServer/apps"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:37 UTC 2024
    - 397 bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/testdata/eastwest-labelport.yaml.golden

        internal.istio.io/parents: Gateway/eastwestgateway/istiod-grpc.istio-system
      creationTimestamp: null
      name: eastwestgateway-istio-autogenerated-k8s-gateway-istiod-grpc
      namespace: istio-system
    spec:
      servers:
      - hosts:
        - istio-system/*
        port:
          name: default
          number: 15012
          protocol: TLS
        tls: {}
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 2.9K bytes
    - Viewed (0)
Back to top