Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 249 for serverOk (0.14 sec)

  1. src/cmd/vendor/golang.org/x/mod/sumdb/server.go

    }
    
    // A Server is the checksum database HTTP server,
    // which implements http.Handler and should be invoked
    // to serve the paths listed in [ServerPaths].
    type Server struct {
    	ops ServerOps
    }
    
    // NewServer returns a new Server using the given operations.
    func NewServer(ops ServerOps) *Server {
    	return &Server{ops: ops}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  2. cni/pkg/nodeagent/server.go

    	err = cniServer.Start()
    	if err != nil {
    		return nil, fmt.Errorf("error starting cni server: %w", err)
    	}
    	s.cniServerStopFunc = cniServer.Stop
    
    	return s, nil
    }
    
    func (s *Server) Ready() {
    	s.isReady.Store(true)
    }
    
    func (s *Server) NotReady() {
    	s.isReady.Store(false)
    }
    
    // buildKubeClient creates the kube client
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  3. samples/bookinfo/src/reviews/reviews-wlpcfg/servers/LibertyProjectServer/server.xml

      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      See the License for the specific language governing permissions and
      limitations under the License.-->
    <server description="Sample Liberty server">
    
        <featureManager>
            <feature>jaxrs-2.0</feature>
            <feature>jsonp-1.0</feature>
        </featureManager>
    
        <httpEndpoint host="*" httpPort="9080" httpsPort="-1"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 21 17:00:23 UTC 2017
    - 1.1K bytes
    - Viewed (0)
  4. samples/jwt-server/testdata/server.key

    Aryan Gupta <******@****.***> 1641952525 +0530
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 12 01:55:25 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/devicemanager/plugin/v1beta1/server.go

    	"k8s.io/kubernetes/pkg/kubelet/pluginmanager/cache"
    )
    
    // Server interface provides methods for Device plugin registration server.
    type Server interface {
    	cache.PluginHandler
    	Start() error
    	Stop() error
    	SocketPath() string
    }
    
    type server struct {
    	socketName string
    	socketDir  string
    	mutex      sync.Mutex
    	wg         sync.WaitGroup
    	grpc       *grpc.Server
    	rhandler   RegistrationHandler
    	chandler   ClientHandler
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 27 02:10:25 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  6. internal/config/server.go

    	} `yaml:"sftp"`
    }
    
    // ServerConfigVersion struct is used to extract the version
    type ServerConfigVersion struct {
    	Version string `yaml:"version"`
    }
    
    // ServerConfigCommon struct for server config common options
    type ServerConfigCommon struct {
    	RootUser    string `yaml:"rootUser"`
    	RootPwd     string `yaml:"rootPassword"`
    	Addr        string `yaml:"address"`
    	ConsoleAddr string `yaml:"console-address"`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 03 15:54:03 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. tests/integration/security/policy_attachment_only/main_test.go

    	"istio.io/istio/pkg/test/framework/resource"
    )
    
    var (
    	// Namespaces
    	echo1NS  namespace.Instance
    	serverNS namespace.Instance
    
    	// Servers
    	apps             deployment.SingleNamespaceView
    	authzServer      authz.Server
    	localAuthzServer authz.Server
    	jwtServer        jwt.Server
    
    	i istio.Instance
    )
    
    func TestMain(m *testing.M) {
    	framework.
    		NewSuite(m).
    		Label(label.CustomSetup).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 01:47:52 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/webhook/metrics_test.go

    				service.statusCode = 200
    			}
    			service.allow = !scenario.authFakeServiceDeny
    
    			server, err := NewV1TestServer(service, scenario.serverCert, scenario.serverKey, scenario.serverCA)
    			if err != nil {
    				t.Errorf("%s: failed to create server: %v", scenario.name, err)
    				return
    			}
    			defer server.Close()
    
    			fakeAuthnMetrics := &fakeAuthenticatorMetrics{}
    			authnMetrics := AuthenticatorMetrics{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 29 07:49:14 UTC 2021
    - 3.7K bytes
    - Viewed (0)
  9. buildscripts/rewrite-old-new.sh

    	# remove mc source.
    	purge "${MC_BUILD_DIR}"
    
    	"${MINIO_OLD[@]}" --address ":$start_port" "${WORK_DIR}/xl{1...16}" >"${WORK_DIR}/server1.log" 2>&1 &
    	pid=$!
    	disown $pid
    
    	"${WORK_DIR}/mc" ready minio/
    
    	if ! ps -p ${pid} 1>&2 >/dev/null; then
    		echo "server1 log:"
    		cat "${WORK_DIR}/server1.log"
    		echo "FAILED"
    		purge "$WORK_DIR"
    		exit 1
    	fi
    
    	"${WORK_DIR}/mc" mb minio/healing-rewrite-bucket --quiet --with-lock
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/metrics_test.go

    			}
    			service.allow = !scenario.authFakeServiceDeny
    
    			server, err := NewV1TestServer(service, scenario.serverCert, scenario.serverKey, scenario.serverCA)
    			if err != nil {
    				t.Errorf("%s: failed to create server: %v", scenario.name, err)
    				return
    			}
    			defer server.Close()
    
    			fakeAuthzMetrics := &fakeAuthorizerMetrics{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:01:15 UTC 2024
    - 6.6K bytes
    - Viewed (0)
Back to top