Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,315 for semver (0.46 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/test/integration/fixtures/server.go

    	serveroptions "k8s.io/apiextensions-apiserver/pkg/cmd/server/options"
    	servertesting "k8s.io/apiextensions-apiserver/pkg/cmd/server/testing"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	genericapiserver "k8s.io/apiserver/pkg/server"
    	storagevalue "k8s.io/apiserver/pkg/storage/value"
    	"k8s.io/client-go/dynamic"
    	"k8s.io/client-go/rest"
    )
    
    // StartDefaultServer starts a test server.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  2. security/pkg/nodeagent/sds/server.go

    )
    
    const (
    	maxStreams    = 100000
    	maxRetryTimes = 5
    )
    
    // Server is the gPRC server that exposes SDS through UDS.
    type Server struct {
    	workloadSds *sdsservice
    
    	grpcWorkloadListener net.Listener
    
    	grpcWorkloadServer *grpc.Server
    	stopped            *atomic.Bool
    }
    
    // NewServer creates and starts the Grpc server for SDS.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 17:44:41 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. pkg/webhooks/validation/server/server.go

    	// DomainSuffix is the DNS domain suffix for Pilot CRD resources,
    	// e.g. cluster.local.
    	DomainSuffix string
    
    	// Port where the webhook is served. the number should be greater than 1024 for non-root
    	// user, because non-root user cannot bind port number less than 1024
    	// Mainly used for testing. Webhook server is started by Istiod.
    	Port uint
    
    	// Use an existing mux instead of creating our own.
    	Mux *http.ServeMux
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 04 06:13:56 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  6. 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)
  7. pkg/hbone/server.go

    	"istio.io/istio/pkg/h2c"
    )
    
    func NewServer() *http.Server {
    	// Need to set this to allow timeout on the read header
    	h1 := &http.Transport{
    		ExpectContinueTimeout: 3 * time.Second,
    	}
    	h2, _ := http2.ConfigureTransports(h1)
    	h2.ReadIdleTimeout = 10 * time.Minute // TODO: much larger to support long-lived connections
    	h2.AllowHTTP = true
    	h2Server := &http2.Server{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 10 02:05:07 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  8. 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)
  9. samples/jwt-server/jwt-server.yaml

    # Example configurations for deploying a jwt-server server separately in the mesh.
    
    apiVersion: v1
    kind: Service
    metadata:
      name: jwt-server
      labels:
        app: jwt-server
    spec:
      ports:
      - name: http
        port: 8000
        targetPort: 8000
      - name: https
        port: 8443
        targetPort: 8443
      selector:
        app: jwt-server
    ---
    apiVersion: v1
    kind: Secret
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  10. cluster/gce/manifests/konnectivity-server.yaml

    apiVersion: v1
    kind: Pod
    metadata:
      name: konnectivity-server
      namespace: kube-system
      component: konnectivity-server
    spec:
      securityContext:
        {{ run_as_user }}
        {{ run_as_group }}
        {{ supplemental_groups }}
        seccompProfile:
          type: RuntimeDefault
      priorityClassName: system-node-critical
      priority: 2000001000
      hostNetwork: true
      containers:
      - name: konnectivity-server-container
        {{ container_security_context }}:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 10:31:11 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top