Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for practice (0.15 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    However, if a dependency is compromised in a repository, it's likely its checksum will be too, so it's a good practice to get the checksum from a different place, usually the website of the library itself.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  2. src/runtime/mgcpacer.go

    	gcPercent atomic.Int32
    
    	// memoryLimit is the soft memory limit in bytes.
    	//
    	// Initialized from GOMEMLIMIT. GOMEMLIMIT=off is equivalent to MaxInt64
    	// which means no soft memory limit in practice.
    	//
    	// This is an int64 instead of a uint64 to more easily maintain parity with
    	// the SetMemoryLimit API, which sets a maximum at MaxInt64. This value
    	// should never be negative.
    	memoryLimit atomic.Int64
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  3. src/runtime/malloc.go

    	// starts placing mmap'd regions at addresses that are
    	// significantly below 48 bits, so even if it's possible to
    	// exceed Go's 48 bit limit, it's extremely unlikely in
    	// practice.
    	//
    	// On 32-bit platforms, we accept the full 32-bit address
    	// space because doing so is cheap.
    	// mips32 only has access to the low 2GB of virtual memory, so
    	// we further limit it to 31 bits.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    	// in the API server.
    	//
    	// Conceptually, this object belongs into the scheduler framework
    	// where it might get shared by different plugins. But in practice,
    	// it is currently only used by dynamic provisioning and thus
    	// managed entirely here.
    	schedulingCtx *resourcev1alpha2.PodSchedulingContext
    
    	// selectedNode is set if (and only if) a node has been selected.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    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.
    
    In addition to avoiding hardcoded paths, Gradle encourages laziness in its 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)
  6. src/runtime/mgcmark.go

    	//
    	// 2) Finalizer specials (which are not in the garbage
    	// collected heap) are roots. In practice, this means the fn
    	// field must be scanned.
    	//
    	// Objects with weak handles have only one invariant related
    	// to this function: weak handle specials (which are not in the
    	// garbage collected heap) are roots. In practice, this means
    	// the handle field must be scanned. Note that the value the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  7. src/time/time.go

    // The [Time.Add] method adds a Time and a Duration, producing a Time.
    //
    // The zero value of type Time is January 1, year 1, 00:00:00.000000000 UTC.
    // As this time is unlikely to come up in practice, the [Time.IsZero] method gives
    // a simple way of detecting a time that has not been initialized explicitly.
    //
    // Each time has an associated [Location]. The methods [Time.Local], [Time.UTC], and Time.In return a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  8. docs/changelogs/changelog_3x.md

        to the call and can adjust all call timeouts. Note that this change is
        source-incompatible for code that implements the `Chain` interface.
        We don't expect this to be a problem in practice!
    
     *  **OkHttp has an experimental new API for tracking metrics.** The new
        `EventListener` API is designed to help developers monitor HTTP requests'
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/AlignmentIntegrationTest.groovy

                                module("org.springframework:spring-platform:1.0") // This is not good practice, but we keep this to describe the current behavior.
                                constraint("org.apache.groovy:core:2.5")
                                constraint("org.apache.groovy:json:2.5")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 59.6K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/util/concurrent/Futures.java

      // introduce a very specific kind of data-race. And given the other operations performed by these
      // methods that involve volatile read/write operations, in practice there is no issue. Also, the
      // way in such a visibility issue would surface is most likely as a failure of cancel() to
      // propagate to the input. Cancellation propagation is fundamentally racy so this is fine.
      //
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 59.6K bytes
    - Viewed (0)
Back to top