Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 277 for freeReg (0.17 sec)

  1. tensorflow/compiler/mlir/lite/tf_to_tfl_flatbuffer.h

    // * `export_to_mlir` enables exporting to MLIR text format, otherwise exported
    // in flat buffer. If the
    // * `session` pointer may provided, it will be used to freeze resource
    // variables. If the `saved_model_dir` directory path is provided, then the
    // `tf_saved_model.asset` ops will be freezed.
    Status ConvertTFExecutorToTFLOrFlatbuffer(
        mlir::ModuleOp module, bool export_to_mlir, toco::TocoFlags& toco_flags,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 08:30:24 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. tensorflow/c/kernels_experimental.h

    // the input and value tensors. It also accepts the copy callback provided by
    // pluggable vendor to do the copying of the tensors. The caller takes ownership
    // of the `source` and `dest` tensors and is responsible for freeing them with
    // TF_DeleteTensor. This function will return an error when the following
    // conditions are met:
    //   1. `validate_shape` is set to `true`
    //   2. The variable is initialized
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 07 14:44:39 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/permissions/permissions.kt

    @RequiresOptIn("Analysis should not be allowed to be run from the EDT, as otherwise it may cause IDE freezes.")
    public annotation class KaAllowAnalysisOnEdt
    
    /**
     * Allows [analyze][org.jetbrains.kotlin.analysis.api.analyze] to be called on the EDT in the given [action], which is normally not allowed.
     *
     * Analysis is not supposed to be invoked from the EDT, as it may cause freezes. Use at your own risk!
     */
    @KaAllowAnalysisOnEdt
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:22:24 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/health/LowMemoryDaemonExpirationStrategy.java

        private DaemonExpirationResult checkExpiry(OsMemoryStatusAspect.Available memory, long memoryThresholdInBytes) {
            long freeMem = memory.getFree();
            if (freeMem < memoryThresholdInBytes) {
                LOGGER.info("after free system {} memory ({}) fell below threshold of {}", memory.getName(), NumberUtil.formatBytes(freeMem), NumberUtil.formatBytes(memoryThresholdInBytes));
                return new DaemonExpirationResult(
                    GRACEFUL_EXPIRE,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 5K bytes
    - Viewed (0)
  5. testing/architecture-test/src/test/java/org/gradle/architecture/test/ProviderMigrationArchitectureTest.java

            .that(are(mutable_public_API_properties))
            .and().haveRawReturnType(assignableTo(FileCollection.class))
            .should(haveFileCollectionReturnType()));
    
        @ArchTest
        public static final ArchRule mutable_public_api_properties_should_not_use_text_resources = freeze(methods()
            .that(are(mutable_public_API_properties))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  6. testing/architecture-test/src/test/java/org/gradle/architecture/library/freeze/LineNumberIgnoringViolationStore.java

     * limitations under the License.
     */
    
    package org.gradle.architecture.library.freeze;
    
    import com.tngtech.archunit.lang.ArchRule;
    import com.tngtech.archunit.library.freeze.TextFileBasedViolationStore;
    import com.tngtech.archunit.library.freeze.ViolationStore;
    
    import java.util.List;
    import java.util.Properties;
    
    import static java.util.stream.Collectors.toList;
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2K bytes
    - Viewed (0)
  7. testing/architecture-test/src/test/resources/archunit.properties

    # limitations under the License.
    #
    
    # Changes the line number in all sources to 0, so line numbers are ignored and changes are easier to review
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 794 bytes
    - Viewed (0)
  8. testing/architecture-test/build.gradle.kts

        override fun asArguments(): Iterable<String> {
            val refreezeBoolean = refreeze.getOrElse(false)
            return listOf(
                "-Darchunit.freeze.store.default.path=${location.absolutePath}",
                "-Darchunit.freeze.refreeze=${refreezeBoolean}",
                "-Darchunit.freeze.store.default.allowStoreUpdate=${refreezeBoolean}"
            )
        }
    }
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  9. testing/architecture-test/src/test/java/org/gradle/architecture/test/ServiceScopeAnnotationValidationTest.java

    import static com.tngtech.archunit.lang.conditions.ArchPredicates.are;
    import static com.tngtech.archunit.lang.syntax.ArchRuleDefinition.classes;
    import static org.gradle.architecture.test.ArchUnitFixture.freeze;
    
    @AnalyzeClasses(packages = "org.gradle")
    public class ServiceScopeAnnotationValidationTest {
    
        private static final DescribedPredicate<JavaClass> special_classes = new DescribedPredicate<JavaClass>("special class") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. cmd/service.go

    	serviceStop                               // Stops the server.
    	serviceReloadDynamic                      // Reload dynamic config values.
    	serviceFreeze                             // Freeze all S3 API calls.
    	serviceUnFreeze                           // Un-Freeze previously frozen S3 API calls.
    	// Add new service requests here.
    )
    
    // Global service signal channel.
    var globalServiceSignalCh = make(chan serviceSignal)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Feb 28 07:02:14 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top