Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 45 for RESTORED (0.32 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/host_runtime/tfrt_ops.td

        Arg<TF_StrTensor, [{shape {N}.  The names of the tensors to be restored. This is tensor name in the model.}]>:$tensor_names,
        Arg<TF_StrTensor, [{shape {N}.  The slice specs of the tensors to be restored.
    Empty strings indicate that they are non-partitioned tensors.}]>:$shape_and_slices,
        // VarHandles for restored tensors.
        Variadic<TF_Tensor>:$var_handles,
        // Data types for restored tensor.
        TypeArrayAttr: $restored_dtypes,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 20:44:15 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/normalization/internal/DefaultRuntimeClasspathNormalizationTest.groovy

            when:
            def normalization = new DefaultRuntimeClasspathNormalization()
            then:
            normalization.computeCachedState() == null
        }
    
        def "file ignores can be restored from the cached state"() {
            given:
            def originalNormalization = new DefaultRuntimeClasspathNormalization()
            originalNormalization.ignore(ignoredPattern)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 22 13:17:59 UTC 2021
    - 7K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/code/UserCodeApplicationContext.java

             */
            <T> Action<T> reapplyLater(Action<T> action);
    
            /**
             * Runs an action that represents some deferred execution of the user code. While the action is running, the details of this application are restored.
             */
            void reapply(Runnable runnable);
    
            /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 06:02:18 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/symbols/AbstractSymbolRestoreFromDifferentModuleTest.kt

                appendLine()
                appendLine("Restored in ${restoreAtModule.moduleDescription}:")
                appendLine(prettyRenderedRestored ?: NOT_RESTORED)
            }
            testServices.assertions.assertEqualsToTestDataFileSibling(actualPretty, extension = ".pretty.txt")
        }
    
        companion object {
            private const val NOT_RESTORED = "<NOT RESTORED>"
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache-base/src/main/kotlin/org/gradle/internal/cc/base/services/ConfigurationCacheEnvironmentChangeTracker.kt

     *
     * The class can operate in two modes. First is the tracking mode when all environment-modifying operations are stored
     * and the list of the operations can be retrieved as the CachedEnvironmentState object. This mode is intended for the
     * builds with the configuration phase. The second mode applies the restored state to the environment and doesn't
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/pointers/KtSymbolPointer.kt

     * To pass the symbol from one read action to another the KtSymbolPointer should be used
     *
     * We can restore the symbol
     *  * for symbol which came from Kotlin source it will be restored based on [com.intellij.psi.SmartPsiElementPointer]
     *  * restoring symbols which came from Java source is not supported yet
     *  * for library symbols:
     *    * for function & property symbol if its signature was not changed
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/JavaIncrementalCompilationWithCachingIntegrationTest.groovy

            return CompiledLanguage.JAVA
        }
    
        @Override
        def setup() {
            buildFile << """
                ${mavenCentralRepository()}
            """
        }
    
        def "incremental state is restored from the build cache"() {
            source("class A {}", "class B {}")
            withBuildCache().run language.compileTaskName
            def cachedBuild = outputs.snapshot {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  8. docs/bucket/lifecycle/DESIGN.md

            },
    ```
    
    When a transitioned object is restored temporarily to local MinIO instance via PostRestoreObject API, the object data is copied back from the remote tier, and additional metadata for the restored object is maintained as referenced below. Once the restore period expires, the local copy of the object is removed by the scanner during its periodic runs.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  9. src/cmd/gofmt/doc.go

    	-w
    		Do not print reformatted sources to standard output.
    		If a file's formatting is different from gofmt's, overwrite it
    		with gofmt's version. If an error occurred during overwriting,
    		the original file is restored from an automatic backup.
    
    Debugging support:
    
    	-cpuprofile filename
    		Write cpu profile to the specified file.
    
    The rewrite rule specified with the -r flag must be a string of the form:
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/config/LoggingSystem.java

     * limitations under the License.
     */
    
    package org.gradle.internal.logging.config;
    
    /**
     * Some configurable logging system, whose state can be snapshot, mutated and restored.
     */
    public interface LoggingSystem {
        /**
         * Snapshots the current configuration state of this logging system.
         */
        Snapshot snapshot();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1K bytes
    - Viewed (0)
Back to top