Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,726 for avoided (0.56 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/tasks/TaskStatistics.java

                int createdTaskCount = lazyTaskCreatedCount + eagerTaskCount;
                LOGGER.lifecycle("Task counts: created {}, avoided {}, %-lazy {}", createdTaskCount, lazyTaskCount-lazyTaskCreatedCount, 100-100*createdTaskCount/totalTaskCount);
    
                printTypeCounts("\nTask types that were created with the old API", typeCounts);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  2. gradlew

    #
    #   Important for patching:
    #
    #   (2) This script targets any POSIX shell, so it avoids extensions provided
    #       by Bash, Ksh, etc; in particular arrays are avoided.
    #
    #       The "traditional" practice of packing multiple parameters into a
    #       space-separated string is a well documented source of bugs and security
    #       problems, so this is (mostly) avoided, by progressively accumulating
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Dec 24 09:00:26 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  3. src/math/cmplx/sqrt.go

    //
    // If z = x + iy,  r = |z|, then
    //
    //                       1/2
    // Re w  =  [ (r + x)/2 ]   ,
    //
    //                       1/2
    // Im w  =  [ (r - x)/2 ]   .
    //
    // Cancellation error in r-x or r+x is avoided by using the
    // identity  2 Re w Im w  =  y.
    //
    // Note that -w is also a square root of z. The root chosen
    // is always in the right half plane and Im w has the same sign as y.
    //
    // ACCURACY:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 03:16:37 UTC 2020
    - 3K bytes
    - Viewed (0)
  4. cmd/kube-controller-manager/names/controller_names.go

    limitations under the License.
    */
    
    package names
    
    // Canonical controller names
    //
    // NAMING CONVENTIONS
    // 1. naming should be consistent across the controllers
    // 2. use of shortcuts should be avoided, unless they are well-known non-Kubernetes shortcuts
    // 3. Kubernetes' resources should be written together without a hyphen ("-")
    //
    // CHANGE POLICY
    // The controller names should be treated as IDs.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 19:25:10 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  5. pkg/fuzz/util.go

    func BaseCases(f test.Fuzzer) {
    	for _, c := range [][]byte{
    		{},
    		[]byte("."),
    		bytes.Repeat([]byte("."), 1000),
    	} {
    		f.Add(c)
    	}
    }
    
    // T Returns the underlying test.Failer. Should be avoided where possible; in oss-fuzz many functions do not work.
    func (h Helper) T() test.Failer {
    	return h.t
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 30 15:31:14 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  6. platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt

    #
    #   Important for patching:
    #
    #   (2) This script targets any POSIX shell, so it avoids extensions provided
    #       by Bash, Ksh, etc; in particular arrays are avoided.
    #
    #       The "traditional" practice of packing multiple parameters into a
    #       space-separated string is a well documented source of bugs and security
    #       problems, so this is (mostly) avoided, by progressively accumulating
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 13:43:33 UTC 2024
    - 11K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/file/archive/TarCopyAction.java

    import java.io.OutputStream;
    
    public class TarCopyAction implements CopyAction {
        /**
         * An arbitrary timestamp chosen to provide constant file timestamps inside the tar archive.
         *
         * The value 0 is avoided to circumvent certain limitations of languages and applications that do not work well with the zero value.
         * (Like older Java implementations and libraries)
         *
         * The date is January 2, 1970.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 08 14:16:53 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  8. testing/architecture-test/src/changes/archunit-store/stored.rules

    eCreateMigratingUnlocked(String,\ ConfigurationRole)\ or\ should\ call\ method\ RoleBasedConfigurationContainerInternal.maybeCreateResolvableDependencyScopeUnlocked(String),\ because\ Resolvable\ +\ dependency\ scope\ configurations\ should\ be\ avoided\ and\ we\ are\ migrating\ away\ from\ maybeCreate\ methods=configuration-factory-methods.txt...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/ComponentGraphResolveState.java

         */
        Set<String> getConfigurationNames();
    
        /**
         * Returns the configuration with the given name. A component does not necessarily define any configurations.
         * <p>
         * This method should be avoided if possible. Instead, use {@link GraphSelectionCandidates#getVariantByConfigurationName(String)},
         * which exposes configurations as a variant.
         * </p>
         */
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/CaptureOutputsAfterExecutionStep.java

            long snapshotOutputDuration = timer.getElapsedMillis();
    
            // The origin execution time is recorded as “work duration” + “output snapshotting duration”,
            // As this is _roughly_ the amount of time that is avoided by reusing the outputs,
            // which is currently the _only_ thing this value is used for.
            Duration originExecutionTime = result.getDuration().plus(Duration.ofMillis(snapshotOutputDuration));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:33 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top