Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 108 for needMin (0.13 sec)

  1. docs/en/docs/tutorial/query-params-str-validations.md

    * `$`: ends there, doesn't have any more characters after `fixedquery`.
    
    If you feel lost with all these **"regular expression"** ideas, don't worry. They are a hard topic for many people. You can still do a lot of stuff without needing regular expressions yet.
    
    But whenever you need them and go and learn them, know that you can already use them directly in **FastAPI**.
    
    ### Pydantic v1 `regex` instead of `pattern`
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 31 02:38:05 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  2. guava-tests/benchmark/com/google/common/base/EnumsBenchmark.java

      String enumSize;
    
      @Param({"0.2", "0.8"})
      float hitRate;
    
      // We could avoid the raw type here by initializing this with a ternary (? SmallEnum.class : ...).
      // However, we end up needing a raw type in getIfPresent, as discussed there.
      @SuppressWarnings("rawtypes")
      private Class<? extends Enum> enumType;
    
      private String[] sampleData;
    
      @BeforeExperiment
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  3. src/runtime/panic.go

    	//
    	// Note: We could use startPC and startSP here, but callers will
    	// never have defer statements themselves. By starting at their
    	// caller instead, we avoid needing to unwind through an extra
    	// frame. It also somewhat simplifies the terminating condition for
    	// deferreturn.
    	p.lr, p.fp = pc, sp
    	p.nextFrame()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  4. src/net/textproto/reader.go

    // See the documentation for the [Reader.DotReader] method for details about dot-encoding.
    func (r *Reader) ReadDotLines() ([]string, error) {
    	// We could use ReadDotBytes and then Split it,
    	// but reading a line at a time avoids needing a
    	// large contiguous block of memory and is simpler.
    	var v []string
    	var err error
    	for {
    		var line string
    		line, err = r.ReadLine()
    		if err != nil {
    			if err == io.EOF {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  5. src/cmd/link/internal/riscv64/asm.go

    				// Use the symbol for the function instead of creating
    				// an overlapping symbol.
    				continue
    			}
    
    			// TODO(jsing): Consider generating ELF symbols without needing
    			// loader symbols, in order to reduce memory consumption. This
    			// would require changes to genelfsym so that it called
    			// putelfsym and putelfsyment as appropriate.
    			sb := ldr.MakeSymbolBuilder(fakeLabelName)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 01 08:06:08 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/mod/module/module.go

    // of a URL path either.
    //
    // One possibility would be to make the escaped form be the lowercase
    // hexadecimal encoding of the actual path bytes. This would avoid ever
    // needing different casings of a file path, but it would be fairly illegible
    // to most programmers when those paths appeared in the file system
    // (including in file paths in compiler errors and stack traces)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 20:17:07 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  7. src/time/format_test.go

    	// the exact detection of format chunk boundaries in the
    	// helper function nextStdChunk (here called as NextStdChunk).
    	// This test checks nextStdChunk's behavior directly,
    	// instead of needing to test it only indirectly through Parse/Format.
    
    	// markChunks returns format with each detected
    	// 'format chunk' parenthesized.
    	// For example showChunks("2006-01-02") == "(2006)-(01)-(02)".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:58:29 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  8. src/os/signal/signal_test.go

    	for _, sig := range sigs {
    		sig := sig
    		t.Run(fmt.Sprint(sig), func(t *testing.T) {
    			// When calling Notify with a specific signal,
    			// independent signals should not interfere with each other,
    			// and we end up needing to wait for signals to quiesce a lot.
    			// Test the three different signals concurrently.
    			t.Parallel()
    
    			// If the signal is not ignored, send the signal before registering a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 15:34:56 UTC 2023
    - 27.2K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/profile/legacy_profile.go

    	if len(sampleData) != 6 {
    		return nil, 0, nil, fmt.Errorf("unexpected number of sample values: got %d, want 6", len(sampleData))
    	}
    
    	// This is a local-scoped helper function to avoid needing to pass
    	// around rate, sampling and many return parameters.
    	addValues := func(countString, sizeString string, label string) error {
    		count, err := strconv.ParseInt(countString, 10, 64)
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 32.8K bytes
    - Viewed (0)
  10. pkg/config/analysis/msg/messages.gen.go

    	// PodMissingProxy defines a diag.MessageType for message "PodMissingProxy".
    	// Description: A pod is missing the Istio proxy.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 43.2K bytes
    - Viewed (0)
Back to top