Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,363 for pauses (0.11 sec)

  1. src/cmd/vendor/golang.org/x/text/cases/cases.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:generate go run gen.go gen_trieval.go
    
    // Package cases provides general and language-specific case mappers.
    package cases // import "golang.org/x/text/cases"
    
    import (
    	"golang.org/x/text/language"
    	"golang.org/x/text/transform"
    )
    
    // References:
    // - Unicode Reference Manual Chapter 3.13, 4.2, and 5.18.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/rsc.io/markdown/parse.go

    	Position
    	Blocks []Block
    	Links  map[string]*Link
    }
    
    // A Parser is a Markdown parser.
    // The exported fields in the struct can be filled in before calling
    // [Parser.Parse] in order to customize the details of the parsing process.
    // A Parser is safe for concurrent use by multiple goroutines.
    type Parser struct {
    	// HeadingIDs determines whether the parser accepts
    	// the {#hdr} syntax for an HTML id="hdr" attribute on headings.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  3. pkg/test/util/tmpl/parse.go

    	"istio.io/istio/pkg/test"
    )
    
    // Parse the given template content.
    func Parse(tpl string) (*template.Template, error) {
    	t := template.New("test template")
    	return t.Funcs(sprig.TxtFuncMap()).Parse(tpl)
    }
    
    // ParseOrFail calls Parse and fails tests if it returns error.
    func ParseOrFail(t test.Failer, tpl string) *template.Template {
    	t.Helper()
    	tpl2, err := Parse(tpl)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 01 05:55:48 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  4. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/file/CleanupTestDirectory.groovy

     * a test directory provider as a TestRule causes spock to swallow any test failures and the test directory
     * is cleaned up even for failed tests.  {@link CleanupTestDirectoryExtension} on the other hand, registers
     * an interceptor and listener which cleans up the test directory only when the test passes.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  5. src/runtime/debug/garbage_test.go

    	}
    	n := int(mstats.NumGC)
    	if n > len(mstats.PauseNs) {
    		n = len(mstats.PauseNs)
    	}
    	if len(stats.Pause) != n {
    		t.Errorf("len(stats.Pause) = %d, want %d", len(stats.Pause), n)
    	} else {
    		off := (int(mstats.NumGC) + len(mstats.PauseNs) - 1) % len(mstats.PauseNs)
    		for i := 0; i < n; i++ {
    			dt := stats.Pause[i]
    			if dt != time.Duration(mstats.PauseNs[off]) {
    				t.Errorf("stats.Pause[%d] = %d, want %d", i, dt, mstats.PauseNs[off])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 19 14:30:00 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  6. src/cmd/link/main.go

    // Before any argument parsing is done, the Init function of relevant
    // architecture package is called. The only job done in Init is
    // configuration of the architecture-specific variables.
    //
    // Then control flow passes to ld.Main, which parses flags, makes
    // some configuration decisions, and then gives the architecture
    // packages a second chance to modify the linker's configuration
    // via the ld.Arch.Archinit function.
    
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 17 17:54:33 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  7. src/net/parse.go

    Jes Cok <******@****.***> 1714824795 +0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 14:00:54 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  8. pkg/test/echo/parse.go

    Nathan Mittler <******@****.***> 1645655146 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 23 22:25:46 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_config.h

      QDQConversionMode qdq_conversion_mode = QDQConversionMode::kQDQNone;
    };
    
    // Parses the command line flag strings to the CustomOpMap specification.
    void ParseCustomOpSpecs(absl::string_view node_names,
                            const CustomOpUpdateOptions& update_option,
                            CustomOpMap& custom_op_map);
    
    // Parses the command line flag strings to the quantization specification for
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 13 10:16:19 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  10. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/logging/FullExceptionFormatterTest.groovy

        java.lang.Exception: ouch
    """
        }
    
        def "optionally shows causes"() {
            testLogging.getShowCauses() >> true
            def cause = new RuntimeException("oops")
            def exception = new Exception("ouch", cause)
    
            expect:
            formatter.format(testDescriptor, [exception]) == """\
        java.lang.Exception: ouch
    
            Caused by:
            java.lang.RuntimeException: oops
    """
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 11.1K bytes
    - Viewed (0)
Back to top