Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,782 for better (0.82 sec)

  1. pkg/util/concurrent/debouncer.go

    				combinedEvents = sets.New[T]()
    				debouncedEvents = 0
    			} else {
    				// For no combined events to process, we can also do nothing here and wait for the config change to trigger
    				// the next debounce, but I think it's better to set it's to the debounce max interval.
    				timeChan = time.After(debounceMaxInterval)
    			}
    		} else {
    			timeChan = time.After(debounceMinInterval - quietTime)
    		}
    	}
    
    	for {
    		select {
    		case <-freeCh:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 01 13:44:06 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. docs/en/docs/advanced/index.md

    Or it might be the case that you just prefer to take other courses because they adapt better to your learning style.
    
    Some course providers ✨ [**sponsor FastAPI**](../help-fastapi.md#sponsor-the-author){.internal-link target=_blank} ✨, this ensures the continued and healthy **development** of FastAPI and its **ecosystem**.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Mar 31 23:52:53 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. releasenotes/notes/injector-selectors.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    issue:
      - 30013
    
    releaseNotes:
    - |
      **Improved** the sidecar injector to better utilize pod labels to determine if injection is required.
    upgradeNotes:
    - title: Sidecar Injector Changes
      content: |
        The logic to determine if a pod requires sideacr injection or not has been updated to make use of
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 01 15:34:22 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  4. src/internal/types/testdata/check/typeinst0.go

    type _ x /* ERROR "not a type" */ [int]
    
    type _ int /* ERROR "not a generic type" */ [] // ERROR "expected type argument list"
    type _ myInt /* ERROR "not a generic type" */ [] // ERROR "expected type argument list"
    
    // TODO(gri) better error messages
    type _ T1[] // ERROR "expected type argument list"
    type _ T1[x /* ERROR "not a type" */ ]
    type _ T1 /* ERROR "too many type arguments for type T1: have 2, want 1" */ [int, float32]
    
    var _ T2[int] = T2[int]{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 28 02:54:10 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. src/log/slog/internal/benchmarks/benchmarks.go

    // They have the following desirable properties:
    //
    //   - They test a complete log event, from the user's call to its return.
    //
    //   - The benchmarked code is run concurrently in multiple goroutines, to
    //     better simulate a real server (the most common environment for structured
    //     logs).
    //
    //   - Some handlers are optimistic versions of real handlers, doing real-world
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 25 12:14:46 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/dependency_downgrade_and_exclude.adoc

    Gradle however, offers a variety of features that might be better suited to solve a certain use case.
    You may consider to look into the following features:
    
    - <<#sec:enforcing_dependency_version,Update>> or <<#sec:enforcing_dependency_version,downgrade>> dependency versions:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  7. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/logging/StackTraceFilter.java

            // It might happen when test method was inherited from a base class.
            // In that case, "derived" test class never appears in the stacktrace,
            // and it is better to show the stacktrace as is rather than truncate it completely.
            if (filtered.isEmpty()) {
                return stackTrace;
            }
            return Lists.reverse(filtered);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/numberlines.go

    // nextGoodStatementIndex returns an index at i or later that is believed
    // to be a good place to start the statement for b.  This decision is
    // based on v's Op, the possibility of a better later operation, and
    // whether the values following i are the same line as v.
    // If a better statement index isn't found, then i is returned.
    func nextGoodStatementIndex(v *Value, i int, b *Block) int {
    	// If the value is the last one in the block, too bad, it will have to do
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 21:26:13 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  9. testing/integ-test/src/integTest/groovy/org/gradle/integtests/environment/BuildEnvironmentIntegrationTest.groovy

            then:
            out.contains("gradle rocks!")
    
            when:
            out = executer.withEnvironmentVars(foo: "and will be even better").run().output
    
            then:
            out.contains("and will be even better")
        }
    
        @Requires(UnitTestPreconditions.WorkingDir)
        def "build is executed with working directory set to where the build was launched from"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  10. pkg/kube/krt/README.md

    However, writing a perfectly optimized controller is hard, and often not done.
    As a result, for many scenarios it is expected that `krt` will perform on-par or better.
    
    This is similar to a comparison between a high level programming language compared to assembly;
    while its always possible to write better code in assembly, smart compilers can make optimizations humans are unlikely to,
    such as loop unrolling.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 18 17:21:50 UTC 2023
    - 11.8K bytes
    - Viewed (0)
Back to top