Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 282 for sweeping (0.21 sec)

  1. src/sort/sort.go

    func Stable(data Interface) {
    	stable(data, data.Len())
    }
    
    /*
    Complexity of Stable Sorting
    
    
    Complexity of block swapping rotation
    
    Each Swap puts one new element into its correct, final position.
    Elements which reach their final position are no longer moved.
    Thus block swapping rotation needs |u|+|v| calls to Swaps.
    This is best possible as each element might need a move.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 16:40:32 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  2. README.md

    The [Kubernetes Community](https://github.com/kubernetes/community/blob/master/governance.md) is the launching point for learning about how we organize ourselves.
    
    The [Kubernetes Steering community repo](https://github.com/kubernetes/steering) is used by the Kubernetes Steering Committee, which oversees governance of the Kubernetes project.
    
    ## Roadmap 
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:51 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DaemonStateCoordinator.java

                while (true) {
                    try {
                        switch (state) {
                            case Idle:
                            case Busy:
                                LOGGER.debug("daemon is running. Sleeping until state changes.");
                                condition.await();
                                break;
                            case Canceled:
                                LOGGER.debug("cancel requested.");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  4. docs/bucket/lifecycle/README.md

    ```
    
    ### 3.2 Automatic removal of noncurrent versions keeping only most recent ones after noncurrent days
    
    It is possible to configure automatic removal of older noncurrent versions keeping only the most recent `N` using `NewerNoncurrentVersions`.
    
    e.g, To remove noncurrent versions of all objects keeping the most recent 5 noncurrent versions under the prefix `user-uploads/` 30 days after they become noncurrent ,
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Aug 26 07:33:25 UTC 2023
    - 9K bytes
    - Viewed (0)
  5. test/abi/many_intstar_input.go

    package main
    
    import (
    	"fmt"
    )
    
    var sink int = 3
    
    //go:registerparams
    //go:noinline
    func F(a, b, c, d, e, f *int) {
    	G(f, e, d, c, b, a)
    	sink += *a // *a == 6 after swapping in G
    }
    
    //go:registerparams
    //go:noinline
    func G(a, b, c, d, e, f *int) {
    	var scratch [1000 * 100]int
    	scratch[*a] = *f                    // scratch[6] = 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 967 bytes
    - Viewed (0)
  6. releasenotes/notes/cni-pprof.yaml

    kind: feature
    area: traffic-management
    issue:
      - 49053
    
    releaseNotes:
      - |
        **Added** `pprof` endpoints to profile the CNI pod (on port 9867).
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 11 21:42:29 UTC 2024
    - 260 bytes
    - Viewed (0)
  7. platforms/core-execution/file-watching/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = "File system watchers for keeping the VFS up-to-date"
    
    dependencies {
        api(project(":snapshots"))
        api(project(":build-operations"))
        api(project(":files"))
        api(projects.stdlibJavaExtensions)
    
        api(libs.jsr305)
        api(libs.nativePlatform)
        api(libs.nativePlatformFileEvents)
        api(libs.slf4jApi)
        implementation(project(":functional"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  8. src/runtime/lock_sema.go

    //		If ns >= 0, try to acquire m's semaphore for at most ns nanoseconds.
    //		Return 0 if the semaphore was acquired, -1 if interrupted or timed out.
    //
    //	func semawakeup(mp *m)
    //		Wake up mp, which is or will soon be sleeping on its semaphore.
    const (
    	locked uintptr = 1
    
    	active_spin     = 4
    	active_spin_cnt = 30
    	passive_spin    = 1
    )
    
    func mutexContended(l *mutex) bool {
    	return atomic.Loaduintptr(&l.key) > locked
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/internal/concurrent/TaskRunnerRealBackendTest.kt

    import org.junit.jupiter.api.Test
    
    /**
     * Integration test to confirm that [TaskRunner] works with a real backend. Business logic is all
     * exercised by [TaskRunnerTest].
     *
     * This test is doing real sleeping with tolerances of 250 ms. Hopefully that's enough for even the
     * busiest of CI servers.
     */
    @Tag("Slowish")
    class TaskRunnerRealBackendTest {
      private val log = LinkedBlockingDeque<String>()
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/utils/xla_call_module_attrs.h

    // Every stablehlo function deserialized from XlaCallModule has this attribute.
    constexpr llvm::StringRef kFromXlaCallModuleAttrName = "_from_xla_call_module";
    
    // Name of `tf.XlaCallModule`'s dictionary attribute for keeping the
    // deserialized stablehlo module's attributes.
    constexpr llvm::StringRef kStablehloModuleAttrsAttrName =
        "_stablehlo_module_attrs";
    
    }  // namespace TF
    }  // namespace mlir
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 19 22:08:10 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top