Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 440 for persists (0.28 sec)

  1. cmd/bucket-replication.go

    		return
    	}
    	rd.Replicate = newReset && oi.ModTime.Before(resetBeforeDate)
    	return
    }
    
    const resyncTimeInterval = time.Minute * 1
    
    // PersistToDisk persists in-memory resync metadata stats to disk at periodic intervals
    func (s *replicationResyncer) PersistToDisk(ctx context.Context, objectAPI ObjectLayer) {
    	resyncTimer := time.NewTimer(resyncTimeInterval)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/cli-runtime/pkg/resource/helper.go

    	NamespaceScoped bool
    	// If true, then use server-side dry-run to not persist changes to storage
    	// for verbs and resources that support server-side dry-run.
    	//
    	// Note this should only be used against an apiserver with dry-run enabled,
    	// and on resources that support dry-run. If the apiserver or the resource
    	// does not support dry-run, then the change will be persisted to storage.
    	ServerDryRun bool
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 26 03:45:13 UTC 2022
    - 10.5K bytes
    - Viewed (0)
  3. src/database/sql/sql.go

    	hitEOF bool
    
    	// lastcols is only used in Scan, Next, and NextResultSet which are expected
    	// not to be called concurrently.
    	lastcols []driver.Value
    
    	// raw is a buffer for RawBytes that persists between Scan calls.
    	// This is used when the driver returns a mismatched type that requires
    	// a cloning allocation. For example, if the driver returns a *string and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  4. api/openapi-spec/swagger.json

    provisioning through\n   a PersistentVolumeClaim (see EphemeralVolumeSource for more\n   information on the connection between this volume type\n   and PersistentVolumeClaim).\n\nUse PersistentVolumeClaim or one of the vendor-specific APIs for volumes that persist for longer than the lifecycle of an individual pod.\n\nUse CSI for light-weight local ephemeral volumes if the CSI driver is meant to be used that way - see the documentation of the driver for more information.\n\nA pod can use both types of ephemeral...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache-base/src/main/kotlin/org/gradle/internal/cc/base/services/ConfigurationCacheEnvironmentChangeTracker.kt

                    // the next run from cache.
                    mutatedSystemProperties[key] = SystemPropertyRemove(key)
                } else {
                    // If the key is not a string, it can only affect properties that were set by the build logic. There is
    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. tensorflow/compiler/jit/device_compiler_test.cc

      const XlaCompiler::CompilationResult* compilation_result = nullptr;
      xla::LocalExecutable* xla_executable = nullptr;
    
      auto persistor = down_cast<MockXlaDeviceExecutablePersistor*>(
          xla_device_compiler->persistor());
      TF_ASSERT_OK_AND_ASSIGN(auto signature, Signature::Build(fn, args));
      EXPECT_CALL(*persistor,
                  TryToPersistExecutable(Signature::Hash()(signature),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  7. guava/src/com/google/common/util/concurrent/RateLimiter.java

       *
       * @param permits the number of permits to acquire
       * @return {@code true} if the permits were acquired, {@code false} otherwise
       * @throws IllegalArgumentException if the requested number of permits is negative or zero
       * @since 14.0
       */
      public boolean tryAcquire(int permits) {
        return tryAcquire(permits, 0, MICROSECONDS);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/util/concurrent/RateLimiter.java

       *
       * @param permits the number of permits to acquire
       * @return {@code true} if the permits were acquired, {@code false} otherwise
       * @throws IllegalArgumentException if the requested number of permits is negative or zero
       * @since 14.0
       */
      public boolean tryAcquire(int permits) {
        return tryAcquire(permits, 0, MICROSECONDS);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  9. common/scripts/check_clean_repo.sh

        [ -n "${JOB_NAME}" ] && [ -n "${BUILD_ID}" ]
        IN_PROW="$?"
    
        # Don't persist large diffs (30M+) on CI
        LARGE_FILE="$(find "${ARTIFACTS}" -name "${PATCH_NAME}" -type 'f' -size +30M)"
        if [ "${IN_PROW}" -eq 0 ] && [ -n "${LARGE_FILE}" ]; then
          rm "${PATCH_OUT}"
          echo "WARNING: patch file was too large to persist ($(du -h "${PATCH_OUT}"))"
          return 0
        fi
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 11 22:57:12 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. test/fixedbugs/issue50372.go

            for i, j, k = range s {} // ERROR "range clause permits at most two iteration variables"
            for i, j, k, l = range s {} // ERROR "range clause permits at most two iteration variables"
    }
    
    func _(s chan int) {
            var i, j, k, l int
            _, _, _, _ = i, j, k, l
    
            for range s {}
            for i = range s {}
            for i, j = range s {} // ERROR "range over .* permits only one iteration variable"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 959 bytes
    - Viewed (0)
Back to top