Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 118 for necessarily (0.17 sec)

  1. src/cmd/go/internal/modload/init.go

    		return errGoModDirty
    	}
    
    	if !dirty && cfg.CmdName != "mod tidy" {
    		// The go.mod file has the same semantic content that it had before
    		// (but not necessarily the same exact bytes).
    		// Don't write go.mod, but write go.sum in case we added or trimmed sums.
    		// 'go mod init' shouldn't write go.sum, since it will be incomplete.
    		if cfg.CmdName != "mod init" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Iterators.java

     * {@link Iterables} class.
     *
     * <p><i>Performance notes:</i> Unless otherwise noted, all of the iterators produced in this class
     * are <i>lazy</i>, which means that they only advance the backing iteration when absolutely
     * necessary.
     *
     * <p>See the Guava User Guide section on <a href=
     * "https://github.com/google/guava/wiki/CollectionUtilitiesExplained#iterables">{@code
     * Iterators}</a>.
     *
     * @author Kevin Bourrillion
     * @author Jared Levy
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/Iterators.java

     * {@link Iterables} class.
     *
     * <p><i>Performance notes:</i> Unless otherwise noted, all of the iterators produced in this class
     * are <i>lazy</i>, which means that they only advance the backing iteration when absolutely
     * necessary.
     *
     * <p>See the Guava User Guide section on <a href=
     * "https://github.com/google/guava/wiki/CollectionUtilitiesExplained#iterables">{@code
     * Iterators}</a>.
     *
     * @author Kevin Bourrillion
     * @author Jared Levy
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  4. docs/changelogs/changelog_3x.md

     *  Fix: Honor the `MockResponse` header delay in MockWebServer.
     *  Fix: Don't release HTTP/2 connections that have multiple canceled calls. We had a bug where
        canceling calls would cause the shared HTTP/2 connection to be unnecessarily released. This
        harmed connection reuse.
     *  Fix: Ensure canceled and discarded HTTP/2 data is not permanently counted against the limited
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    	ErrVersionNotSupported = errors.New("runtime api version is not supported")
    )
    
    // podStateProvider can determine if none of the elements are necessary to retain (pod content)
    // or if none of the runtime elements are necessary to retain (containers)
    type podStateProvider interface {
    	IsPodTerminationRequested(kubetypes.UID) bool
    	ShouldPodContentBeRemoved(kubetypes.UID) bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    The report provides both names and types.
    As a last resort, you can also check a plugin's source code, but that shouldn't be necessary in the majority of cases.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  7. src/net/http/request.go

    	// innermost. An empty list denotes the "identity" encoding.
    	// TransferEncoding can usually be ignored; chunked encoding is
    	// automatically added and removed as necessary when sending and
    	// receiving requests.
    	TransferEncoding []string
    
    	// Close indicates whether to close the connection after
    	// replying to this request (for servers) or after sending this
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  8. src/runtime/mgc.go

    //    setting up sweep state and disabling the write barrier.
    //
    //    b. Start the world. From this point on, newly allocated objects
    //    are white, and allocating sweeps spans before use if necessary.
    //
    //    c. GC does concurrent sweeping in the background and in response
    //    to allocation. See description below.
    //
    // 5. When sufficient allocation has taken place, replay the sequence
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  9. pkg/controller/volume/persistentvolume/pv_controller.go

    	logger.V(4).Info("Synchronizing PersistentVolumeClaim", "PVC", klog.KObj(claim), "claimStatus", getClaimStatusForLogging(claim))
    
    	// Set correct "migrated-to" annotations on PVC and update in API server if
    	// necessary
    	newClaim, err := ctrl.updateClaimMigrationAnnotations(ctx, claim)
    	if err != nil {
    		// Nothing was saved; we will fall back into the same
    		// condition in the next call to this method
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    They involve handling source files, managing file dependencies, and generating reports.
    Gradle provides a robust API that simplifies these operations, enabling developers to perform necessary file tasks easily.
    
    [[sec:hard_coded_file_paths]]
    == Hardcoded paths and laziness
    
    It is best practice to *avoid* hardcoded paths in build scripts.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
Back to top