Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 343 for December (0.19 sec)

  1. src/cmd/compile/internal/ssa/nilcheck.go

    							pendingLines.add(v.Pos)
    						}
    						v.Op = OpCopy
    						v.SetArgs1(nilCheck)
    						continue
    					}
    					// Record the fact that we know ptr is non nil, and remember to
    					// undo that information when this dominator subtree is done.
    					nonNilValues[ptr.ID] = v
    					work = append(work, bp{op: ClearPtr, ptr: ptr})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:45:54 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"After", Func, 0},
    		{"AfterFunc", Func, 0},
    		{"April", Const, 0},
    		{"August", Const, 0},
    		{"Date", Func, 0},
    		{"DateOnly", Const, 20},
    		{"DateTime", Const, 20},
    		{"December", Const, 0},
    		{"Duration", Type, 0},
    		{"February", Const, 0},
    		{"FixedZone", Func, 0},
    		{"Friday", Const, 0},
    		{"Hour", Const, 0},
    		{"January", Const, 0},
    		{"July", Const, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    at last it unfolded its arms, took the hookah out of its mouth
    again, and said, `So you think you're changed, do you?'
    
      `I'm afraid I am, sir,' said Alice; `I can't remember things as
    I used--and I don't keep the same size for ten minutes together!'
    
      `Can't remember WHAT things?' said the Caterpillar.
    
      `Well, I've tried to say "HOW DOTH THE LITTLE BUSY BEE," but it
    all came different!' Alice replied in a very melancholy voice.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    at last it unfolded its arms, took the hookah out of its mouth
    again, and said, `So you think you're changed, do you?'
    
      `I'm afraid I am, sir,' said Alice; `I can't remember things as
    I used--and I don't keep the same size for ten minutes together!'
    
      `Can't remember WHAT things?' said the Caterpillar.
    
      `Well, I've tried to say "HOW DOTH THE LITTLE BUSY BEE," but it
    all came different!' Alice replied in a very melancholy voice.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 29 21:35:03 UTC 2012
    - 145.2K bytes
    - Viewed (0)
  5. src/regexp/syntax/regexp.go

    func (x *Regexp) Equal(y *Regexp) bool {
    	if x == nil || y == nil {
    		return x == y
    	}
    	if x.Op != y.Op {
    		return false
    	}
    	switch x.Op {
    	case OpEndText:
    		// The parse flags remember whether this is \z or \Z.
    		if x.Flags&WasDollar != y.Flags&WasDollar {
    			return false
    		}
    
    	case OpLiteral, OpCharClass:
    		return slices.Equal(x.Rune, y.Rune)
    
    	case OpAlternate, OpConcat:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:51 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  6. docs/en/docs/tutorial/security/simple-oauth2.md

        This is something that you have to do yourself in your code, and make sure you use those JSON keys.
    
        It's almost the only thing that you have to remember to do correctly yourself, to be compliant with the specifications.
    
        For the rest, **FastAPI** handles it for you.
    
    ## Update the dependencies
    
    Now we are going to update our dependencies.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  7. src/math/big/prime.go

    	// almost extra strong test."
    
    	// Compute Lucas sequence V_s(b, 1), where:
    	//
    	//	V(0) = 2
    	//	V(1) = P
    	//	V(k) = P V(k-1) - Q V(k-2).
    	//
    	// (Remember that due to method C above, P = b, Q = 1.)
    	//
    	// In general V(k) = α^k + β^k, where α and β are roots of x² - Px + Q.
    	// Crandall and Pomerance (p.147) observe that for 0 ≤ j ≤ k,
    	//
    	//	V(j+k) = V(j)V(k) - V(k-j).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 02 14:43:52 UTC 2022
    - 10.4K bytes
    - Viewed (0)
  8. operator/pkg/apis/istio/v1alpha1/validation/validation.go

    }
    
    // Converts from struct paths to helm paths
    // Global.Proxy.AccessLogFormat -> global.proxy.accessLogFormat
    func firstCharsToLower(s string) string {
    	// Use a closure here to remember state.
    	// Hackish but effective. Depends on Map scanning in order and calling
    	// the closure once per rune.
    	prev := '.'
    	return strings.Map(
    		func(r rune) rune {
    			if prev == '.' {
    				prev = r
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 20:02:28 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  9. docs/pt/docs/features.md

    Isso também significa que em muitos casos você poderá passar o mesmo objeto que você receber de uma requisição **diretamente para o banco de dados**, já que tudo é validado automaticamente.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/loopbce.go

    			init, inc, nxt = parseIndVar(limit)
    			if init == nil {
    				// No recognized induction variable on either operand
    				continue
    			}
    
    			// Ok, the arguments were reversed. Swap them, and remember that we're
    			// looking at an ind >/>= loop (so the induction must be decrementing).
    			ind, limit = limit, ind
    			less = false
    		}
    
    		if ind.Block != b {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 17:37:47 UTC 2023
    - 11.8K bytes
    - Viewed (0)
Back to top