Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,430 for paused (0.13 sec)

  1. src/encoding/asn1/asn1.go

    //
    //	application specifies that an APPLICATION tag is used
    //	private     specifies that a PRIVATE tag is used
    //	default:x   sets the default value for optional integer fields (only used if optional is also present)
    //	explicit    specifies that an additional, explicit tag wraps the implicit one
    //	optional    marks the field as ASN.1 OPTIONAL
    //	set         causes a SET, rather than a SEQUENCE type to be expected
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 31.8K bytes
    - Viewed (0)
  2. src/cmd/internal/test2json/testdata/smiley.json

    {"Action":"output","Test":"Test☺☹/4","Output":"=== PAUSE Test☺☹/4\n"}
    {"Action":"pause","Test":"Test☺☹/4"}
    {"Action":"run","Test":"Test☺☹/5"}
    {"Action":"output","Test":"Test☺☹/5","Output":"=== RUN   Test☺☹/5\n"}
    {"Action":"output","Test":"Test☺☹/5","Output":"=== PAUSE Test☺☹/5\n"}
    {"Action":"pause","Test":"Test☺☹/5"}
    {"Action":"output","Test":"TestTags/x_testtag_y","Output":"=== PAUSE TestTags/x_testtag_y\n"}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 17:33:07 UTC 2022
    - 12.4K bytes
    - Viewed (0)
  3. guava/src/com/google/common/base/Suppliers.java

        }
      }
    
      /**
       * Returns a supplier that caches the instance supplied by the delegate and removes the cached
       * value after the specified time has passed. Subsequent calls to {@code get()} return the cached
       * value if the expiration time has not passed. After the expiration time, a new value is
       * retrieved, cached, and returned. See: <a
       * href="http://en.wikipedia.org/wiki/Memoization">memoization</a>
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  4. src/runtime/gc_test.go

    		t.Fatalf("bad last GC time: got %v, want [%v, %v]", last, t0, t1)
    	}
    	pause := ms.PauseNs[(ms.NumGC+255)%256]
    	// Due to timer granularity, pause can actually be 0 on windows
    	// or on virtualized environments.
    	if pause == 0 {
    		t.Logf("last GC pause was 0")
    	} else if pause > 10e9 {
    		t.Logf("bad last GC pause: got %v, want [0, 10e9]", pause)
    	}
    }
    
    var hugeSink any
    
    func TestHugeGCInfo(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 22:33:52 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  5. build/dependencies.yaml

          match: __default_go_runner_version=
    
      - name: "registry.k8s.io/pause"
        version: 3.10
        refPaths:
        - path: build/pause/Makefile
          match: TAG\s*\?=
    
      - name: "registry.k8s.io/pause: dependents"
        version: 3.10
        refPaths:
        - path: cluster/gce/config-common.sh
          match: registry.k8s.io\/pause:\d+\.\d+
        - path: cluster/gce/gci/configure-helper.sh
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/util/proxy/streamtunnel.go

    type initializableConn interface {
    	net.Conn
    	// InitializeWrite is called when the backend response headers have been read.
    	// backendResponse contains the parsed headers.
    	// backendResponseBytes are the raw bytes the headers were parsed from.
    	InitializeWrite(backendResponse *http.Response, backendResponseBytes []byte) error
    }
    
    const maxHeaderBytes = 1 << 20
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:10:30 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/base/Suppliers.java

        }
      }
    
      /**
       * Returns a supplier that caches the instance supplied by the delegate and removes the cached
       * value after the specified time has passed. Subsequent calls to {@code get()} return the cached
       * value if the expiration time has not passed. After the expiration time, a new value is
       * retrieved, cached, and returned. See: <a
       * href="http://en.wikipedia.org/wiki/Memoization">memoization</a>
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  8. src/flag/flag.go

    	}
    	return nil
    }
    
    // Parsed reports whether f.Parse has been called.
    func (f *FlagSet) Parsed() bool {
    	return f.parsed
    }
    
    // Parse parses the command-line flags from [os.Args][1:]. Must be called
    // after all flags are defined and before flags are accessed by the program.
    func Parse() {
    	// Ignore errors; CommandLine is set for ExitOnError.
    	CommandLine.Parse(os.Args[1:])
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:38:24 UTC 2024
    - 39.7K bytes
    - Viewed (0)
  9. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/report/DefaultTestReportTest.groovy

        }
    
        TestResultsProvider passingBuildResults() {
            buildResults {
                testClassResult("org.gradle.passing.Passed") {
                    testcase("passed") {
                        duration = 1000;
                    }
                }
                testClassResult("org.gradle.passing.subpackage.AlsoPassed") {
                    testcase("passedToo") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/executer/OutputScrapingExecutionFailureTest.groovy

            e.message.trim().startsWith('''No matching cause found
    Expected: A cause which is a string starting with "other"
         but: causes were [cause 1, cause 2]''')
    
            when:
            failure.assertHasCause("something")
    
            then:
            def e2 = thrown(AssertionError)
            e2.message.trim().startsWith('No matching cause found')
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 15.5K bytes
    - Viewed (0)
Back to top