Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 291 for discarded (0.15 sec)

  1. src/log/slog/doc.go

    The arguments to a log call are always evaluated, even if the log event is discarded.
    If possible, defer computation so that it happens only if the value is actually logged.
    For example, consider the call
    
    	slog.Info("starting request", "url", r.URL.String())  // may compute String unnecessarily
    
    The URL.String method will be called even if the logger discards Info-level events.
    Instead, pass the URL directly:
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 15 14:35:48 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  2. tensorflow/c/eager/c_api_experimental.h

        TFE_Executor*, TF_Status* status);
    
    // When an error happens, any pending operations are discarded, and newly issued
    // ops return an error. This call clears the error state and re-enables
    // execution of newly issued ops.
    //
    // Note that outputs of discarded ops remain in a corrupt state and should not
    // be used for future calls.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 22:37:46 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/facts/facts.go

    //
    // It calls the getPackage function for the package path string of
    // each dependency (perhaps indirect) that it encounters in the
    // encoding. If the function returns nil, the fact is discarded.
    //
    // This function is preferred over [NewDecoder] when the client is
    // capable of efficient look-up of packages by package path.
    func NewDecoderFunc(pkg *types.Package, getPackage GetPackageFunc) *Decoder {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top