Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 360 for stay (0.04 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_discovery_controller.go

    	klog.V(4).Infof("Updating customresourcedefinition %s", castOldObj.Name)
    	// Enqueue both old and new object to make sure we remove and add appropriate Versions.
    	// The working queue will resolve any duplicates and only changes will stay in the queue.
    	c.enqueue(castNewObj)
    	c.enqueue(castOldObj)
    }
    
    func (c *DiscoveryController) deleteCustomResourceDefinition(obj interface{}) {
    	castObj, ok := obj.(*apiextensionsv1.CustomResourceDefinition)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 21 11:40:03 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  2. docs/en/docs/deployment/concepts.md

    And if the server is restarted (for example after updates, or migrations from the cloud provider) you probably **won't notice it**. And because of that, you won't even know that you have to restart the process manually. So, your API will just stay dead. 😱
    
    ### Run Automatically on Startup
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 18K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/ImmutableList.java

      }
    
      /**
       * Returns an immutable list containing the given elements, sorted according to their natural
       * order. The sorting algorithm used is stable, so elements that compare as equal will stay in the
       * order in which they appear in the input.
       *
       * <p>If your data has no duplicates, or you wish to deduplicate elements, use {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/quantization/lite/quantize_weights_test.cc

              /*used_tensors=*/used_tensors, /*quantized=*/true);
          EXPECT_NE(float_tensor, nullptr);
          // If the tensor is a weight, it should have type INT8, otherwise it
          // should stay with type FLOAT32.
          // If the tensor is a bias, it should have type FLOAT32.
          //
          // Check with float_tensor name since quantized tensor
          // may be renamed.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  5. pkg/controller/daemon/update.go

    	if err != nil {
    		return fmt.Errorf("couldn't get unavailable numbers: %v", err)
    	}
    
    	now := dsc.failedPodsBackoff.Clock.Now()
    
    	// When not surging, we delete just enough pods to stay under the maxUnavailable limit, if any
    	// are necessary, and let the core loop create new instances on those nodes.
    	//
    	// Assumptions:
    	// * Expect manage loop to allow no more than one pod per node
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 16:53:53 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/ImmutableList.java

        }
      }
    
      /**
       * Returns an immutable list containing the given elements, sorted according to their natural
       * order. The sorting algorithm used is stable, so elements that compare as equal will stay in the
       * order in which they appear in the input.
       *
       * <p>If your data has no duplicates, or you wish to deduplicate elements, use {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 08 03:01:02 UTC 2024
    - 29.9K bytes
    - Viewed (0)
  7. src/runtime/cgocall.go

    	// would be live at entersyscall and dead at asmcgocall, so if
    	// time moved backwards, GC would see these arguments as dead
    	// and then live. Prevent these undead arguments from crashing
    	// GC by forcing them to stay live across this time warp.
    	KeepAlive(fn)
    	KeepAlive(arg)
    	KeepAlive(mp)
    
    	return errno
    }
    
    // Set or reset the system stack bounds for a callback on sp.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  8. docs/en/docs/help-fastapi.md

    * News about FastAPI and friends 🚀
    * Guides 📝
    * Features ✨
    * Breaking changes 🚨
    * Tips and tricks ✅
    
    ## Follow FastAPI on Twitter
    
    <a href="https://twitter.com/fastapi" class="external-link" target="_blank">Follow @fastapi on **Twitter**</a> to get the latest news about **FastAPI**. 🐦
    
    ## Star **FastAPI** in GitHub
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CachedCustomTaskExecutionIntegrationTest.groovy

            when:
            withBuildCache().run "help"
            then:
            result.groupedOutput.task(":buildSrc:compileGroovy").outcome == "FROM-CACHE"
        }
    
        def "tasks stay cached after buildSrc with custom Groovy task is rebuilt"() {
            configureCacheForBuildSrc()
            file("buildSrc/src/main/groovy/CustomTask.groovy") << defineCachedTask()
            file("input.txt") << "input"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  10. pkg/controlplane/controller/clusterauthenticationtrust/cluster_authentication_trust_controller.go

    		return
    	}
    
    	// only run one worker
    	go wait.Until(c.runWorker, time.Second, ctx.Done())
    
    	// checks are cheap.  run once a minute just to be sure we stay in sync in case fsnotify fails again
    	// start timer that rechecks every minute, just in case.  this also serves to prime the controller quickly.
    	_ = wait.PollImmediateUntil(1*time.Minute, func() (bool, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 18.2K bytes
    - Viewed (0)
Back to top