Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 324 for startm (0.13 sec)

  1. pkg/controller/endpointslice/endpointslice_controller_test.go

    		wantRequestCount int
    	}{
    		{
    			name:        "three adds with no batching",
    			batchPeriod: 0 * time.Second,
    			adds: []podAdd{
    				{
    					// endpoints.Run needs ~100 ms to start processing updates.
    					delay: 200 * time.Millisecond,
    				},
    				{
    					delay: 100 * time.Millisecond,
    				},
    				{
    					delay: 100 * time.Millisecond,
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

    // Range() returns generators providing sequences of values in a range.
    //
    // Synopsis:
    // Range(start, end)
    //   - returns a generator producing a sequence of values {start, start+1,
    //     start+2, ..., }.
    // Range(start, end, step)
    //   - returns a generator producing a sequence of values {start, start+step,
    //     start+step+step, ..., }.
    // Notes:
    //   * The generated sequences never include end. For example, Range(1, 5)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 74.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset_test.go

    }
    
    // TestContextCancel tests cancellation of a request's context.
    // The outline is:
    //  1. Use a concurrency limit of 1.
    //  2. Start request 1.
    //  3. Use a fake clock for the following logic, to insulate from scheduler noise.
    //  4. The exec fn of request 1 starts request 2, which should wait
    //     in its queue.
    //  5. The exec fn of request 1 also forks a goroutine that waits 1 second
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 58.4K bytes
    - Viewed (0)
  4. pkg/proxy/nftables/proxier.go

    	{nodePortEndpointsCheckChain, filterInputChain, "ct state new"},
    	{serviceEndpointsCheckChain, filterInputChain, "ct state new"},
    	{serviceEndpointsCheckChain, filterForwardChain, "ct state new"},
    	{serviceEndpointsCheckChain, filterOutputChain, "ct state new"},
    
    	{firewallCheckChain, filterPreroutingChain, "ct state new"},
    	{firewallCheckChain, filterOutputChain, "ct state new"},
    
    	{servicesChain, natOutputChain, ""},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  5. src/runtime/mprof.go

    // frees after the world is started again count towards a new heap
    // profiling cycle.
    func mProf_NextCycle() {
    	mProfCycle.increment()
    }
    
    // mProf_Flush flushes the events from the current heap profiling
    // cycle into the active profile. After this it is safe to start a new
    // heap profiling cycle with mProf_NextCycle.
    //
    // This is called by GC after mark termination starts the world. In
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/ldap/LdapManager.java

                return null;
            }
            int start = entryDn.toLowerCase(Locale.ROOT).indexOf("cn=");
            if (start == -1) {
                return null;
            }
            start += 3;
    
            final int end = entryDn.indexOf(',', start);
            final String value = end == -1 ? entryDn.substring(start) : entryDn.substring(start, end);
            if (fessConfig.isLdapGroupNameWithUnderscores()) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  7. src/runtime/malloc.go

    	// s390x         TASK_SIZE         1<<64 (64 bit addresses)
    	//
    	// These limits may increase over time, but are currently at
    	// most 48 bits except on s390x. On all architectures, Linux
    	// starts placing mmap'd regions at addresses that are
    	// significantly below 48 bits, so even if it's possible to
    	// exceed Go's 48 bit limit, it's extremely unlikely in
    	// practice.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

        def setup() {
            // So that dependency resolution results from previous executions do not interfere
            requireOwnGradleUserHomeDir()
        }
    
        def setupBuildWithEachDependencyType() {
            httpServer.start()
            taskTypeWithOutputFileProperty()
    
            remoteRepo.module("group", "lib1", "6500").publish().allowAll()
    
            createDirs("a", "b")
            settingsFile << """
                rootProject.name = 'root'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  9. src/cmd/dist/build.go

    		}
    		buf := make([]byte, 100)
    		n, _ := f.Read(buf)
    		s := string(buf[:n])
    		if i := strings.Index(s, "\n"); i >= 0 {
    			s = s[:i]
    		}
    		i := strings.Index(s, " start")
    		if i < 0 {
    			log.Fatalf("time log %s does not begin with start line", os.Getenv("GOBUILDTIMELOGFILE"))
    		}
    		t, err := time.Parse(time.UnixDate, s[:i])
    		if err != nil {
    			log.Fatalf("cannot parse time log line %q: %v", s, err)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

     * A fully-qualified class name or fully qualified method name, e.g. `org.gradle.SomeTest`, `org.gradle.SomeTest.someMethod`
     * A simple class name or method name if the pattern starts with an upper-case letter, e.g. `SomeTest`, `SomeTest.someMethod` (since Gradle 4.7)
     * '*' wildcard matching
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
Back to top