Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 282 for frequently (0.27 sec)

  1. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-sources.jar

    return org.hamcrest.core.IsNull.<T>nullValue(type); } /** * A shortcut to the frequently used <code>not(nullValue())</code>. * <p/> * For example: * <pre>assertThat(cheese, is(notNullValue()))</pre> * instead of: * <pre>assertThat(cheese, is(not(nullValue())))</pre> */ public static org.hamcrest.Matcher<java.lang.Object> notNullValue() { return org.hamcrest.core.IsNull.notNullValue(); } /** * A shortcut to the frequently used <code>not(nullValue(X.class)). Accepts a * single dummy argument to facilitate...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 31.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/device_compilation_profiler_test.cc

      EXPECT_TRUE(
          profiler->ShouldCompileCluster(function, DeviceCompileMode::kStrict, 0));
    
      // Once a cluster has gone megamorphic, it remains megamorphic (even though
      // it's being executed more frequently now) and shouldn't be compiled again.
      for (int i = 0; i < kCompileThreshold * kMinExecutionsPerCompile + 1; ++i) {
        profiler->RegisterExecution(function);
      }
    
      EXPECT_FALSE(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Dec 22 21:06:33 UTC 2022
    - 8.7K bytes
    - Viewed (0)
  3. cluster/gce/gci/README.md

      * To update the images, using image in the same channel is preferred. Keep in
        mind, 69 is the first LTS image. Before that, COS only has dev, beta and stable
        images. That is why stable images are used quite frequently in current testing.
        For now, images should slowly migrate from stable to LTS if possible. For
        testing using dev or beta, we need to consider the original intention and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 14:55:40 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/SystemProperties.java

    import javax.annotation.Nullable;
    import java.io.File;
    import java.util.Collections;
    import java.util.HashMap;
    import java.util.HashSet;
    import java.util.Map;
    import java.util.Set;
    
    
    /**
     * Provides access to frequently used system properties.
     */
    public class SystemProperties {
        private static final Set<String> STANDARD_PROPERTIES;
    
        static {
            Set<String> standardProperties = new HashSet<String>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modfetch/zip_sum_test/zip_sum_test.go

    // includes a large number of real modules. The test downloads these modules
    // in direct mode and verifies the zip files.
    //
    // This test is very slow, and it depends on outside modules that change
    // frequently, so this is a manual test. To enable it, pass the -zipsum flag.
    package zip_sum_test
    
    import (
    	"context"
    	"crypto/sha256"
    	"encoding/csv"
    	"encoding/hex"
    	"flag"
    	"fmt"
    	"internal/testenv"
    	"io"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 18 19:33:59 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  6. src/html/template/content.go

    	// A URL like `javascript:checkThatFormNotEditedBeforeLeavingPage()`
    	// from a trusted source should go in the page, but by default dynamic
    	// `javascript:` URLs are filtered out since they are a frequently
    	// exploited injection vector.
    	//
    	// Use of this type presents a security risk:
    	// the encapsulated content should come from a trusted source,
    	// as it will be included verbatim in the template output.
    	URL string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 01 14:30:25 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  7. platforms/core-execution/workers/src/test/groovy/org/gradle/workers/internal/WorkerDaemonClientsManagerTest.groovy

            def shouldBeNull = manager.reserveIdleClient(options)
    
            then:
            1 * client.stop()
            shouldBeNull == null
        }
    
        def "prefers to stop less frequently used idle clients when releasing memory"() {
            def client1 = Mock(WorkerDaemonClient) { _ * getUses() >> 5 }
            def client2 = Mock(WorkerDaemonClient) { _ * getUses() >> 1 }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:56:11 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  8. docs/bucket/lifecycle/README.md

    transition feature. This will allow transitioning of older objects to a different cluster or the public cloud by setting up transition rules in the bucket lifecycle configuration. This feature enables applications to optimize storage costs by moving less frequently accessed data to a cheaper storage without compromising accessibility of data.
    
    To transition objects in a bucket to a destination bucket on a different cluster, applications need to specify a transition tier defined on MinIO instead of...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Aug 26 07:33:25 UTC 2023
    - 9K bytes
    - Viewed (0)
  9. tools/bug-report/pkg/kubectlcmd/kubectlcmd.go

    	"istio.io/istio/tools/bug-report/pkg/common"
    )
    
    const (
    	// The default number of in-flight requests allowed for the runner.
    	defaultActiveRequestLimit = 32
    
    	// reportInterval controls how frequently to output progress reports on running tasks.
    	reportInterval = 30 * time.Second
    )
    
    type Runner struct {
    	Client kube.CLIClient
    
    	// Used to limit the number of concurrent tasks.
    	taskSem chan struct{}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 16 01:18:03 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  10. pkg/kubelet/metrics/collectors/resource_metrics.go

    	ch <- podMemoryUsageDesc
    	ch <- podSwapUsageDesc
    	ch <- resourceScrapeResultDesc
    	ch <- resourceScrapeErrorResultDesc
    }
    
    // CollectWithStability implements metrics.StableCollector
    // Since new containers are frequently created and removed, using the Gauge would
    // leak metric collectors for containers or pods that no longer exist.  Instead, implement
    // custom collector in a way that only collects metrics for active containers.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 08 07:13:37 UTC 2023
    - 9.2K bytes
    - Viewed (2)
Back to top