Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 152 for Boundaries (0.16 sec)

  1. src/html/template/js_test.go

    		{"\u2029", `\u2029`},
    		{"\\", `\\`},
    		{"\\n", `\\n`},
    		{"foo\r\nbar", `foo\r\nbar`},
    		// Preserve attribute boundaries.
    		{`"`, `\u0022`},
    		{`'`, `\u0027`},
    		// Allow embedding in HTML without further escaping.
    		{`&`, `\u0026amp;`},
    		// Prevent breaking out of text node and element boundaries.
    		{"</script>", `\u003c\/script\u003e`},
    		{"<![CDATA[", `\u003c![CDATA[`},
    		{"]]>", `]]\u003e`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 02:20:11 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileParallelIntegrationTest.groovy

    class JavaCompileParallelIntegrationTest extends AbstractIntegrationSpec {
        @Issue("https://issues.gradle.org/browse/GRADLE-3029")
        def "system property java.home is not modified across compile task boundaries"() {
            def projectNames = ['a', 'b', 'c', 'd', 'e', 'f', 'g']
            def jdks = Iterables.cycle(AvailableJavaHomes.availableJdksWithJavac.entrySet()).iterator()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/doc/c4/lib/C4_Context.puml

    !define System_Ext(e_alias, e_label) rectangle "==e_label" <<external_system>> as e_alias
    !define System_Ext(e_alias, e_label, e_descr) rectangle "==e_label\n\n e_descr" <<external_system>> as e_alias
    
    ' Boundaries
    ' ##################################
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  4. test/float_lit3.go

    // errorcheck
    
    // Check flagging of invalid conversion of constant to float32/float64 near min/max boundaries.
    
    // Copyright 2014 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    // See float_lit2.go for motivation for these values.
    const (
    	two24   = 1.0 * (1 << 24)
    	two53   = 1.0 * (1 << 53)
    	two64   = 1.0 * (1 << 64)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 03 16:24:32 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  5. src/internal/trace/testdata/generators/go122-fail-first-gen-first.go

    // license that can be found in the LICENSE file.
    
    // Regression test for #55160.
    //
    // The issue is that the parser reads ahead to the first batch of the
    // next generation to find generation boundaries, but if it finds an
    // error, it needs to delay handling that error until later. Previously
    // it would handle that error immediately and a totally valid generation
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. src/cmd/internal/test2json/test2json_test.go

    				writeAndKill(c, in)
    				c.Close()
    				diffJSON(t, bytes.ReplaceAll(buf.Bytes(), []byte(`\r\n`), []byte(`\n`)), want)
    			})
    
    			// Write 2 bytes at a time on even boundaries.
    			t.Run("even2", func(t *testing.T) {
    				buf.Reset()
    				c = NewConverter(&buf, "", 0)
    				in = append([]byte{}, orig...)
    				for i := 0; i < len(in); i += 2 {
    					if i+2 <= len(in) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 19:50:36 UTC 2022
    - 7.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/deadcode.go

    	for j := range clearNames {
    		clearNames[j] = nil
    	}
    	f.Names = f.Names[:i]
    
    	pendingLines := f.cachedLineStarts // Holds statement boundaries that need to be moved to a new value/block
    	pendingLines.clear()
    
    	// Unlink values and conserve statement boundaries
    	for i, b := range f.Blocks {
    		if !reachable[b.ID] {
    			// TODO what if control is statement boundary? Too late here.
    			b.ResetControls()
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 00:29:01 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_clean_cache.txt

    ! exists $GOPATH/pkg/mod/cache/download/rsc.io/quote/@v/v1.5.0.zip
    
    # 'go clean -r -modcache' should clean only the dependencies that are within the
    # main module.
    # BUG(golang.org/issue/28680): Today, it cleans across module boundaries.
    cd r
    exists ./test.out
    exists ../replaced/test.out
    go clean -r -modcache
    ! exists ./test.out
    ! exists ../replaced/test.out  # BUG: should still exist
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 30 17:22:49 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  9. src/runtime/histogram.go

    }
    
    func float64NegInf() float64 {
    	inf := uint64(fNegInf)
    	return *(*float64)(unsafe.Pointer(&inf))
    }
    
    // timeHistogramMetricsBuckets generates a slice of boundaries for
    // the timeHistogram. These boundaries are represented in seconds,
    // not nanoseconds like the timeHistogram represents durations.
    func timeHistogramMetricsBuckets() []float64 {
    	b := make([]float64, timeHistTotalBuckets+1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_context.go

    // a given request has been delegated to an aggregated API
    // server. No-op when priority and fairness is disabled.
    func RequestDelegated(ctx context.Context) {
    	// The watch initialization signal doesn't traverse request
    	// boundaries, so we generously fire it as soon as we know
    	// that the request won't be serviced locally. Safe to call
    	// for non-watch requests.
    	WatchInitialized(ctx)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 14 14:39:15 UTC 2021
    - 2.9K bytes
    - Viewed (0)
Back to top