Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 276 for happens (0.22 sec)

  1. fastapi/param_functions.py

            bool,
            Doc(
                """
                When `embed` is `True`, the parameter will be expected in a JSON body as a
                key instead of being the JSON body itself.
    
                This happens automatically when more than one `Body` parameter is declared.
    
                Read more about it in the
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 62.5K bytes
    - Viewed (0)
  2. guava/src/com/google/common/reflect/TypeToken.java

          }
    
          @Override
          @CheckForNull
          K getSuperclass(K type) {
            return delegate.getSuperclass(type);
          }
        }
      }
    
      // This happens to be the hash of the class as of now. So setting it makes a backward compatible
      // change. Going forward, if any incompatible change is added, we can change the UID back to 1.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/regalloc.go

    			if !mustBeFirst(v.Op) {
    				break
    			}
    			nfirst++
    		}
    		oldSched = append(oldSched[:0], b.Values[nfirst:]...)
    		b.Values = b.Values[:nfirst]
    		b.Values = append(b.Values, start[b.ID]...)
    		for _, v := range oldSched {
    			b.Values = append(b.Values, v)
    			b.Values = append(b.Values, after[v.ID]...)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  4. src/cmd/dist/test.go

    		run = append(run, "-short")
    	}
    	var tags []string
    	if t.iOS() {
    		tags = append(tags, "lldb")
    	}
    	if noOpt {
    		tags = append(tags, "noopt")
    	}
    	tags = append(tags, opts.tags...)
    	if len(tags) > 0 {
    		build = append(build, "-tags="+strings.Join(tags, ","))
    	}
    	if t.race || opts.race {
    		build = append(build, "-race")
    	}
    	if t.msan {
    		build = append(build, "-msan")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  5. src/cmd/cgo/gcc.go

    			"-fno-builtin",
    		)
    	}
    
    	c = append(c, p.GccOptions...)
    	c = append(c, p.gccMachine()...)
    	if goos == "aix" {
    		c = append(c, "-maix64")
    		c = append(c, "-mcmodel=large")
    	}
    	// disable LTO so we get an object whose symbols we can read
    	c = append(c, "-fno-lto")
    	c = append(c, "-") //read input from standard input
    	return c
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/prove.go

    // checkpoint saves the current state of known relations.
    // Called when descending on a branch.
    func (ft *factsTable) checkpoint() {
    	if ft.unsat {
    		ft.unsatDepth++
    	}
    	ft.stack = append(ft.stack, checkpointFact)
    	ft.limitStack = append(ft.limitStack, checkpointBound)
    	ft.orderS.Checkpoint()
    	ft.orderU.Checkpoint()
    }
    
    // restore restores known relation to the state just
    // before the previous checkpoint.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  7. pkg/controller/podautoscaler/horizontal.go

    	// in queue so HPAs are processed every resyncPeriod.
    	// Request is added here just in case last resync didn't insert request into the queue. This
    	// happens quite often because there is race condition between adding request after resyncPeriod
    	// and removing them from queue. Request can be added by resync before previous request is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/admission_test.go

    	// Validate again to make sure NotFoundAction is respected
    	var deleted []runtime.Object
    	for _, p := range expectedParamsForNamespacedRequest {
    		deleted = append(deleted, p)
    	}
    
    	for _, p := range expectedParamsForClusterScopedRequest {
    		deleted = append(deleted, p)
    	}
    
    	require.NoError(t, testContext.DeleteAndWait(deleted...))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 01:39:01 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  9. pkg/controller/cronjob/cronjob_controllerv2_test.go

    					}
    					realCJ.Status.Active = []v1.ObjectReference{*ref}
    					if !tc.jobStillNotFoundInLister {
    						js = append(js, job)
    					}
    				} else {
    					job.Status.CompletionTime = &metav1.Time{Time: job.ObjectMeta.CreationTimestamp.Add(time.Second * 10)}
    					job.Status.Conditions = append(job.Status.Conditions, batchv1.JobCondition{
    						Type:   batchv1.JobComplete,
    						Status: v1.ConditionTrue,
    					})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 70.8K bytes
    - Viewed (0)
  10. pkg/controller/podautoscaler/replica_calculator_test.go

    			expectedValue:       numContainersPerPod * totalUsedCPUOfAllPods / 10,
    		},
    	}
    
    	tc.runTest(t)
    
    	// Reuse the data structure above, now testing "unscaling".
    	// Now, we test that no scaling happens if we are in a very close margin to the tolerance
    	target = math.Abs(1/(requestedToUsed*(1-defaultTestingTolerance))) + .004
    	finalCPUPercentTarget = int32(target * 100)
    	tc.resource.targetUtilization = finalCPUPercentTarget
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Aug 19 03:31:34 UTC 2023
    - 68.4K bytes
    - Viewed (0)
Back to top