Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 2,544 for silver (0.35 sec)

  1. src/net/http/httptest/server.go

    // The caller should call Close when finished, to shut it down.
    func NewUnstartedServer(handler http.Handler) *Server {
    	return &Server{
    		Listener: newLocalListener(),
    		Config:   &http.Server{Handler: handler},
    	}
    }
    
    // Start starts a server from NewUnstartedServer.
    func (s *Server) Start() {
    	if s.URL != "" {
    		panic("Server already started")
    	}
    	if s.client == nil {
    		s.client = &http.Client{Transport: &http.Transport{}}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 17:26:10 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  2. cmd/kubelet/app/server.go

    	eventBroadcaster.StartStructuredLogging(3)
    	if kubeDeps.EventClient != nil {
    		klog.V(4).InfoS("Sending events to api server")
    		eventBroadcaster.StartRecordingToSink(&v1core.EventSinkImpl{Interface: kubeDeps.EventClient.Events("")})
    	} else {
    		klog.InfoS("No api server defined - no events will be sent to API server")
    	}
    }
    
    func getReservedCPUs(machineInfo *cadvisorapi.MachineInfo, cpus string) (cpuset.CPUSet, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  3. operator/cmd/operator/server.go

    }
    
    func serverCmd() *cobra.Command {
    	loggingOptions := log.DefaultOptions()
    	introspectionOptions := ctrlz.DefaultOptions()
    	sArgs := &serverArgs{}
    	serverCmd := &cobra.Command{
    		Use:   "server",
    		Short: "Starts the Istio operator server",
    		Args:  cobra.ExactArgs(0),
    		RunE: func(cmd *cobra.Command, args []string) error {
    			if err := log.Configure(loggingOptions); err != nil {
    				log.Errorf("Unable to configure logging: %v", err)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 30 21:09:08 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/img/copy-with-deep-filter-example.png

    copy-with-deep-filter-example.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 16:19:30 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  5. cmd/metacache-server-pool.go

    	}
    
    	// We have 2 cases:
    	// 1) Cold listing, just list.
    	// 2) Returning, but with no id. Start async listing.
    	// 3) Returning, with ID, stream from list.
    	//
    	// If we don't have a list id we must ask the server if it has a cache or create a new.
    	if o.ID != "" && !o.Transient {
    		// Create or ping with handout...
    		rpc := globalNotificationSys.restClientFromHash(pathJoin(o.Bucket, o.Prefix))
    		var c *metacache
    		if rpc == nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:23 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. pkg/xds/server.go

    		// By XDS spec, these are wildcard
    		return true
    	default:
    		// All of our internal types use wildcard semantics
    		return true
    	}
    }
    
    // DiscoveryStream is a server interface for XDS.
    type DiscoveryStream = discovery.AggregatedDiscoveryService_StreamAggregatedResourcesServer
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top