Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 208 for haninge (0.6 sec)

  1. pkg/kubelet/images/image_gc_manager_test.go

    	t.Log(fakeClock.Now())
    	images, err := manager.imagesInEvictionOrder(ctx, fakeClock.Now())
    	require.NoError(t, err)
    	require.Equal(t, len(images), 1)
    	// Simulate pod having just used this image, but having been GC'd
    	images[0].lastUsed = fakeClock.Now()
    
    	// First GC round should not GC remaining image, as it was used too recently.
    	assert := assert.New(t)
    	oldStartTime := fakeClock.Now()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 15:38:20 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  2. docs/en/docs/tutorial/query-params-str-validations.md

        ```Python hl_lines="10"
        {!> ../../../docs_src/query_params_str_validations/tutorial002_an.py!}
        ```
    
    Notice that the default value is still `None`, so the parameter is still optional.
    
    But now, having `Query(max_length=50)` inside of `Annotated`, we are telling FastAPI that we want it to have **additional validation** for this value, we want it to have maximum 50 characters. 😎
    
    !!! tip
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 31 02:38:05 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/dom/operations/overlay/DocumentOverlay.kt

         *
         * Keys from the configuring blocks of different objects should never get matched against each other.
         */
        sealed interface MergeKey {
            /**
             * Nodes having this key are unique and never get merged with any other nodes.
             * Some examples are: elements produced by adding functions; error nodes.
             */
            data object CannotMerge : MergeKey
    
            /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/policy/v1/types.go

    	// yet been observed by the PodDisruptionBudget controller.
    	// A pod will be in this map from the time when the API server processed the
    	// eviction request to the time when the pod is seen by PDB controller
    	// as having been marked for deletion (or after a timeout). The key in the map is the name of the pod
    	// and the value is the time when the API server processed the eviction request. If
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  5. src/runtime/mksizeclasses.go

    		}
    		npages := allocsize / pageSize
    
    		// If the previous sizeclass chose the same
    		// allocation size and fit the same number of
    		// objects into the page, we might as well
    		// use just this size instead of having two
    		// different sizes.
    		if len(classes) > 1 && npages == classes[len(classes)-1].npages && allocsize/size == allocsize/classes[len(classes)-1].size {
    			classes[len(classes)-1].size = size
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:31:27 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  6. pkg/controller/job/backoff_utils_test.go

    			},
    			wantBackoffRecord: backoffRecord{
    				key:                      "key",
    				lastFailureTime:          &defaultTestTime.Time,
    				failuresAfterLastSuccess: 2,
    			},
    		},
    		"Backoff store having failure count 2 and one new failure": {
    			storeInitializer: func(bis *backoffStore) {
    				bis.updateBackoffRecord(backoffRecord{
    					key:                      "key",
    					failuresAfterLastSuccess: 2,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 07:46:41 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  7. docs/en/docs/deployment/docker.md

    Having another process manager inside the container (as would be with Gunicorn or Uvicorn managing Uvicorn workers) would only add **unnecessary complexity** that you are most probably already taking care of with your cluster system.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 34K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/typecheck/_builtin/runtime.go

    // license that can be found in the LICENSE file.
    
    // NOTE: If you change this file you must run "go generate"
    // in cmd/compile/internal/typecheck
    // to update builtin.go. This is not done automatically
    // to avoid depending on having a working compiler binary.
    
    //go:build ignore
    
    package runtime
    
    // emitted by compiler, not referred to by go programs
    
    import "unsafe"
    
    func newobject(typ *byte) *any
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 21:08:03 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/MissingTaskDependenciesIntegrationTest.groovy

            where:
            dependency          | _
            "c.dependsOn(b)"    | _
            "c.mustRunAfter(b)" | _
            "b.finalizedBy(c)"  | _
        }
    
        def "only having shouldRunAfter fails"() {
            buildFile """
                task producer {
                    def outputFile = file("output.txt")
                    outputs.file(outputFile)
                    doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 08:14:44 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  10. src/runtime/panic.go

    // struct on the main g._defer list with d.head set to this head pointer.
    //
    // The g._defer list is now a linked list of deferred calls,
    // but an atomic list hanging off:
    //
    //		g._defer => d4 -> d3 -> drangefunc -> d2 -> d1 -> nil
    //	                             | .head
    //	                             |
    //	                             +--> dY -> dX -> nil
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 43.8K bytes
    - Viewed (0)
Back to top