Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 102 for interleaved (0.26 sec)

  1. android/guava/src/com/google/common/graph/Traverser.java

         * (Note, however, that the callers of {@code visitNext()} often insert additional iterators
         * into {@code horizon} between calls to {@code visitNext()}. This causes them to receive
         * additional values interleaved with those shown above.)
         */
        @CheckForNull
        abstract N visitNext(Deque<Iterator<? extends N>> horizon);
      }
    
      /** Poor man's method reference for {@code Deque::addFirst} and {@code Deque::addLast}. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 30 20:12:45 UTC 2023
    - 19.8K bytes
    - Viewed (0)
  2. guava/src/com/google/common/graph/Traverser.java

         * (Note, however, that the callers of {@code visitNext()} often insert additional iterators
         * into {@code horizon} between calls to {@code visitNext()}. This causes them to receive
         * additional values interleaved with those shown above.)
         */
        @CheckForNull
        abstract N visitNext(Deque<Iterator<? extends N>> horizon);
      }
    
      /** Poor man's method reference for {@code Deque::addFirst} and {@code Deque::addLast}. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 30 20:12:45 UTC 2023
    - 19.8K bytes
    - Viewed (0)
  3. src/text/template/doc.go

    "{{" and "}}"; all text outside actions is copied to the output unchanged.
    
    Once parsed, a template may be executed safely in parallel, although if parallel
    executions share a Writer the output may be interleaved.
    
    Here is a trivial example that prints "17 items are made of wool".
    
    	type Inventory struct {
    		Material string
    		Count    uint
    	}
    	sweaters := Inventory{"wool", 17}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  4. src/runtime/mgcpacer_test.go

    		}
    	}
    	for i := 0; i < 10; i++ {
    		if !c.AddIdleMarkWorker() {
    			t.Fatalf("expected to be able to add idle mark workers interleaved: i=%d", i)
    		}
    		if c.AddIdleMarkWorker() {
    			t.Fatalf("expected to not be able to add idle mark workers interleaved: i=%d", i)
    		}
    		c.RemoveIdleMarkWorker()
    	}
    	// Support the max being below the count.
    	c.SetMaxIdleMarkWorkers(0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 13:53:21 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/sink/GroupingProgressLogEventGeneratorTest.groovy

            then:
            0 * downstreamListener._
        }
    
        def "groups logs for child operations of tasks when progress operations interleaved"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  6. src/text/template/exec.go

    // execution stops, but partial results may already have been written to
    // the output writer.
    // A template may be executed safely in parallel, although if parallel
    // executions share a Writer the output may be interleaved.
    func (t *Template) ExecuteTemplate(wr io.Writer, name string, data any) error {
    	tmpl := t.Lookup(name)
    	if tmpl == nil {
    		return fmt.Errorf("template: no template %q associated with template %q", name, t.name)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:22:24 UTC 2024
    - 32K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssagen/phi.go

    		// Otherwise, give up and insert a new FwdRef and resolve it later.
    		if len(b.Preds) != 1 {
    			break
    		}
    		b = b.Preds[0].Block()
    		if !s.reachable[b.ID] {
    			// This is rare; it happens with oddly interleaved infinite loops in dead code.
    			// See issue 19783.
    			break
    		}
    	}
    	// Generate a FwdRef for the variable and return that.
    	v := b.NewValue0A(line, ssa.OpFwdRef, t, fwdRefAux{N: var_})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 15.2K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Stream.kt

       * We always do timeouts in the HTTP server role. For clients, we only do timeouts after the
       * request is transmitted. This is only interesting for duplex calls where the request and
       * response may be interleaved.
       *
       * Read this value only once for each enter/exit pair because its value can change.
       */
      private fun doReadTimeout() = !connection.client || sink.closed || sink.finished
    
      /**
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/text/transform/transform.go

    	// determine the input and output bytes are the same. This is obviously more
    	// limited than calling Transform, but can be more efficient in terms of
    	// copying and allocating buffers. Calls to Span and Transform may be
    	// interleaved.
    	Span(src []byte, atEOF bool) (n int, err error)
    }
    
    // NopResetter can be embedded by implementations of Transformer to add a nop
    // Reset method.
    type NopResetter struct{}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/MinMaxPriorityQueue.java

      /**
       * Each instance of MinMaxPriorityQueue encapsulates two instances of Heap: a min-heap and a
       * max-heap. Conceptually, these might each have their own array for storage, but for efficiency's
       * sake they are stored interleaved on alternate heap levels in the same array (MMPQ.queue).
       */
      @WeakOuter
      class Heap {
        final Ordering<E> ordering;
    
        @SuppressWarnings("nullness:initialization.field.uninitialized")
        @Weak
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 34K bytes
    - Viewed (0)
Back to top