Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 49 of 49 for reregistering (0.17 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/config.go

    func (c *Config) AddPostStartHookOrDie(name string, hook PostStartHookFunc) {
    	if err := c.AddPostStartHook(name, hook); err != nil {
    		klog.Fatalf("Error registering PostStartHook %q: %v", name, err)
    	}
    }
    
    func completeOpenAPI(config *openapicommon.Config, version *version.Info) {
    	if config == nil {
    		return
    	}
    	if config.SecurityDefinitions != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    === Deprecations
    
    ==== Deprecated registration of plugin conventions
    
    Using plugin conventions has been emitting warnings since Gradle 8.2.
    Now, registering plugin conventions will also trigger deprecation warnings.
    For more information, see the <<deprecated_access_to_conventions, section about plugin convention deprecation>>.
    
    [[string_invoke]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	func() {
    		c.Lock()
    		defer c.Unlock()
    
    		if generation, ok := c.ready.checkAndReadGeneration(); generation != readyGeneration || !ok {
    			// We went unready or are already on a different generation.
    			// Avoid registering and starting the watch as it will have to be
    			// terminated immediately anyway.
    			return
    		}
    
    		// Update watcher.forget function once we can compute it.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  4. cmd/test-utils_test.go

    	if err != nil {
    		// failed to create newbucket, return err.
    		return "", nil, err
    	}
    	// Register the API end points with Erasure object layer.
    	// Registering only the GetObject handler.
    	apiRouter := initTestAPIEndPoints(obj, endpoints)
    	f := http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
    		r.RequestURI = r.URL.RequestURI()
    		apiRouter.ServeHTTP(w, r)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  5. src/net/http/server.go

    // it redirects the request by adding the trailing slash.
    // This behavior can be overridden with a separate registration for the path without
    // the trailing slash or "..." wildcard. For example, registering "/images/" causes ServeMux
    // to redirect a request for "/images" to "/images/", unless "/images" has
    // been registered separately.
    //
    // # Request sanitizing
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.29.md

    - Fixed an issue with the `garbagecollection` controller registering duplicate event handlers if discovery requests failed. ([#117992](https://github.com/kubernetes/kubernetes/pull/117992), [@liggitt](https://github.com/liggitt))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.28.md

      So, if you want to just keep the existing behavior, you can register `ClusterEventWithHint` with no `QueueingHintFn` in it. 
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (1)
  8. CHANGELOG/CHANGELOG-1.30.md

    - Improved the efficiency of NodeAdded QueueingHint by registering UpdateNodeTaint event for plugins that have NodeAdded event but don't have UpdateNodeTaint event. This ensures better requeuing efficiency and prevents Pods from being stuck in the unschedulable pod pool.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  9. ChangeLog.md

    - [`KT-66912`](https://youtrack.jetbrains.com/issue/KT-66912) Parallel compilation slowdown due to synchronization
    - [`KT-63005`](https://youtrack.jetbrains.com/issue/KT-63005) Avoid registering KMP related compatibility/disambiguration rules for pure JVM/Android projects
    
    #### Fixes
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
Back to top