Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 148 for resumption (0.43 sec)

  1. src/html/template/clone_test.go

    				if err := tmpl.Execute(io.Discard, "data"); err != nil {
    					panic(err)
    				}
    			}
    		}()
    	}
    	wg.Wait()
    }
    
    func TestTemplateCloneLookup(t *testing.T) {
    	// Template.escape makes an assumption that the template associated
    	// with t.Name() is t. Check that this holds.
    	tmpl := Must(New("x").Parse("a"))
    	tmpl = Must(tmpl.Clone())
    	if tmpl.Lookup(tmpl.Name()) != tmpl {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:48:16 UTC 2022
    - 8K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/slog/slog.go

    					// But we might be able to learn enough to make a decision.
    					if types.AssignableTo(stringType, t) {
    						// t must be an empty interface. So it can also be an Attr.
    						// We don't know enough to make an assumption.
    						pos = unknown
    						continue
    					} else if attrType != nil && types.AssignableTo(attrType, t) {
    						// Assume it is an Attr.
    						pos = key
    						continue
    					}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/cmd/server/testing/testserver.go

    // binaries with the -trimpath option so the simple approach fails however we
    // can consult environment variables to derive the path.
    //
    // The approach taken here works for both go test and bazel on the assumption
    // that if and only if trimpath is passed, we are running under bazel.
    func pkgPath(t Logger) (string, error) {
    	_, thisFile, _, ok := runtime.Caller(0)
    	if !ok {
    		return "", fmt.Errorf("failed to get current file")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 9K bytes
    - Viewed (1)
  4. staging/src/k8s.io/apiserver/pkg/authentication/token/cache/cached_token_authenticator.go

    	ok   bool
    	err  error
    
    	// this cache assumes token authn has no side-effects or temporal dependence.
    	// neither of these are true for audit annotations set via AddAuditAnnotation.
    	//
    	// for audit annotations, the assumption is that for some period of time (cache TTL),
    	// all requests with the same API audiences and the same bearer token result in the
    	// same annotations.  This may not be true if the authenticator sets an annotation
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 16:16:51 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  5. pilot/pkg/credentials/kube/secrets.go

    	// Because of legacy reasons and supporting an extra ca.crt, we also support generic types.
    	// Its also likely users have started to use random types and expect them to continue working.
    	// This makes the assumption we will never care about Helm secrets or SA token secrets - two common
    	// large secrets in clusters.
    	// This is a best effort optimization only; the code would behave correctly if we watched all secrets.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 19:18:21 UTC 2024
    - 10K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/cases/map.go

    			if d[1] == 0xCC && d[2] <= 0x91 { // A.2.4.
    				if !c.writeBytes(d[:1]) {
    					return false
    				}
    				c.dst[c.pDst-1] += 'a' - 'A' // lower
    
    				// Assumption: modifier never changes on lowercase. See A.1.
    				// Assumption: all modifiers added have CCC = Above. See A.2.3.
    				return c.writeString("\u0307") && c.writeBytes(d[1:])
    			}
    			// In all other cases the additional modifiers will have a CCC
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/util/concurrent/CycleDetectingLockFactoryTest.java

                + "exposed by the superclass implementation. If the implementation has "
                + "changed, the code must be re-inspected to ensure that the "
                + "assumption is still valid.",
            24,
            ReentrantReadWriteLock.class.getMethods().length);
      }
    
      private enum MyOrder {
        FIRST,
        SECOND,
        THIRD;
      }
    
      private enum OtherOrder {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/util/concurrent/CycleDetectingLockFactoryTest.java

                + "exposed by the superclass implementation. If the implementation has "
                + "changed, the code must be re-inspected to ensure that the "
                + "assumption is still valid.",
            24,
            ReentrantReadWriteLock.class.getMethods().length);
      }
    
      private enum MyOrder {
        FIRST,
        SECOND,
        THIRD;
      }
    
      private enum OtherOrder {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/hash/Striped64.java

       * once hashed to it terminate, as well as in the case where
       * doubling the table causes no thread to hash to it under
       * expanded mask.  We do not try to detect or remove such cells,
       * under the assumption that for long-running instances, observed
       * contention levels will recur, so the cells will eventually be
       * needed again; and for short-lived ones, it does not matter.
       */
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  10. cni/pkg/repair/repaircontroller.go

    	if uid, f := c.repairedPods[key]; f {
    		if uid == pod.UID {
    			log.Debugf("Skipping pod, already repaired")
    		} else {
    			// This is unexpected, bubble up to an error. Might be missing event, or invalid assumption in our code.
    			// Either way, we will skip.
    			log.Errorf("Skipping pod, already repaired with an unexpected UID %v vs %v", uid, pod.UID)
    		}
    		return nil
    	}
    	log.Infof("Repairing pod...")
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 10 00:31:55 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top