- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 946 for Berner (0.26 sec)
-
src/main/resources/fess_indices/fess/de/stopwords.txt
indem ins ist jede jedem jeden jeder jedes jene jenem jenen jener jenes jetzt kann kein keine keinem keinen keiner keines können könnte machen man manche manchem manchen mancher manches mein meine meinem meinen meiner meines mit muss musste nach nicht nichts noch nun nur ob
Plain Text - Registered: 2023-10-02 08:04 - Last Modified: 2018-08-22 01:43 - 1.5K bytes - Viewed (0) -
internal/http/server.go
func (srv *Server) UseReadHeaderTimeout(d time.Duration) *Server { srv.ReadHeaderTimeout = d return srv } // UseHandler configure final handler for this HTTP *Server func (srv *Server) UseHandler(h http.Handler) *Server { srv.Handler = h return srv } // UseTLSConfig pass configured TLSConfig for this HTTP *Server func (srv *Server) UseTLSConfig(cfg *tls.Config) *Server { srv.TLSConfig = cfg return srv }
Go - Registered: 2023-10-01 19:28 - Last Modified: 2023-07-12 14:18 - 7.6K bytes - Viewed (0) -
pilot/pkg/bootstrap/server.go
serviceEntryController *serviceentry.Controller httpServer *http.Server // debug, monitoring and readiness Server. httpAddr string httpsServer *http.Server // webhooks HTTPS Server. grpcServer *grpc.Server grpcAddress string secureGrpcServer *grpc.Server secureGrpcAddress string // monitoringMux listens on monitoringAddr(:15014).
Go - Registered: 2023-07-19 22:53 - Last Modified: 2023-07-11 20:30 - 43.3K bytes - Viewed (0) -
pilot/cmd/pilot-agent/status/testserver/server.go
} // Start a local HTTP server server := httptest.NewUnstartedServer(mux) l, err := net.Listen("tcp", ":0") if err != nil { panic("Could not create listener for test: " + err.Error()) } server.Listener = l server.Start() return server } func createDefaultFuncMap(statsToReturn string) map[string]func(rw http.ResponseWriter, _ *http.Request) { return map[string]func(rw http.ResponseWriter, _ *http.Request){
Go - Registered: 2023-07-19 22:53 - Last Modified: 2022-01-26 17:53 - 1.7K bytes - Viewed (0) -
cni/pkg/ambient/server.go
} return client, nil } func (s *Server) Start() { log.Debug("CNI ambient server starting") s.kubeClient.RunAndWait(s.ctx.Done()) go func() { s.queue.Run(s.ctx.Done()) }() } func (s *Server) Stop() { log.Info("CNI ambient server terminating, cleaning up node net rules") s.cleanupNode() } func (s *Server) UpdateConfig() { log.Debug("Generating new ambient config file")
Go - Registered: 2023-09-27 22:53 - Last Modified: 2023-07-11 19:40 - 8.5K bytes - Viewed (0) -
src/mdo/merger.vm
specific language governing permissions and limitations under the License. *# #parse ( "common.vm" ) # #set ( $package = "${packageToolV4}" ) #set ( $className = "${model.name}Merger" ) # #set ( $root = $model.getClass( $model.getRoot($version), $version ) ) # #MODELLO-VELOCITY#SAVE-OUTPUT-TO ${package.replace('.','/')}/${className}.java // =================== DO NOT EDIT THIS FILE ====================
Plain Text - Registered: 2023-09-17 03:35 - Last Modified: 2023-09-05 16:06 - 12.2K bytes - Viewed (0) -
cmd/server-main.go
bootstrapTrace("setMaxResources", func() { _ = setMaxResources() }) // Verify kernel release and version. if oldLinux() { logger.Info(color.RedBold("WARNING: Detected Linux kernel version older than 4.0.0 release, there are some known potential performance problems with this kernel version. MinIO recommends a minimum of 4.x.x linux kernel version for best performance")) } maxProcs := runtime.GOMAXPROCS(0)
Go - Registered: 2023-10-01 19:28 - Last Modified: 2023-09-30 20:40 - 29.9K bytes - Viewed (0) -
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)
Go - Registered: 2023-09-27 22:53 - Last Modified: 2023-08-30 21:09 - 7.6K bytes - Viewed (1) -
cni/pkg/install/server.go
// limitations under the License. package install import ( "net/http" "sync/atomic" "istio.io/istio/cni/pkg/constants" ) // StartServer initializes and starts a web server that exposes liveness and readiness endpoints at port 8000. func StartServer() *atomic.Value { router := http.NewServeMux() isReady := initRouter(router) go func() {
Go - Registered: 2023-09-27 22:53 - Last Modified: 2023-05-17 02:22 - 1.8K bytes - Viewed (0) -
cmd/server-rlimit.go
package cmd import ( "runtime" "runtime/debug" "github.com/minio/madmin-go/v3/kernel" "github.com/minio/minio/internal/logger" "github.com/minio/pkg/v2/sys" ) func oldLinux() bool { currentKernel, err := kernel.CurrentVersion() if err != nil { // Could not probe the kernel version return false } if currentKernel == 0 { // We could not get any valid value return false
Go - Registered: 2023-10-01 19:28 - Last Modified: 2023-09-04 19:57 - 2.3K bytes - Viewed (0)