Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 322 for hit (0.02 sec)

  1. pilot/pkg/model/jwks_resolver_test.go

    		}
    	}
    
    	// Verify mock openID discovery http://localhost:9999/.well-known/openid-configuration was called three times.
    	if got, want := ms.OpenIDHitNum, uint64(3); got != want {
    		t.Errorf("Mock OpenID discovery Hit number => expected %d but got %d", want, got)
    	}
    }
    
    func TestGetPublicKey(t *testing.T) {
    	r := NewJwksResolver(JwtPubKeyEvictionDuration, JwtPubKeyRefreshInterval, JwtPubKeyRefreshIntervalOnFailure, testRetryInterval)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/net/InetAddressesTest.java

        assertFalse(InetAddresses.isInetAddress("016.016.016.016"));
      }
    
      public void testForStringIPv4Input() throws UnknownHostException {
        String ipStr = "192.168.0.1";
        // Shouldn't hit DNS, because it's an IP string literal.
        InetAddress ipv4Addr = InetAddress.getByName(ipStr);
        assertEquals(ipv4Addr, InetAddresses.forString(ipStr));
        assertTrue(InetAddresses.isInetAddress(ipStr));
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  3. src/runtime/testdata/testprogcgo/racesig.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build unix
    // +build unix
    
    package main
    
    // Test that an external C thread that is calling malloc can be hit
    // with SIGCHLD signals. This used to fail when built with the race
    // detector, because in that case the signal handler would indirectly
    // call the C malloc function.
    
    /*
    #include <errno.h>
    #include <signal.h>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 01:46:05 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  4. pkg/credentialprovider/secrets/secrets.go

    	"k8s.io/kubernetes/pkg/credentialprovider"
    )
    
    // MakeDockerKeyring inspects the passedSecrets to see if they contain any DockerConfig secrets.  If they do,
    // then a DockerKeyring is built based on every hit and unioned with the defaultKeyring.
    // If they do not, then the default keyring is returned
    func MakeDockerKeyring(passedSecrets []v1.Secret, defaultKeyring credentialprovider.DockerKeyring) (credentialprovider.DockerKeyring, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 02 00:08:54 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/tests/device_compiler_serialize_test.cc

          /*expect_persistent_cache_use=*/false));
    
      // Reset the cluster numbering between sessions so we can get the same
      // cluster numbering.
      testing::ResetClusterSequenceNumber();
    
      // Run again but these should all hit in the persistent cache.
      listener()->ClearListenerHistory();
      for (int b = 1; b < 4; ++b) {
        TF_ASSERT_OK(ExecuteWithBatch(graph, b));
      }
      TF_ASSERT_OK(listener()->VerifyPersistentCacheUseListenerHistory(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 15 15:13:38 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  6. maven-slf4j-wrapper/src/main/java/org/apache/maven/logwrapper/LogLevelRecorder.java

    package org.apache.maven.logwrapper;
    
    import java.util.HashMap;
    import java.util.Map;
    
    import org.slf4j.event.Level;
    
    /**
     * Responsible for keeping state of whether the threshold of the --fail-on-severity flag has been hit.
     */
    public class LogLevelRecorder {
        private static final Map<String, Level> ACCEPTED_LEVELS = new HashMap<>();
    
        static {
            ACCEPTED_LEVELS.put("WARN", Level.WARN);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/operations/configuration/IsolatedProjectsSettingsBuildOperationsIntegrationTest.groovy

            then:
            isolatedProjectsEvents().enabled == [enabled]
            configurationCacheEvents().enabled == [GradleContextualExecuter.configCache || enabled]
    
            // Ensure events are produced on CC hit as well
            when:
            succeeds("help", "-Dorg.gradle.unsafe.isolated-projects=$enabled")
            then:
            isolatedProjectsEvents().enabled == [enabled]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 12:57:53 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. pilot/pkg/model/typed_xds_cache.go

    		monitoring.WithEnabled(enableStats),
    	)
    
    	xdsCacheHits             = xdsCacheReads.With(typeTag.Value("hit"))
    	xdsCacheMisses           = xdsCacheReads.With(typeTag.Value("miss"))
    	xdsCacheEvictionsOnClear = xdsCacheEvictions.With(typeTag.Value("clear"))
    	xdsCacheEvictionsOnSize  = xdsCacheEvictions.With(typeTag.Value("size"))
    )
    
    func hit() {
    	xdsCacheHits.Increment()
    }
    
    func miss() {
    	xdsCacheMisses.Increment()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 05:26:03 UTC 2024
    - 11K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/filters/watch_termination.go

    			handler.ServeHTTP(w, req)
    			return
    		}
    
    		if err := wg.Add(1); err != nil {
    			// When apiserver is shutting down, signal clients to retry
    			// There is a good chance the client hit a different server, so a tight retry is good for client responsiveness.
    			waitGroupWriteRetryAfterToResponse(w)
    			return
    		}
    
    		// attach ServerShutdownSignal to the watch request so that the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 15:49:49 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/tests/device_compiler_serialize_options_test.cc

      TF_ASSERT_OK(AlterPersistentCacheEntryHloModuleNames(
          tensorflow::testing::TmpDir(), "my_test_prefix"));
    
      // Run again and these should all hit in the persistent cache despite having
      // altered the persistent cache entries' HLO modules (disabled strict
      // signature checks).
      listener()->ClearListenerHistory();
      for (int b = 1; b < 4; ++b) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 15 15:13:38 UTC 2023
    - 2.9K bytes
    - Viewed (0)
Back to top