Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 47 for beaten (0.19 sec)

  1. fastapi/param_functions.py

            Doc(
                """
                OpenAPI-specific examples.
    
                It will be added to the generated OpenAPI (e.g. visible at `/docs`).
    
                Swagger UI (that provides the `/docs` interface) has better support for the
                OpenAPI-specific examples than the JSON Schema `examples`, that's the main
                use case for this.
    
                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. src/runtime/mgcmark.go

    	gcDrainFractional
    )
    
    // gcDrainMarkWorkerIdle is a wrapper for gcDrain that exists to better account
    // mark time in profiles.
    func gcDrainMarkWorkerIdle(gcw *gcWork) {
    	gcDrain(gcw, gcDrainIdle|gcDrainUntilPreempt|gcDrainFlushBgCredit)
    }
    
    // gcDrainMarkWorkerDedicated is a wrapper for gcDrain that exists to better account
    // mark time in profiles.
    func gcDrainMarkWorkerDedicated(gcw *gcWork, untilPreempt bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/syntax/parser.go

    		if p.tok == _Semi {
    			semi.pos = p.pos()
    			semi.lit = p.lit
    			p.next()
    		} else {
    			// asking for a '{' rather than a ';' here leads to a better error message
    			p.want(_Lbrace)
    			if p.tok != _Lbrace {
    				p.advance(_Lbrace, _Rbrace) // for better synchronization (e.g., go.dev/issue/22581)
    			}
    		}
    		if keyword == _For {
    			if p.tok != _Semi {
    				if p.tok == _Lbrace {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

      }
    
      /**
       * Not supported. Use {@link #naturalOrder}, which offers better type-safety, instead. This method
       * exists only to hide {@link ImmutableMap#builder} from consumers of {@code ImmutableSortedMap}.
       *
       * @throws UnsupportedOperationException always
       * @deprecated Use {@link ImmutableSortedMap#naturalOrder}, which offers better type-safety.
       */
      @DoNotCall("Use naturalOrder")
      @Deprecated
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 53K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/loong64/asm.go

    				// unset base register for better printing, since
    				// a.Offset is still relative to pseudo-SP.
    				a.Reg = obj.REG_NONE
    			}
    			c.instoffset = int64(c.autosize) + a.Offset
    			if c.instoffset >= -BIG && c.instoffset < BIG {
    				return C_SAUTO
    			}
    			return C_LAUTO
    
    		case obj.NAME_PARAM:
    			if a.Reg == REGSP {
    				// unset base register for better printing, since
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    	}
    
    	// Once we get here, all changes which are known to require special responses
    	// have been checked for. Whatever the change was, we don't know exactly how
    	// to handle it and thus return Queue. This will cause the
    	// scheduler to treat the event as if no event hint callback had been provided.
    	// Developers who want to investigate this can enable a diff at log level 6.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  7. src/runtime/mprof.go

    	if raceenabled {
    		raceacquire(unsafe.Pointer(&labelSync))
    	}
    
    	if n != int(endOffset) {
    		// It's a big surprise that the number of goroutines changed while we
    		// were collecting the profile. But probably better to return a
    		// truncated profile than to crash the whole process.
    		//
    		// For instance, needm moves a goroutine out of the _Gdead state and so
    		// might be able to change the goroutine count without interacting with
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    Plugins fetched from a source other than the link:https://plugins.gradle.org/[Gradle Plugin Portal] may or may not be usable with the `plugins {}` block.
    It depends on how they have been published and, specifically, whether they have been published with the necessary <<plugins#sec:plugin_markers,plugin marker artifacts>>.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  9. src/runtime/traceback.go

    		// So for GC stack traversal, we can safely ignore SPWRITE for the innermost frame,
    		// but farther up the stack we'd better not find any.
    		// This is somewhat imprecise because we're just guessing that we're in the stack
    		// growth check. It would be better if SPWRITE were encoded in the spdelta
    		// table so we would know for sure that we were still in safe code.
    		//
    		// uSE uPE inn | action
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  10. src/runtime/malloc.go

    // they are allocated. There are various benefits to delaying zeroing
    // this way:
    //
    //	1. Stack frame allocation can avoid zeroing altogether.
    //
    //	2. It exhibits better temporal locality, since the program is
    //	   probably about to write to the memory.
    //
    //	3. We don't zero pages that never get reused.
    
    // Virtual memory layout
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
Back to top