Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 282 for sweeping (0.12 sec)

  1. proguard/collect.pro

    # The nested FieldSettersHolder class looks these up.
    #
    # We use -keepclassmembernames because we want for ImmutableMultimap and its
    # fields to be stripped if it's unused: -keepclassmembernames says that, *if*
    # you're keeping the fields, you need to leave their names untouched. (Anyone
    # who is using ImmutableMultimap will certainly be using its fields. So we
    # don't need to worry that an ImmutableMultimap user will have the fields
    # optimized away.)
    #
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 09 00:29:01 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. buildscripts/minio-upgrade.sh

    add_alias() {
    	for i in $(seq 1 4); do
    		echo "... attempting to add alias $i"
    		until (mc alias set minio http://127.0.0.1:9000 minioadmin minioadmin); do
    			echo "...waiting... for 5secs" && sleep 5
    		done
    	done
    
    	echo "Sleeping for nginx"
    	sleep 20
    }
    
    __init__() {
    	sudo apt install curl -y
    	export GOPATH=/tmp/gopath
    	export PATH=${PATH}:${GOPATH}/bin
    
    	go install github.com/minio/mc@latest
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 05:08:11 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. src/runtime/abi_test.go

    	// cause a crash, but because we're running in a separate process
    	// it's extremely unlikely.
    	runtime.GC()
    	runtime.GC()
    
    	// fing will only pick the new IntRegArgs up if it's currently
    	// sleeping and wakes up, so wait for it to go to sleep.
    	success := false
    	for i := 0; i < 100; i++ {
    		if runtime.FinalizerGAsleep() {
    			success = true
    			break
    		}
    		time.Sleep(20 * time.Millisecond)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. src/cmd/internal/objabi/pkgspecial.go

    	"runtime/asan",
    	// We omit bytealg even though it's imported by runtime because it also
    	// backs a lot of package bytes. Currently we don't have a way to omit race
    	// instrumentation when used from the runtime while keeping race
    	// instrumentation when used from user code. Somehow this doesn't seem to
    	// cause problems, though we may be skating on thin ice. See #61204.
    	"-internal/bytealg",
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 02:32:19 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  5. src/math/rand/auto_test.go

    import (
    	. "math/rand"
    	"testing"
    )
    
    // This test is first, in its own file with an alphabetically early name,
    // to try to make sure that it runs early. It has the best chance of
    // detecting deterministic seeding if it's the first test that runs.
    
    func TestAuto(t *testing.T) {
    	// Pull out 10 int64s from the global source
    	// and then check that they don't appear in that
    	// order in the deterministic Seed(1) result.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 16:49:48 UTC 2022
    - 1K bytes
    - Viewed (0)
  6. src/runtime/runtime.go

    	// The old FD will never be closed, but we are about to crash anyway.
    	//
    	// On the writeErrData thread, panicking.Add(1) happens-before
    	// crashFD.Load() [2].
    	//
    	// On this thread, swapping old FD for new in crashFD happens-before
    	// panicking.Load() > 0.
    	//
    	// Therefore, if panicking.Load() == 0 here (old FD will be closed), it
    	// is impossible for the writeErrData thread to observe
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. platforms/core-configuration/stdlib-kotlin-extensions/src/main/kotlin/org/gradle/internal/extensions/stdlib/MapExtensions.kt

    
    fun <V> Map<String, V>.filterKeysByPrefix(prefix: String): Map<String, V?> =
        filterKeys { key -> key.length > prefix.length && key.startsWith(prefix) }
    
    
    /**
     * Inverts the given map by swapping its keys with their corresponding values and returns the resulting map.
     *
     * If the original map contains duplicate values, the resulting map will map each value to the key associated
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:59:39 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  8. platforms/jvm/scala/src/main/java/org/gradle/api/internal/tasks/scala/GuavaBackedClassLoaderCache.java

    import java.util.concurrent.Callable;
    
    /**
     * Simple guava-based classloader cache. Usually used with a very small size (&lt; 10),
     * as classloaders are strongly referenced.
     *
     * Keeping them strongly referenced allows us to correctly release resources for the evicted entries.
     */
    public class GuavaBackedClassLoaderCache<K> implements AutoCloseable {
        private final Cache<K, ClassLoader> cache;
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  9. src/math/rand/v2/auto_test.go

    import (
    	. "math/rand/v2"
    	"testing"
    )
    
    // This test is first, in its own file with an alphabetically early name,
    // to try to make sure that it runs early. It has the best chance of
    // detecting deterministic seeding if it's the first test that runs.
    
    func TestAuto(t *testing.T) {
    	// Pull out 10 int64s from the global source
    	// and then check that they don't appear in that
    	// order in the deterministic seeded result.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 30 17:09:26 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. samples/addons/jaeger.yaml

        - name: grpc-query
          port: 16685
          protocol: TCP
          targetPort: 16685
      selector:
        app: jaeger
    ---
    # Jaeger implements the Zipkin API. To support swapping out the tracing backend, we use a Service named Zipkin.
    apiVersion: v1
    kind: Service
    metadata:
      labels:
        name: zipkin
      name: zipkin
      namespace: istio-system
    spec:
      ports:
        - port: 9411
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top