Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 114 for changedTo (0.36 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/passes/propagate_quantize_type.cc

                                            op->getUsers().end());
    
        bool changed = false;
        for (auto& use : op->getUses()) {
          Operation* user_op = use.getOwner();
          int user_idx = use.getOperandNumber();
          if (!IsOpWithInt8TypeOperand(user_op)) continue;
          // If the next op is terminator, function type needs to be changed so
          // handle this case separately when propagating for function op is
          // added.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/DefaultProjectConnection.java

            for (Path changedPath : changedPaths) {
                if (!changedPath.isAbsolute()) {
                    throw new IllegalArgumentException(String.format("Changed path '%s' is not absolute", changedPath));
                }
                absolutePaths.add(changedPath.toString());
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:05 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/pointers/KtSymbolPointer.kt

     *  * for library symbols:
     *    * for function & property symbol if its signature was not changed
     *    * for local variable symbol if code block it was declared in was not changed
     *    * for class & type alias symbols if its qualified name was not changed
     *    * for package symbol if the package is still exists
     *
     * @see org.jetbrains.kotlin.analysis.api.lifetime.KaReadActionConfinementLifetimeToken
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/gradle_optimizations.adoc

    An *incremental build* is a build that avoids running tasks whose inputs have not changed since the previous build.
    Re-executing such tasks is unnecessary if they would only re-produce the same output.
    
    For incremental builds to work, tasks must define their inputs and outputs.
    Gradle will determine whether the input or outputs have changed at build time.
    If they have changed, Gradle will execute the task.
    Otherwise, it will skip execution.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part5_gradle_inc_builds.adoc

    For incremental builds to work, tasks must define their inputs and outputs. At build time, Gradle will determine whether the input or outputs have changed. If they have changed, Gradle will execute the task. Otherwise, it will skip execution.
    
    == Step 2. Updating Gradle Properties
    To better see incremental builds in action, we are going to switch the console output to verbose.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KaResolver.kt

    @OptIn(KaAnalysisApiInternals::class)
    public typealias KtCallResolver = KaResolver
    
    @OptIn(KaAnalysisApiInternals::class)
    public interface KaResolverMixIn : KaSessionMixIn {
        @Deprecated(
            message = "The API will be changed soon. Use 'resolveCallOld()' in a transit period",
            replaceWith = ReplaceWith("resolveCallOld()"),
        )
        public fun KtElement.resolveCall(): KaCallInfo? = resolveCallOld()
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheRemoteBuildScriptIntegrationTest.groovy

                task ok
            """
    
            configurationCache = newConfigurationCacheFixture()
        }
    
        @Issue("https://github.com/gradle/gradle/issues/23273")
        def "invalidates cache if remote script was changed"() {
            when:
            configurationCacheRun 'ok'
    
            then:
            configurationCache.assertStateStored()
    
            when:
            scriptFile << """
                print 'update remote script'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. doc/next/6-stdlib/99-minor/go/types/cl-577715.md

    <!-- CL 577715, CL 579076 -->
    By default, go/types now produces [Alias] type nodes for type aliases.
    This behavior can be controlled by the `GODEBUG` `gotypesalias` flag.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 21:30:00 UTC 2024
    - 230 bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/GradleSerializedValueSnapshot.java

                    // Different implementation - assume value has changed
                    return false;
                }
                if (Arrays.equals(serializedValue, newSnapshot.serializedValue)) {
                    // Same serialized content - value has not changed
                    return true;
                }
            }
            return false;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:46:00 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  10. doc/next/6-stdlib/99-minor/crypto/tls/67065.md

    Go 1.23 changed the behavior of [X509KeyPair] and [LoadX509KeyPair]
    to populate the [Certificate.Leaf] field of the returned [Certificate].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 20:49:22 UTC 2024
    - 226 bytes
    - Viewed (0)
Back to top