Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 115 for SRV (0.03 sec)

  1. pkg/kubelet/cm/dra/plugin/client_test.go

    }
    
    func (f *fakeV1alpha3GRPCServer) NodeListAndWatchResources(req *drapbv1alpha3.NodeListAndWatchResourcesRequest, srv drapbv1alpha3.Node_NodeListAndWatchResourcesServer) error {
    	if err := srv.Send(&drapbv1alpha3.NodeListAndWatchResourcesResponse{}); err != nil {
    		return err
    	}
    	if err := srv.Send(&drapbv1alpha3.NodeListAndWatchResourcesResponse{}); err != nil {
    		return err
    	}
    	return nil
    }
    
    type tearDown func()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 16:27:05 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  2. pkg/controller/namespace/deletion/namespaced_resources_deleter_test.go

    func testServerAndClientConfig(handler func(http.ResponseWriter, *http.Request)) (*httptest.Server, *restclient.Config) {
    	srv := httptest.NewServer(http.HandlerFunc(handler))
    	config := &restclient.Config{
    		Host: srv.URL,
    	}
    	return srv, config
    }
    
    // fakeAction records information about requests to aid in testing.
    type fakeAction struct {
    	method string
    	path   string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 07:34:23 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/mod/sumdb/server.go

    	return &Server{ops: ops}
    }
    
    // ServerPaths are the URL paths the Server can (and should) serve.
    //
    // Typically a server will do:
    //
    //	srv := sumdb.NewServer(ops)
    //	for _, path := range sumdb.ServerPaths {
    //		http.Handle(path, srv)
    //	}
    var ServerPaths = []string{
    	"/lookup/",
    	"/latest",
    	"/tile/",
    }
    
    var modVerRE = lazyregexp.New(`^[^@]+@v[0-9]+\.[0-9]+\.[0-9]+(-[^@]*)?(\+incompatible)?$`)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  4. cluster/addons/dns/kube-dns/kube-dns.yaml.in

              failureThreshold: 5
            args:
            - --v=2
            - --logtostderr
            - --probe=kubedns,127.0.0.1:10053,kubernetes.default.svc.dns_domain,5,SRV
            - --probe=dnsmasq,127.0.0.1:53,kubernetes.default.svc.dns_domain,5,SRV
            ports:
            - containerPort: 10054
              name: metrics
              protocol: TCP
            resources:
              requests:
                memory: 20Mi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 03:19:02 UTC 2024
    - 7K bytes
    - Viewed (0)
  5. tests/integration/telemetry/policy/testdata/enable_envoy_local_ratelimit_per_route.yaml

                value:
                  stat_prefix: http_local_rate_limiter
        - applyTo: HTTP_ROUTE
          match:
            context: SIDECAR_OUTBOUND
            routeConfiguration:
              vhost:
                name: "srv.{{ .EchoNamespace }}.svc.cluster.local:80"
                route:
                  action: ANY
          patch:
            operation: MERGE
            value:
              typed_per_filter_config:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 02 03:31:35 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  6. pkg/kubelet/pluginmanager/pluginwatcher/example_plugin_apis/v1beta1/api.pb.go

    	return nil, status.Errorf(codes.Unimplemented, "method GetExampleInfo not implemented")
    }
    
    func RegisterExampleServer(s *grpc.Server, srv ExampleServer) {
    	s.RegisterService(&_Example_serviceDesc, srv)
    }
    
    func _Example_GetExampleInfo_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
    	in := new(ExampleRequest)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 23 17:31:18 UTC 2023
    - 17.3K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/gateway/secret.go

    			if line, ok := util.ErrorLine(r, fmt.Sprintf(util.GatewaySelector, label)); ok {
    				m.Line = line
    			}
    
    			ctx.Report(gvk.Gateway, m)
    			return true
    		}
    
    		for i, srv := range gw.GetServers() {
    			tls := srv.GetTls()
    			if tls == nil {
    				continue
    			}
    
    			cn := tls.GetCredentialName()
    			if cn == "" {
    				continue
    			}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 04 18:29:24 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  8. tests/integration/telemetry/policy/testdata/enable_envoy_local_ratelimit_sa.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: EnvoyFilter
    metadata:
      name: filter-local-ratelimit-svc-sa
      namespace: istio-system
    spec:
      workloadSelector:
        labels:
          app: srv
      configPatches:
        - applyTo: HTTP_FILTER
          match:
            context: SIDECAR_INBOUND
          patch:
            operation: INSERT_BEFORE
            value:
              name: envoy.filters.http.local_ratelimit
              typed_config:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 24 23:09:50 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  9. src/cmd/go/internal/bug/bug.go

    	case "openbsd", "netbsd", "freebsd", "dragonfly":
    		printCmdOut(w, "uname -v: ", "uname", "-v")
    	case "illumos", "solaris":
    		// Be sure to use the OS-supplied uname, in "/usr/bin":
    		printCmdOut(w, "uname -srv: ", "/usr/bin/uname", "-srv")
    		out, err := os.ReadFile("/etc/release")
    		if err == nil {
    			fmt.Fprintf(w, "/etc/release: %s\n", out)
    		} else {
    			if cfg.BuildV {
    				fmt.Printf("failed to read /etc/release: %v\n", err)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  10. cluster/addons/dns/kube-dns/kube-dns.yaml.sed

              failureThreshold: 5
            args:
            - --v=2
            - --logtostderr
            - --probe=kubedns,127.0.0.1:10053,kubernetes.default.svc.$DNS_DOMAIN,5,SRV
            - --probe=dnsmasq,127.0.0.1:53,kubernetes.default.svc.$DNS_DOMAIN,5,SRV
            ports:
            - containerPort: 10054
              name: metrics
              protocol: TCP
            resources:
              requests:
                memory: 20Mi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 03:19:02 UTC 2024
    - 7.1K bytes
    - Viewed (0)
Back to top