Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 1,316 for necessarily (0.22 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/GradleExecuter.java

         * See {@link #withCommandLineGradleOpts(String...)}.
         */
        GradleExecuter withCommandLineGradleOpts(Iterable<String> jvmOpts);
    
        /**
         * Adds JVM args that should be used by the build JVM. Does not necessarily imply that the build will be run in a separate process, or that a new build JVM will be started, only that the build
         * will run in a JVM that was started with the specified args.
         *
         * @param jvmOpts the JVM opts
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/schedule.go

    //	other values that depends on store1
    //	store2
    //	NilCheck that depends on store2
    //	other values that depends on store2
    //	...
    //
    // The order of non-store and non-NilCheck values are undefined
    // (not necessarily dependency order). This should be cheaper
    // than a full scheduling as done above.
    // Note that simple dependency order won't work: there is no
    // dependency between NilChecks and values like IsNonNil.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 15:53:17 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirCompilerFacility.kt

                shouldDeduplicateBuiltInSymbols = false,
    
                // Because the file to compile may be contained in a "common" multiplatform module, an `expect` declaration doesn't necessarily
                // have an obvious associated `actual` symbol. `shouldStubOrphanedExpectSymbols` generates stubs for such `expect` declarations.
                shouldStubOrphanedExpectSymbols = true,
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 08:42:45 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/math/DoubleMath.java

      }
    
      private static final double LN_2 = log(2);
    
      /**
       * Returns {@code true} if {@code x} represents a mathematical integer.
       *
       * <p>This is equivalent to, but not necessarily implemented as, the expression {@code
       * !Double.isNaN(x) && !Double.isInfinite(x) && x == Math.rint(x)}.
       */
      @GwtIncompatible // java.lang.Math.getExponent, com.google.common.math.DoubleUtils
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  5. guava/src/com/google/common/math/DoubleMath.java

      }
    
      private static final double LN_2 = log(2);
    
      /**
       * Returns {@code true} if {@code x} represents a mathematical integer.
       *
       * <p>This is equivalent to, but not necessarily implemented as, the expression {@code
       * !Double.isNaN(x) && !Double.isInfinite(x) && x == Math.rint(x)}.
       */
      @GwtIncompatible // java.lang.Math.getExponent, com.google.common.math.DoubleUtils
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolveConfigurationDependenciesBuildOperationIntegrationTest.groovy

      - org:leaf between versions 2.0 and 1.0""")
            op.result != null
            op.result.resolvedDependenciesCount == 2
        }
    
        // This documents the current behavior, not necessarily the smartest one.
        // FTR This behaves the same in 4.7, 4.8 and 4.9
        def "non fatal errors incur no resolution failure"() {
            def mod = mavenHttpRepo.module('org', 'a', '1.0')
            mod.pomFile << "corrupt"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/execution/plan/Node.java

            SHOULD_RUN,
            // Node is currently executing
            EXECUTING,
            // Node has been executed, and possibly failed, in an execution plan (not necessarily the current)
            EXECUTED,
            // Node cannot be executed because of a failed dependency
            FAILED_DEPENDENCY
        }
    
        public enum DependenciesState {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 24 13:30:48 UTC 2023
    - 22.7K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/DependencyResolveRulesIntegrationTest.groovy

        def setup() {
            settingsFile << """
                rootProject.name = 'test'
            """
        }
    
        /**
         * Test demonstrating current (not necessarily desired) behaviour
         */
        void "can replace project dependency with external dependency"() {
            mavenRepo.module("org.gradle.test", "a", '1.3').publish()
    
            createDirs("a", "b")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 28.2K bytes
    - Viewed (0)
  9. LICENSES/vendor/sigs.k8s.io/yaml/LICENSE

          use, offer to sell, sell, import, and otherwise transfer the Work,
          where such license applies only to those patent claims licensable
          by such Contributor that are necessarily infringed by their
          Contribution(s) alone or by combination of their Contribution(s)
          with the Work to which such Contribution(s) was submitted. If You
          institute patent litigation against any entity (including a
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:42:44 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  10. src/runtime/stubs.go

    // getcallerpc returns the program counter (PC) of its caller's caller.
    // getcallersp returns the stack pointer (SP) of its caller's caller.
    // The implementation may be a compiler intrinsic; there is not
    // necessarily code implementing this on every platform.
    //
    // For example:
    //
    //	func f(arg1, arg2, arg3 int) {
    //		pc := getcallerpc()
    //		sp := getcallersp()
    //	}
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 20.2K bytes
    - Viewed (0)
Back to top