Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 440 for persists (0.9 sec)

  1. pkg/kubelet/checkpointmanager/checkpoint_manager.go

    	UnmarshalCheckpoint(blob []byte) error
    	VerifyChecksum() error
    }
    
    // CheckpointManager provides the interface to manage checkpoint
    type CheckpointManager interface {
    	// CreateCheckpoint persists checkpoint in CheckpointStore. checkpointKey is the key for utilstore to locate checkpoint.
    	// For file backed utilstore, checkpointKey is the file name to write the checkpoint data.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 24 13:51:34 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  2. operator/pkg/controller/istiocontrolplane/errdict.go

    )
    
    // General boilerplate.
    const (
    	// Boilerplate messages applicable all over the code base.
    
    	// Action
    	actionIfErrPersistsCheckBugList            = "If this error persists, " + actionCheckBugList
    	actionIfErrSureCorrectConfigContactSupport = "If you are sure your configuration is correct, " + actionCheckBugList
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 13:56:46 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. cluster/addons/metrics-server/README.md

      - Horizontal Pod Autoscaler not working
      - `kubectl top` not working (starting with Kubernetes 1.10)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 18 13:04:48 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/execution/BuildResumptionDataRepository.java

     * invocations of Maven.
     */
    public interface BuildResumptionDataRepository {
        /**
         * Persists any data needed to resume the build at a later point in time, using a new Maven invocation. This method
         * may also decide it is not needed or meaningful to persist such data, and return <code>false</code> to indicate
         * so.
         *
         * @param rootProject The root project that is being built.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 22 13:26:01 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/execution/DefaultBuildResumptionDataRepository.java

    import java.util.stream.Stream;
    
    import org.apache.maven.project.MavenProject;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    /**
     * This implementation of {@link BuildResumptionDataRepository} persists information in a properties file. The file is
     * stored in the build output directory under the Maven execution root.
     */
    @Named
    @Singleton
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 06 08:51:18 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  6. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/source/ExtractDslMetaDataTask.groovy

    import org.gradle.api.tasks.PathSensitivity
    import org.gradle.api.tasks.SourceTask
    import org.gradle.api.tasks.TaskAction
    
    /**
     * Extracts meta-data from the Groovy and Java source files which make up the Gradle API. Persists the meta-data to a file
     * for later use in generating documentation for the DSL, such as by {@link gradlebuild.docs.dsl.docbook.AssembleDslDocTask}.
     */
    @CacheableTask
    abstract class ExtractDslMetaDataTask extends SourceTask {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 08 12:45:57 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  7. .github/bot_config.yml

           * Try adding the CUDA, CUPTI, and cuDNN installation directories to the $LD_LIBRARY_PATH environment variable.
           * Refer [linux setup guide](https://www.tensorflow.org/install/gpu#linux_setup).
         * If error still persists then, apparently your CPU model does not support AVX instruction sets.
           * Refer [hardware requirements](https://www.tensorflow.org/install/pip#hardware-requirements).
       
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 04:55:57 UTC 2024
    - 4K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/models/BuildTreeModelSideEffectStore.kt

    import org.gradle.internal.serialize.graph.runReadOperation
    import org.gradle.internal.serialize.graph.runWriteOperation
    import java.io.Closeable
    import java.util.concurrent.CopyOnWriteArrayList
    
    
    /**
     * Persists side effects observed during build action execution
     * and restores them on a subsequent load from the cache.
     *
     * @see BuildTreeModelSideEffect
     */
    internal
    class BuildTreeModelSideEffectStore(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/telemetry/counter/counter.go

    //
    // If the telemetry mode is "off", Open is a no-op. Otherwise, it opens the
    // counter file on disk and starts to mmap telemetry counters to the file.
    // Open also persists any counters already created in the current process.
    //
    // Programs using telemetry should call Open exactly once.
    func Open() {
    	counter.Open()
    }
    
    // CountFlags creates a counter for every flag that is set
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 18:02:34 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. tensorflow/cc/saved_model/metrics_test.cc

    #include "tensorflow/core/platform/test.h"
    #include "tensorflow/core/protobuf/fingerprint.pb.h"
    #include "tsl/platform/statusor.h"
    
    namespace tensorflow {
    namespace metrics {
    // The value of the cells for each metric persists across tests.
    
    TEST(MetricsTest, TestSavedModelWrite) {
      EXPECT_EQ(SavedModelWriteApi("foo").value(), 0);
      SavedModelWriteApi("foo").IncrementBy(1);
      EXPECT_EQ(SavedModelWriteApi("foo").value(), 1);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 18 23:43:59 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top