Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. pkg/controller/resourceclaim/controller_test.go

    		},
    		{
    			name:            "stay-reserved-seen",
    			pods:            []*v1.Pod{testPodWithResource},
    			key:             claimKey(testClaimReserved),
    			claims:          []*resourcev1alpha2.ResourceClaim{testClaimReserved},
    			expectedClaims:  []resourcev1alpha2.ResourceClaim{*testClaimReserved},
    			expectedMetrics: expectedMetrics{0, 0},
    		},
    		{
    			name:            "stay-reserved-not-seen",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 08:56:16 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tf_tfl_passes.cc

      pass_manager.addNestedPass<mlir::func::FuncOp>(
          mlir::odml::CreateUniformQuantizedStableHloToTflPass());
    
      // Legalize jax random to tflite custom op.
      // The CreateLegalizeJaxRandom Pass has to stay at because we need to replace
      // the random function body before being inlined.
      pass_manager.addNestedPass<mlir::func::FuncOp>(
          mlir::TFL::CreateLegalizeJaxRandomPass());
    
      // Canonicalize, CSE etc.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 18:45:51 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/value.go

    // if its use count drops to 0.
    func (v *Value) removeable() bool {
    	if v.Type.IsVoid() {
    		// Void ops (inline marks), must stay.
    		return false
    	}
    	if opcodeTable[v.Op].nilCheck {
    		// Nil pointer checks must stay.
    		return false
    	}
    	if v.Type.IsMemory() {
    		// We don't need to preserve all memory ops, but we do need
    		// to keep calls at least (because they might have
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:40:22 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  4. docs/features/https.md

    y.blogspot.ca/2014/10/this-poodle-bites-exploiting-ssl-30.html) attack. And in OkHttp 2.3 we dropped support for [RC4](https://en.wikipedia.org/wiki/RC4#Security). As with your desktop web browser, staying up-to-date with OkHttp is the best way to stay secure.
    
    You can build your own connection spec with a custom set of TLS versions and cipher suites. For example, this configuration is limited to three highly-regarded cipher suites. Its drawback is that it requires Android 5.0+ and a similarly...
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Dec 24 00:16:30 UTC 2022
    - 10.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/mutating/plugin_test.go

    		ns := "webhook-test"
    		client, informer := webhooktesting.NewFakeMutatingDataSource(ns, webhooktesting.ConvertToMutatingWebhooks(tt.Webhooks), stopCh)
    
    		// override the webhook source. The client cache will stay the same.
    		cacheMisses := new(int32)
    		wh.SetAuthenticationInfoResolverWrapper(webhooktesting.Wrapper(webhooktesting.NewAuthenticationInfoResolver(cacheMisses)))
    		wh.SetExternalKubeClientSet(client)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:52 UTC 2024
    - 11K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. okhttp/src/main/kotlin/okhttp3/ConnectionSpec.kt

     * your OkHttp library can break connectivity to certain web servers! But it’s a necessary annoyance
     * because the TLS ecosystem is dynamic and staying up to date is necessary to stay secure. See
     * [OkHttp's TLS Configuration History][tls_history] to track these changes.
     *
     * [tls_history]: https://square.github.io/okhttp/tls_configuration_history/
     */
    class ConnectionSpec internal constructor(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/validating/plugin_test.go

    		ns := "webhook-test"
    		client, informer := webhooktesting.NewFakeValidatingDataSource(ns, tt.Webhooks, stopCh)
    
    		// override the webhook source. The client cache will stay the same.
    		cacheMisses := new(int32)
    		wh.SetAuthenticationInfoResolverWrapper(webhooktesting.Wrapper(webhooktesting.NewAuthenticationInfoResolver(cacheMisses)))
    		wh.SetExternalKubeClientSet(client)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:52 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  10. 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)
Back to top