Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 241 for discarded (0.12 sec)

  1. platforms/documentation/docs/src/docs/userguide/core-plugins/idea_plugin.adoc

    
    [[sec:partial-rewrite]]
    ==== Partial rewrite of existing content
    
    A "complete rewrite" causes all existing content to be discarded, thereby losing any changes made directly in the IDE. The `beforeMerged` hook makes it possible to overwrite just certain parts of the existing content. The following example removes all existing dependencies from the `Module` domain object:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/ProviderInternal.java

     * the configuration cache, so that its outputs in turn become fixed. The node can then be discarded from the graph and replaced with its (now fixed) outputs.</p>
     */
    public interface ProviderInternal<T> extends Provider<T>, ValueSupplier, TaskDependencyContainer, EvaluationContext.EvaluationOwner {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/execution/plan/Node.java

        }
    
        /**
         * Is this node ready to execute or discard (eg because a dependency has failed)?
         */
        public boolean allDependenciesComplete() {
            return state == ExecutionState.SHOULD_RUN && dependenciesState != DependenciesState.NOT_COMPLETE;
        }
    
        /**
         * Can this node execute or should it be discarded? Should only be called when {@link #allDependenciesComplete()} returns true.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 24 13:30:48 UTC 2023
    - 22.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/service_injection.adoc

    The property getter method must be `public` or `protected`. The method can be `abstract` or, in cases where this isn't possible, can have a dummy method body.
    The method body is discarded.
    
    Here is an example that shows a task type that receives a two services via property getter methods:
    
    ====
    [source.multi-language-sample,java]
    .Download.java
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  5. src/runtime/mgcwork.go

    	// at least one buffer of work and reduces contention on the
    	// global work lists.
    	//
    	// wbuf1 is always the buffer we're currently pushing to and
    	// popping from and wbuf2 is the buffer that will be discarded
    	// next.
    	//
    	// Invariant: Both wbuf1 and wbuf2 are nil or neither are.
    	wbuf1, wbuf2 *workbuf
    
    	// Bytes marked (blackened) on this gcWork. This is aggregated
    	// into work.bytesMarked by dispose.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/core-plugins/eclipse_plugin.adoc

    
    [[sec:partial-overwrite]]
    ==== Partial overwrite of existing content
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/internal/elfexec/elfexec.go

    // additional pages after the segment end.
    // The function returns a slice of pointers to the headers in the input
    // slice, which are valid only while phdrs is not modified or discarded.
    func ProgramHeadersForMapping(phdrs []elf.ProgHeader, mapOff, mapSz uint64) []*elf.ProgHeader {
    	const (
    		// pageSize defines the virtual memory page size used by the loader. This
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  8. internal/logger/target/http/http.go

    	// Wait for messages to be sent...
    	h.wg.Wait()
    
    	// Set logch to nil and close it.
    	// This will block all Send operations,
    	// and finish the existing ones.
    	// All future ones will be discarded.
    	h.logChMu.Lock()
    	xioutil.SafeClose(h.logCh)
    	h.logCh = nil
    	h.logChMu.Unlock()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jun 02 03:03:39 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  9. src/encoding/gob/decode.go

    	ovfl  error // error message for overflow/underflow (for arrays, of the elements)
    }
    
    // ignoreUint discards a uint value with no destination.
    func ignoreUint(i *decInstr, state *decoderState, v reflect.Value) {
    	state.decodeUint()
    }
    
    // ignoreTwoUints discards a uint value with no destination. It's used to skip
    // complex values.
    func ignoreTwoUints(i *decInstr, state *decoderState, v reflect.Value) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:10:23 UTC 2023
    - 40.1K bytes
    - Viewed (0)
  10. src/encoding/json/decode.go

    //
    // To unmarshal a JSON array into a Go array, Unmarshal decodes
    // JSON array elements into corresponding Go array elements.
    // If the Go array is smaller than the JSON array,
    // the additional JSON array elements are discarded.
    // If the JSON array is smaller than the Go array,
    // the additional Go array elements are set to zero values.
    //
    // To unmarshal a JSON object into a map, Unmarshal first establishes a map to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 35.3K bytes
    - Viewed (0)
Back to top