Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 115 for SRV (0.03 sec)

  1. cmd/signals.go

    			}
    		}
    
    		if objAPI := newObjectLayerFn(); objAPI != nil {
    			shutdownLogIf(context.Background(), objAPI.Shutdown(context.Background()))
    		}
    
    		if srv := newConsoleServerFn(); srv != nil {
    			shutdownLogIf(context.Background(), srv.Shutdown())
    		}
    
    		if globalEventNotifier != nil {
    			globalEventNotifier.RemoveAllBucketTargets()
    		}
    
    		return true
    	}
    
    	for {
    		select {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 17:57:52 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/routes/debugsocket.go

    	}
    
    	l, err := net.Listen("unix", s.path)
    	if err != nil {
    		return fmt.Errorf("listen error (%v): %v", s.path, err)
    	}
    	defer l.Close()
    
    	srv := http.Server{Handler: s.mux}
    	go func() {
    		<-stopCh
    		srv.Close()
    	}()
    	return srv.Serve(l)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 08 00:33:16 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  3. cluster/gce/manifests/kube-scheduler.manifest

              "readOnly": false
            },
            {
              "name": "srvkube",
              "mountPath": "/etc/srv/kubernetes",
              "readOnly": true
            }
          ]
        }
    ],
    "volumes":[
      {
        "name": "srvkube",
        "hostPath": {"path": "/etc/srv/kubernetes"}
      },
      {
        "name": "logfile",
        "hostPath": {"path": "/var/log/kube-scheduler.log", "type": "FileOrCreate"}
      }
    ]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 14 20:50:53 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  4. cluster/gce/gci/configure-kubeapiserver.sh

        csc_config_volume="{\"name\": \"cscconfigmount\",\"hostPath\": {\"path\": \"/etc/srv/kubernetes/egress_selector_configuration.yaml\", \"type\": \"FileOrCreate\"}},"
    
        # UDS socket for communication between apiserver and konnectivity-server
        local default_konnectivity_socket_path="/etc/srv/kubernetes/konnectivity-server"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 11:08:30 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  5. tests/integration/telemetry/policy/envoy_ratelimit_test.go

    		return
    	}
    
    	_, err = deployment.New(ctx).
    		With(&clt, echo.Config{
    			Service:        "clt",
    			Namespace:      echoNsInst,
    			ServiceAccount: true,
    		}).
    		With(&srv, echo.Config{
    			Service:   "srv",
    			Namespace: echoNsInst,
    			Ports: []echo.Port{
    				{
    					Name:     "http",
    					Protocol: protocol.HTTP,
    					// We use a port > 1024 to not require root
    					WorkloadPort: 8888,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  6. cluster/gce/manifests/glbc.manifest

        volumeMounts:
        - mountPath: /etc/gce.conf
          name: cloudconfig
          readOnly: true
        - mountPath: /var/log/glbc.log
          name: logfile
          readOnly: false
        - mountPath: /etc/srv/kubernetes/l7-lb-controller
          name: srvkube
          readOnly: true
        resources:
          # Request is set to accommodate this pod alongside the other
          # master components on a single core master.
          requests:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 14 10:40:01 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  7. cmd/crossdomain-xml-handler_test.go

    func TestCrossXMLHandler(t *testing.T) {
    	// Server initialization.
    	router := mux.NewRouter().SkipClean(true).UseEncodedPath()
    	handler := setCrossDomainPolicyMiddleware(router)
    	srv := httptest.NewServer(handler)
    
    	resp, err := http.Get(srv.URL + crossDomainXMLEntity)
    	if err != nil {
    		t.Fatal(err)
    	}
    	if resp.StatusCode != http.StatusOK {
    		t.Fatal("Unexpected http status received", resp.Status)
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Jul 08 14:31:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. pkg/test/fakes/gce_metadata_server/main.go

    	r.HandleFunc(attrPath, handleAttrs(attrs)).Methods("GET")
    
    	srv := &http.Server{Addr: addr, Handler: r}
    
    	go func() {
    		if err := srv.ListenAndServe(); err != http.ErrServerClosed {
    			log.Fatalf("listen: %v\n", err)
    		}
    	}()
    	return srv
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 04 22:47:52 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  9. docs/sts/ldap.md

    #### DNS SRV Records
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  10. cluster/gce/manifests/kube-controller-manager.manifest

          "timeoutSeconds": 15
        },
        "volumeMounts": [
            {{cloud_config_mount}}
            {{additional_cloud_config_mount}}
            {{pv_recycler_mount}}
            { "name": "srvkube",
            "mountPath": "/etc/srv/kubernetes",
            "readOnly": true},
            {{flexvolume_hostpath_mount}}
            { "name": "logfile",
            "mountPath": "/var/log/kube-controller-manager.log",
            "readOnly": false},
            { "name": "etcssl",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 10 20:49:36 UTC 2021
    - 2.9K bytes
    - Viewed (0)
Back to top