Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 322 for hit (3.03 sec)

  1. plugin/pkg/admission/gc/gc_admission.go

    	// the _OWNER_
    	newBlockingRefs := newBlockingOwnerDeletionRefs(attributes.GetObject(), attributes.GetOldObject())
    	if len(newBlockingRefs) == 0 {
    		return nil
    	}
    
    	// There can be a case where a restMapper tries to hit discovery endpoints and times out if the network is inaccessible.
    	// This can prevent creating the pod to run the network to be able to do discovery and it appears as a timeout, not a rejection.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 05 02:24:38 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  2. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/DerReader.kt

       * have reached a limit, this returns [END_OF_DATA].
       */
      internal fun readHeader(): DerHeader {
        require(peekedHeader == null)
    
        // We've hit a local limit.
        if (byteCount == limit) return END_OF_DATA
    
        // We've exhausted the source stream.
        if (limit == -1L && source.exhausted()) return END_OF_DATA
    
        // Read the tag.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  3. platforms/jvm/toolchains-jvm-shared/src/main/java/org/gradle/jvm/toolchain/internal/install/DefaultJdkCacheDirectory.java

                    } catch (AtomicMoveNotSupportedException e) {
                        // In theory, we should never hit this code, but some more obscure file systems or OSes may not support atomic moves
                        LOGGER.info("Failed to use an atomic move for unpacked JDK from {} to {}. Will try to copy instead.", unpackedRoot.dir, installFolder, e);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 23:47:49 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. pkg/kubelet/lifecycle/predicate.go

    				}
    			}
    			podCopy.Spec.Containers[i].Resources.Requests[rName] = rQuant
    		}
    	}
    	return podCopy
    }
    
    // InsufficientResourceError is an error type that indicates what kind of resource limit is
    // hit and caused the unfitting failure.
    type InsufficientResourceError struct {
    	ResourceName v1.ResourceName
    	Requested    int64
    	Used         int64
    	Capacity     int64
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 19 00:47:50 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  5. src/compress/lzw/writer.go

    		// input) is always a literal code.
    		code, p = uint32(p[0]), p[1:]
    	}
    loop:
    	for _, x := range p {
    		literal := uint32(x)
    		key := code<<8 | literal
    		// If there is a hash table hit for this key then we continue the loop
    		// and do not emit a code yet.
    		hash := (key>>12 ^ key) & tableMask
    		for h, t := hash, w.table[hash]; t != invalidEntry; {
    			if key == t>>12 {
    				code = t & maxCode
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  6. pkg/webhooks/validation/controller/controller.go

    			Annotations: map[string]string{
    				// Add always-reject annotation. For now, we are invalid for two reasons: missing `spec.servers`, and this
    				// annotation. In the future, the CRD will reject a missing `spec.servers` before we hit the webhook, so we will
    				// only have that annotation. For backwards compatibility, we keep both methods for some time.
    				constants.AlwaysReject: "true",
    			},
    		},
    		Spec: networking.Gateway{},
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 16:52:19 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/authentication/token/cache/cached_token_authenticator.go

    	doneAuthenticating := stats.authenticating(ctx)
    
    	auds, audsOk := authenticator.AudiencesFrom(ctx)
    
    	key := keyFunc(a.hashPool, auds, token)
    	if record, ok := a.cache.get(key); ok {
    		// Record cache hit
    		doneAuthenticating(true)
    		return record
    	}
    
    	// Record cache miss
    	doneBlocking := stats.blocking(ctx)
    	defer doneBlocking()
    	defer doneAuthenticating(false)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 16:16:51 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/process/internal/DefaultExecHandleSpec.groovy

            when:
            execHandle.start()
            def result = execHandle.waitForFinish()
    
            then:
            result
            //the timeout does not hit
        }
    
        @Ignore //not yet implemented
        void "exec handle can wait with timeout"() {
            given:
            def execHandle = handle().args(args(SlowApp.class)).setTimeout(1).build()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 23 03:44:52 UTC 2021
    - 14.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/rsc.io/markdown/inline.go

    each node contains
    
     - type of delimiter [ ![ _ *
     - number of delimiters
     - active or not
     - potential opener, potential closer, or obth
    
    when a ] is hit, call look for link or image
    when end is hit, call process emphasis
    
    look for link or image:
    
    	find topmost [ or ![
    	if none, emit literal ]
    	if its inactive, remove and emit literal ]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  10. src/net/dnsclient_unix.go

    	for _, fqdn := range conf.nameList(name) {
    		p, server, err = r.tryOneName(ctx, conf, fqdn, qtype)
    		if err == nil {
    			break
    		}
    		if nerr, ok := err.(Error); ok && nerr.Temporary() && r.strictErrors() {
    			// If we hit a temporary error with StrictErrors enabled,
    			// stop immediately instead of trying more names.
    			break
    		}
    	}
    	if err == nil {
    		return p, server, nil
    	}
    	if err, ok := err.(*DNSError); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 24.5K bytes
    - Viewed (0)
Back to top