Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 135 for NewTest (0.29 sec)

  1. src/cmd/go/internal/toolchain/switch.go

    // It is separated out for easier testing of this logic.
    func newerToolchain(need string, list []string) (string, error) {
    	// Consider each release in the list, from newest to oldest,
    	// considering only entries >= need and then only entries
    	// that are the latest in their language family
    	// (the latest 1.40, the latest 1.39, and so on).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 7K bytes
    - Viewed (0)
  2. src/crypto/x509/oid.go

    	if len(der) == 0 || der[len(der)-1]&0x80 != 0 {
    		return OID{}, false
    	}
    
    	start := 0
    	for i, v := range der {
    		// ITU-T X.690, section 8.19.2:
    		// The subidentifier shall be encoded in the fewest possible octets,
    		// that is, the leading octet of the subidentifier shall not have the value 0x80.
    		if i == start && v == 0x80 {
    			return OID{}, false
    		}
    		if v&0x80 == 0 {
    			start = i + 1
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 19:10:38 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  3. pkg/registry/core/service/storage/storage.go

    	_ rest.ShortNamesProvider     = &REST{}
    	_ rest.StorageVersionProvider = &REST{}
    	_ rest.ResetFieldsStrategy    = &REST{}
    	_ rest.Redirector             = &REST{}
    )
    
    // NewREST returns a REST object that will work against services.
    func NewREST(
    	optsGetter generic.RESTOptionsGetter,
    	serviceIPFamily api.IPFamily,
    	ipAllocs map[api.IPFamily]ipallocator.Interface,
    	portAlloc portallocator.Interface,
    	endpoints EndpointsStorage,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 13:09:33 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache.go

    	removedEventSinceRelist bool
    
    	// store will effectively support LIST operation from the "end of cache
    	// history" i.e. from the moment just after the newest cached watched event.
    	// It is necessary to effectively allow clients to start watching at now.
    	// NOTE: We assume that <store> is thread-safe.
    	store cache.Indexer
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 10:20:57 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/apps/v1/types_swagger_doc_generated.go

    	"collisionCount":         "Count of hash collisions for the DaemonSet. The DaemonSet controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ControllerRevision.",
    	"conditions":             "Represents the latest available observations of a DaemonSet's current state.",
    }
    
    func (DaemonSetStatus) SwaggerDoc() map[string]string {
    	return map_DaemonSetStatus
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  6. src/cmd/trace/pprof.go

    		delete(m.stacks, existing)
    	} else {
    		// Not in the map.
    		rec = new(traceviewer.ProfileRecord)
    	}
    	// Insert regardless of whether we have a match in m.pcs.
    	// Even if we have a match, we want to keep the newest version
    	// of that stack, since we're much more likely tos see it again
    	// as we iterate through the trace linearly. Simultaneously, we
    	// are likely to never see the old stack again.
    	m.pcs[pcs] = stack
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  7. pkg/kubelet/kuberuntime/helpers.go

    func (b containersByID) Len() int           { return len(b) }
    func (b containersByID) Swap(i, j int)      { b[i], b[j] = b[j], b[i] }
    func (b containersByID) Less(i, j int) bool { return b[i].ID.ID < b[j].ID.ID }
    
    // Newest first.
    type podSandboxByCreated []*runtimeapi.PodSandbox
    
    func (p podSandboxByCreated) Len() int           { return len(p) }
    func (p podSandboxByCreated) Swap(i, j int)      { p[i], p[j] = p[j], p[i] }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 12K bytes
    - Viewed (0)
  8. pkg/controller/daemon/daemon_controller_test.go

    	manager.dsStore.Add(ds)
    	addNodes(manager.nodeStore, 0, 5, nil)
    
    	// the clock will be set 10s after the newest pod on node-1 went ready, which is not long enough to be available
    	manager.DaemonSetsController.failedPodsBackoff.Clock = testingclock.NewFakeClock(time.Unix(50+10, 0))
    
    	// will be preserved because it has the newest hash
    	pod := newPod("node-1-", "node-1", simpleDaemonSetLabel, ds)
    	pod.CreationTimestamp.Time = time.Unix(100, 0)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  9. docs/en/docs/deployment/server-workers.md

    **Gunicorn** is mainly an application server using the **WSGI standard**. That means that Gunicorn can serve applications like Flask and Django. Gunicorn by itself is not compatible with **FastAPI**, as FastAPI uses the newest **<a href="https://asgi.readthedocs.io/en/latest/" class="external-link" target="_blank">ASGI standard</a>**.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/apps/v1/generated.proto

      optional int32 numberUnavailable = 8;
    
      // Count of hash collisions for the DaemonSet. The DaemonSet controller
      // uses this field as a collision avoidance mechanism when it needs to
      // create the name for the newest ControllerRevision.
      // +optional
      optional int32 collisionCount = 9;
    
      // Represents the latest available observations of a DaemonSet's current state.
      // +optional
      // +patchMergeKey=type
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 34.8K bytes
    - Viewed (0)
Back to top