Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 102 for interleaved (0.19 sec)

  1. src/cmd/compile/internal/inline/interleaved/interleaved.go

    // Copyright 2023 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 interleaved implements the interleaved devirtualization and
    // inlining pass.
    package interleaved
    
    import (
    	"cmd/compile/internal/base"
    	"cmd/compile/internal/devirtualize"
    	"cmd/compile/internal/inline"
    	"cmd/compile/internal/inline/inlheur"
    	"cmd/compile/internal/ir"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:42:52 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/test_json_interleaved.txt

    # Regression test for https://golang.org/issue/40657: output from the main test
    # function should be attributed correctly even if interleaved with the PAUSE
    # line for a new parallel subtest.
    
    [short] skip
    
    go test -json
    stdout '"Test":"TestWeirdTiming","Output":"[^"]* logging to outer again\\n"'
    
    -- go.mod --
    module example.com
    go 1.15
    -- main_test.go --
    package main
    
    import (
    	"testing"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 18 17:44:20 UTC 2020
    - 581 bytes
    - Viewed (0)
  3. test/fixedbugs/issue5820.go

    // Copyright 2013 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.
    
    // issue 5820: register clobber when clearfat and 64 bit arithmetic is interleaved.
    
    package main
    
    func main() {
    	array := make([][]int, 2)
    	index := uint64(1)
    	array[index] = nil
    	if array[1] != nil {
    		panic("array[1] != nil")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 402 bytes
    - Viewed (0)
  4. src/math/rand/v2/chacha8.go

    		if ok {
    			return x
    		}
    		c.state.Refill()
    	}
    }
    
    // Read reads exactly len(p) bytes into p.
    // It always returns len(p) and a nil error.
    //
    // If calls to Read and Uint64 are interleaved, the order in which bits are
    // returned by the two is undefined, and Read may return bits generated before
    // the last call to Uint64.
    func (c *ChaCha8) Read(p []byte) (n int, err error) {
    	if c.readLen > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:09:08 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  5. src/image/jpeg/scan.go

    					//
    					// For progressive images, the interleaved scans (those with nComp > 1)
    					// are traversed as above, but non-interleaved scans are traversed left
    					// to right, top to bottom:
    					//	0 1 2 3
    					//	4 5 6 7
    					// Only DC scans (zigStart == 0) can be interleaved. AC scans must have
    					// only one component.
    					//
    					// To further complicate matters, for non-interleaved scans, there is no
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 00:46:29 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/RequestBody.kt

       *
       * ### Duplex Transmission
       *
       * With regular HTTP calls the request always completes sending before the response may begin
       * receiving. With duplex the request and response may be interleaved! That is, request body bytes
       * may be sent after response headers or body bytes have been received.
       *
       * Though any call may be initiated as a duplex call, only web servers that are specially
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Jan 25 14:41:37 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r35/BuildProgressCrossVersionSpec.groovy

    import spock.lang.Issue
    
    @TargetGradleVersion(">=3.5")
    class BuildProgressCrossVersionSpec extends AbstractHttpCrossVersionSpec {
    
        @TargetGradleVersion(">=3.5 <4.0")
        def "generates events for interleaved project configuration and dependency resolution"() {
            given:
            settingsFile << """
    
                rootProject.name = 'multi'
                include 'a', 'b'
            """
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/cache/AbstractCache.java

         * Cache#invalidate invalidations}.
         */
        void recordEviction();
    
        /**
         * Returns a snapshot of this counter's values. Note that this may be an inconsistent view, as
         * it may be interleaved with update operations.
         */
        CacheStats snapshot();
      }
    
      /**
       * A thread-safe {@link StatsCounter} implementation for use by {@link Cache} implementors.
       *
       * @since 10.0
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 15 18:00:07 UTC 2021
    - 9.1K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r33/BuildProgressCrossVersionSpec.groovy

            }
    
            then:
            !events.operations.find { it.name.contains("compileClasspath") }
        }
    
        @TargetGradleVersion(">=3.3 <3.5")
        def "generates events for interleaved project configuration and dependency resolution"() {
            given:
            settingsFile << """
                rootProject.name = 'multi'
                include 'a', 'b'
            """
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 8K bytes
    - Viewed (0)
  10. guava/src/com/google/common/cache/AbstractCache.java

         * Cache#invalidate invalidations}.
         */
        void recordEviction();
    
        /**
         * Returns a snapshot of this counter's values. Note that this may be an inconsistent view, as
         * it may be interleaved with update operations.
         */
        CacheStats snapshot();
      }
    
      /**
       * A thread-safe {@link StatsCounter} implementation for use by {@link Cache} implementors.
       *
       * @since 10.0
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 15 18:00:07 UTC 2021
    - 9.1K bytes
    - Viewed (0)
Back to top