Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 145 for Avery (0.06 sec)

  1. cmd/bucket-handlers.go

    // ----------
    // Places an Object Lock configuration on the specified bucket. The rule
    // specified in the Object Lock configuration will be applied by default
    // to every new object placed in the specified bucket.
    func (api objectAPIHandlers) PutBucketObjectLockConfigHandler(w http.ResponseWriter, r *http.Request) {
    	ctx := newContext(r, w, "PutBucketObjectLockConfig")
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    [[working_with_files]]
    = Working With Files
    
    File operations are fundamental to nearly every Gradle build.
    They involve handling source files, managing file dependencies, and generating reports.
    Gradle provides a robust API that simplifies these operations, enabling developers to perform necessary file tasks easily.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  3. pkg/controller/podautoscaler/horizontal.go

    	// Requests are always added to queue with resyncPeriod delay.  If there's already
    	// request for the HPA in the queue then a new request is always dropped. Requests spend resync
    	// interval in queue so HPAs are processed every resync interval.
    	a.queue.AddRateLimited(key)
    
    	// Register HPA in the hpaSelectors map if it's not present yet. Attaching the Nothing selector
    	// that does not select objects. The actual selector is going to be updated
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  4. pkg/proxy/iptables/proxier.go

    			natRules.Write(args)
    		}
    	}
    
    	// Delete chains no longer in use. Since "iptables-save" can take several seconds
    	// to run on hosts with lots of iptables rules, we don't bother to do this on
    	// every sync in large clusters. (Stale chains will not be referenced by any
    	// active rules, so they're harmless other than taking up memory.)
    	deletedChains := 0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  5. guava/src/com/google/common/cache/CacheBuilder.java

       *
       * <p>When eviction is necessary, the cache evicts entries that are less likely to be used again.
       * For example, the cache may evict an entry because it hasn't been used recently or very often.
       *
       * <p>If {@code maximumSize} is zero, elements will be evicted immediately after being loaded into
       * cache. This can be useful in testing, or to disable caching temporarily.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/internal/http2/HttpOverHttp2Test.kt

      @ParameterizedTest
      @ArgumentsSource(ProtocolParamProvider::class)
      fun pingsTransmitted(
        protocol: Protocol,
        mockWebServer: MockWebServer,
      ) {
        setUp(protocol, mockWebServer)
        // Ping every 500 ms, starting at 500 ms.
        client =
          client.newBuilder()
            .pingInterval(Duration.ofMillis(500))
            .build()
    
        // Delay the response to give 1 ping enough time to be sent and replied to.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    You might want to trust some artifacts more than others.
    For example, it's legitimate to think that artifacts produced in your company and found in your internal repository only are safe, but you want to check every external component.
    
    NOTE: This is a typical _company policy_.
    In practice, **nothing** prevents your internal repository from being compromised, so it's a good idea to check your internal artifacts too!
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    [[directory_build_cache_retention_deprecated]]
    ==== Deprecated setting retention period directly on local build cache ====
    
    In previous versions, cleanup of the local build cache entries ran every 24 hours, and this interval could not be configured.
    The retention period was configured using `buildCache.local.removeUnusedEntriesAfterDays`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  9. src/go/build/build.go

    // which will also use the go command.
    // Invoking the go command here is not very efficient in that it computes information
    // about the requested package and all dependencies and then only reports about the requested package.
    // Then we reinvoke it for every dependency. But this is still better than not working at all.
    // See golang.org/issue/26504.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  10. pkg/proxy/ipvs/proxier.go

    	// This lets us run specific logic that's required only during proxy startup.
    	// For eg: it enables us to update weights of existing destinations only on startup
    	// saving us the cost of querying and updating real servers during every sync.
    	initialSync bool
    	// endpointSlicesSynced, and servicesSynced are set to true when
    	// corresponding objects are synced after startup. This is used to avoid updating
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
Back to top