Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 295 for alternate (0.32 sec)

  1. src/cmd/vendor/golang.org/x/telemetry/start.go

    	//
    	// (This feature is expected to be used only by gopls.
    	// Longer term, the go command may become the sole program
    	// responsible for uploading.)
    	Upload bool
    
    	// TelemetryDir, if set, will specify an alternate telemetry
    	// directory to write data to. If not set, it uses the default
    	// directory.
    	// This field is intended to be used for isolating testing environments.
    	TelemetryDir string
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. src/testing/sub_test.go

    						t.Parallel()
    						atomic.AddUint32(&count, 1)
    					})
    				}
    			})
    			if count != 4 {
    				t.Errorf("count was %d; want 4", count)
    			}
    		},
    	}, {
    		desc: "alternate sequential and parallel",
    		// Sequential tests should partake in the counting of running threads.
    		// Otherwise, if one runs parallel subtests in sequential tests that are
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 21:27:08 UTC 2023
    - 23.8K bytes
    - Viewed (0)
  3. src/runtime/testdata/testprog/gc.go

    	// and to reduce the chance that the background scavenger gets scheduled.
    	defer runtime.GOMAXPROCS(runtime.GOMAXPROCS(1))
    
    	// Allocate allocTotal bytes of memory in allocChunk byte chunks.
    	// Alternate between whether the chunk will be held live or will be
    	// condemned to GC to create holes in the heap.
    	saved := make([][]byte, allocs/2+1)
    	condemned := make([][]byte, allocs/2)
    	for i := 0; i < allocs; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 02 02:28:27 UTC 2022
    - 12.1K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/MinMaxPriorityQueue.java

       * 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)
  5. guava/src/com/google/common/collect/MinMaxPriorityQueue.java

       * 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 (1)
  6. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Reader.kt

         *
         * See [alt-svc][alt_svc].
         *
         * [alt_svc]: http://tools.ietf.org/html/draft-ietf-httpbis-alt-svc-01
         *
         * @param streamId when a client-initiated stream ID (odd number), the origin of this alternate
         *     service is the origin of the stream. When zero, the origin is specified in the `origin`
         *     parameter.
         * @param origin when present, the [origin](http://tools.ietf.org/html/rfc6454) is typically
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  7. src/os/signal/doc.go

    SA_ONSTACK flag with sigaction. Failing to do so is likely to cause
    the program to crash if the signal is received. Go programs routinely
    run with a limited stack, and therefore set up an alternate signal
    stack.
    
    If the non-Go code installs a signal handler for any of the
    synchronous signals (SIGBUS, SIGFPE, SIGSEGV), then it should record
    the existing Go signal handler. If those signals occur while
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:11:00 UTC 2024
    - 11K bytes
    - Viewed (0)
  8. src/runtime/signal_windows.go

    	// Check if we need to set up the control flow guard workaround.
    	// On Windows, the stack pointer in the context must lie within
    	// system stack limits when we resume from exception.
    	// Store the resume SP and PC in alternate registers
    	// and return to sigresume on the g0 stack.
    	// sigresume makes no use of the stack at all,
    	// loading SP from RX and jumping to RY, being RX and RY two scratch registers.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 20:32:29 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  9. src/debug/dwarf/entry.go

    	ClassString
    
    	// ClassReferenceAlt represents values of type int64 that are
    	// an offset into the DWARF "info" section of an alternate
    	// object file.
    	ClassReferenceAlt
    
    	// ClassStringAlt represents values of type int64 that are an
    	// offset into the DWARF string section of an alternate object
    	// file.
    	ClassStringAlt
    
    	// ClassAddrPtr represents values that are an int64 offset
    	// into the "addr" section.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 30.7K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/StandardJavadocDocletOptions.java

        }
    
        public StandardJavadocDocletOptions noNavBar() {
            return noNavBar(true);
        }
    
        /**
         * -helpfile  path/filename
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 43.4K bytes
    - Viewed (0)
Back to top