Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 924 for SVC (0.02 sec)

  1. src/runtime/sys_netbsd_arm64.s

    	MOVD	$0, R1			// arg 2 - rmtp
    	SVC	$SYS___nanosleep50
    	RET
    
    TEXT runtime·lwp_kill(SB),NOSPLIT,$0-16
    	MOVW	tid+0(FP), R0		// arg 1 - target
    	MOVD	sig+8(FP), R1		// arg 2 - signo
    	SVC	$SYS__lwp_kill
    	RET
    
    TEXT runtime·raiseproc(SB),NOSPLIT,$16
    	SVC	$SYS_getpid
    					// arg 1 - pid (from getpid)
    	MOVD	sig+0(FP), R1		// arg 2 - signo
    	SVC	$SYS_kill
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  2. pilot/pkg/model/cluster_local_test.go

    			host:     "s.kube-system.svc.cluster.local",
    			expected: true,
    		},
    		{
    			name:     "api server local is local",
    			m:        mesh.DefaultMeshConfig(),
    			host:     "kubernetes.default.svc.cluster.local",
    			expected: true,
    		},
    		{
    			name:     "discovery server is local",
    			m:        mesh.DefaultMeshConfig(),
    			host:     "istiod.istio-system.svc.cluster.local",
    			expected: true,
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/testdata/mesh.yaml.golden

      name: tls-tls-0-istio-autogenerated-k8s-gateway
      namespace: default
    spec:
      gateways:
      - mesh
      hosts:
      - echo-1.default.svc.domain.suffix
      tls:
      - match:
        - sniHosts:
          - echo-1.default.svc.domain.suffix
        route:
        - destination:
            host: echo.default.svc.domain.suffix
            port:
              number: 80
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 19 18:39:48 UTC 2024
    - 6K bytes
    - Viewed (0)
  4. tests/integration/pilot/testdata/tunneling/gateway/tcp/virtual-service.tmpl.yaml

    spec:
      hosts:
      - external.{{ .externalNamespace }}.svc.cluster.local
      gateways:
      - {{ .EgressGatewayServiceName | default "istio-egressgateway" }}
      tcp:
      - match:
        - port: 80
        route:
        - destination:
            host: external-forward-proxy.{{ .externalNamespace }}.svc.cluster.local
            subset: external-svc-tcp
            port:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 05 17:19:27 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/httproute_test.go

    				"allow_any": {"*"},
    				"test.default.svc.cluster.local:80": {
    					"test.default.svc.cluster.local",
    					"test",
    					"test.default.svc",
    				},
    				"test.default:80": {"test.default"},
    			},
    			map[string]string{
    				"allow_any": "PassthroughCluster",
    				// From the service, go to the service
    				"test.default.svc.cluster.local:80": "outbound|80||test.default.svc.cluster.local",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/testdata/route-precedence.yaml.golden

          uri:
            exact: /baz
        name: allowed-2.http.1
        route:
        - destination:
            host: svc2.allowed-2.svc.domain.suffix
            port:
              number: 80
      - match:
        - uri:
            prefix: /foo/bar
        name: allowed-2.http.0
        route:
        - destination:
            host: svc2.allowed-2.svc.domain.suffix
            port:
              number: 80
      - match:
        - headers:
            my-header:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  7. pkg/kubelet/network/dns/dns_test.go

    			hostNames:    []string{"testNS.svc.TEST", "svc.TEST", "TEST"},
    			resultSearch: []string{"testNS.svc.TEST", "svc.TEST", "TEST"},
    			events:       []string{},
    		},
    
    		{
    			desc:         "valid: 5 search paths",
    			hostNames:    []string{"testNS.svc.TEST", "svc.TEST", "TEST", "AAA", "BBB"},
    			resultSearch: []string{"testNS.svc.TEST", "svc.TEST", "TEST", "AAA", "BBB"},
    			events:       []string{},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  8. pkg/registry/core/service/strategy_test.go

    		svc.Spec.Type = api.ServiceTypeNodePort
    	}
    	setTypeClusterIP := func(svc *api.Service) {
    		svc.Spec.Type = api.ServiceTypeClusterIP
    	}
    	setTypeLoadBalancer := func(svc *api.Service) {
    		svc.Spec.Type = api.ServiceTypeLoadBalancer
    	}
    	clearClusterIPs := func(svc *api.Service) {
    		svc.Spec.ClusterIP = ""
    		svc.Spec.ClusterIPs = nil
    	}
    	changeClusterIPs := func(svc *api.Service) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/autoserviceexportcontroller.go

    		log.Warnf("%s failed creating ServiceExport %s/%s: %v", c.logPrefix(), svc.Namespace, svc.Name, err)
    		return err
    	}
    
    	log.Debugf("%s created ServiceExport %s/%s", c.logPrefix(), svc.Namespace, svc.Name)
    	return nil
    }
    
    func (c *autoServiceExportController) isClusterLocalService(svc *v1.Service) bool {
    	hostname := serviceRegistryKube.ServiceHostname(svc.Name, svc.Namespace, c.DomainSuffix)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  10. pkg/windows/service/service.go

    	h.fromsvc <- nil
    
    	s <- svc.Status{State: svc.Running, Accepts: svc.AcceptStop | svc.AcceptShutdown | svc.Accepted(windows.SERVICE_ACCEPT_PARAMCHANGE)}
    	klog.Infof("Service running")
    Loop:
    	for {
    		select {
    		case <-h.tosvc:
    			break Loop
    		case c := <-r:
    			switch c.Cmd {
    			case svc.Cmd(windows.SERVICE_CONTROL_PARAMCHANGE):
    				s <- c.CurrentStatus
    			case svc.Interrogate:
    				s <- c.CurrentStatus
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 24 11:25:33 UTC 2022
    - 3.3K bytes
    - Viewed (0)
Back to top