Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 77 of 77 for realized (0.16 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store.go

    	// healthy, when the leader is stopped, the leadership transfer should be
    	// smooth. (leader transfers its leadership before stopping). If leader is
    	// hard killed, other servers will take an election timeout to realize
    	// leader lost and start campaign.
    	return clientv3.WithRequireLeader(ctx)
    }
    
    func (s *store) getCurrentState(ctx context.Context, key string, v reflect.Value, ignoreNotFound bool) func() (*objState, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  2. docs/pt/docs/alternatives.md

    Sem um sistema de validação de dados, você teria que realizar todas as verificações manualmente, no código.
    
    Esses recursos são o que Marshmallow foi construído para fornecer. Ele é uma ótima biblioteca, e eu já utilizei muito antes.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  3. src/archive/tar/reader.go

    	// the same type flag but has a completely different layout.
    	if blk.getFormat() != FormatGNU {
    		return nil, ErrHeader
    	}
    	hdr.Format.mayOnlyBe(FormatGNU)
    
    	var p parser
    	hdr.Size = p.parseNumeric(blk.toGNU().realSize())
    	if p.err != nil {
    		return nil, p.err
    	}
    	s := blk.toGNU().sparse()
    	spd := make(sparseDatas, 0, s.maxEntries())
    	for {
    		for i := 0; i < s.maxEntries(); i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 01:59:14 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/action.go

    	// Because we overwrite the build action with the install action below,
    	// a1 may already be an install action fetched from the "build" cache key,
    	// and the caller just doesn't realize.
    	if strings.HasSuffix(a1.Mode, "-install") {
    		if a1.buggyInstall && mode == ModeInstall {
    			//  Congratulations! The buggy install is now a proper install.
    			a1.buggyInstall = false
    		}
    		return a1
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/poset.go

    			if strict {
    				// Cases #6 and #8: contradiction
    				return false
    			}
    
    			// We're in case #5 or #7. Try to collapse path, and that will
    			// fail if it realizes that we are in case #7.
    			return po.collapsepath(n2, n1)
    		}
    
    		// We don't know of any existing relation between n1 and n2. They could
    		// be part of the same DAG or not.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 04 17:23:05 UTC 2023
    - 37.2K bytes
    - Viewed (0)
  6. src/net/http/clientserver_test.go

    		select {
    		case <-dialedc:
    			dialed = true
    		default:
    		}
    
    		if !tt.ok && dialed {
    			t.Errorf("For key %q, value %q, transport dialed. Expected local failure. Response was: (%v, %v)\nServer replied with: %s", tt.key, tt.val, res, err, body)
    		} else if (err == nil) != tt.ok {
    			t.Errorf("For key %q, value %q; got err = %v; want ok=%v", tt.key, tt.val, err, tt.ok)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 46.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/rangefunc/rewrite.go

    	curLoopIndex := curLoop - 1
    
    	if len(r.forStack) == 1 {
    		if loop.checkRet {
    			list = append(list, r.ifNext(syntax.Eql, -1, false, retStmt(nil)))
    		}
    	} else {
    
    		// Idealized check, implemented more simply for now.
    
    		//	// N == depth of this loop, one less than the one just exited.
    		//	if #next != 0 {
    		//		if #next >= perLoopStep*N-1 { // this loop
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 41.6K bytes
    - Viewed (0)
Back to top