Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 687 for marking (0.13 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/more_about_tasks.adoc

    tasks.register("run") {
        group = "Application"
        description = "Runs this project as a JVM application."
    }
    ----
    =====
    ====
    
    [[sec:hidden_tasks]]
    == Private and hidden tasks
    
    Gradle doesn't support marking a task as _private_.
    
    However, tasks will only show up when running `:tasks` if `task.group` is set or no other task depends on it.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  2. src/runtime/malloc.go

    	span.freeIndexForScan = span.freeindex
    
    	// Allocate black during GC.
    	// All slots hold nil so no scanning is needed.
    	// This may be racing with GC so do it atomically if there can be
    	// a race marking the bit.
    	if gcphase != _GCoff {
    		gcmarknewobject(span, uintptr(x))
    	}
    
    	if raceenabled {
    		racemalloc(x, size)
    	}
    
    	if msanenabled {
    		msanmalloc(x, size)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache.adoc

    In order to handle volatile inputs for your tasks consider <<incremental_build.adoc#sec:configure_input_normalization,configuring input normalization>>.
    
    [[sec:task_output_caching_disabled_by_default]]
    === Marking tasks as non-cacheable by default
    
    There are certain tasks that don't benefit from using the build cache.
    One example is a task that only moves data around the file system, like a `Copy` task.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 11:30:10 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  4. pkg/kubelet/volumemanager/cache/actual_state_of_world_test.go

    		opCallback     func(asw ActualStateOfWorld, volumeOpts operationexecutor.MarkVolumeOpts) error
    		verifyCallback func(asw ActualStateOfWorld, volumeOpts operationexecutor.MarkVolumeOpts) error
    	}{
    		{
    			name: "marking volume mounted should remove volume from found during reconstruction",
    			opCallback: func(asw ActualStateOfWorld, volumeOpts operationexecutor.MarkVolumeOpts) error {
    				volumeOpts.VolumeMountState = operationexecutor.VolumeMounted
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  5. src/runtime/stack.go

    			// It's not safe for someone to shrink this stack while we're actively
    			// parking on a channel, but it is safe to grow since we do that
    			// ourselves and explicitly don't want to synchronize with channels
    			// since we could self-deadlock.
    			throw("racy sudog adjustment due to parking on channel")
    		}
    		adjustsudogs(gp, &adjinfo)
    	} else {
    		// sudogs may be pointing in to the stack and gp has
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  6. src/runtime/trace.go

    	// window and that goroutine didn't observe that tracing had begun, then we might write
    	// a GoStatus(GoWaiting) event for that goroutine, but it won't trace an event marking
    	// the transition from GoWaiting to GoRunnable. The trace will then be broken, because
    	// future events will be emitted assuming the tracer sees GoRunnable.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  7. src/runtime/mgcsweep.go

    //
    // The world must be stopped. This ensures there are no sweeps in
    // progress.
    //
    //go:nowritebarrier
    func finishsweep_m() {
    	assertWorldStopped()
    
    	// Sweeping must be complete before marking commences, so
    	// sweep any unswept spans. If this is a concurrent GC, there
    	// shouldn't be any spans left to sweep, so this should finish
    	// instantly. If GC was forced before the concurrent sweep
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:52:18 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  8. src/go/ast/ast.go

    // match the corresponding Go spec production names to which they
    // correspond. The node fields correspond to the individual parts
    // of the respective productions.
    //
    // All nodes contain position information marking the beginning of
    // the corresponding source text segment; it is accessible via the
    // Pos accessor method. Nodes may contain additional position info
    // for language constructs where comments may be found between parts
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 21:32:41 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  9. src/runtime/arena.go

    // same arena.
    func (a *userArena) new(typ *_type) unsafe.Pointer {
    	return a.alloc(typ, -1)
    }
    
    // slice allocates a new slice backing store. slice must be a pointer to a slice
    // (i.e. *[]T), because userArenaSlice will update the slice directly.
    //
    // cap determines the capacity of the slice backing store and must be non-negative.
    //
    // This operation is not safe to call concurrently with other operations on the
    // same arena.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:44:56 UTC 2024
    - 37.9K bytes
    - Viewed (0)
  10. src/runtime/mheap.go

    	// isn't held. (Entries never transitions back to nil.)
    	//
    	// In general, this is a two-level mapping consisting of an L1
    	// map and possibly many L2 maps. This saves space when there
    	// are a huge number of arena frames. However, on many
    	// platforms (even 64-bit), arenaL1Bits is 0, making this
    	// effectively a single-level map. In this case, arenas[0]
    	// will never be nil.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
Back to top