Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,032 for spill (0.26 sec)

  1. staging/src/k8s.io/apiserver/pkg/storageversion/manager.go

    	DirectlyDecodableVersions []schema.GroupVersion
    
    	// ServedVersions holds a list of all versions of GroupResource that are served.  Note that a server may be able to
    	// decode a particular version, but still not serve it.
    	ServedVersions []string
    }
    
    // Manager records the resources whose StorageVersions need updates, and provides a method to update those StorageVersions.
    type Manager interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 17:47:19 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/RegularImmutableMap.java

      /**
       * Closed addressing tends to perform well even with high load factors. Being conservative here
       * ensures that the table is still likely to be relatively sparse (hence it misses fast) while
       * saving space.
       */
      @VisibleForTesting static final double MAX_LOAD_FACTOR = 1.2;
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  3. operator/cmd/mesh/uninstall.go

    	var h *helmreconciler.HelmReconciler
    
    	// If the user is performing a purge install but also specified a revision or filename, we should warn
    	// that the purge will still remove all resources
    	if uiArgs.purge && (uiArgs.revision != "" || uiArgs.filename != "") {
    		l.LogAndPrint(PurgeWithRevisionOrOperatorSpecifiedWarning)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  4. src/cmd/trace/pprof.go

    	for _, g := range t.summary.Goroutines {
    		if name != "" && g.Name != name {
    			continue
    		}
    		endTime := g.EndTime
    		if g.EndTime == 0 {
    			endTime = t.endTime() // Use the trace end time, since the goroutine is still live then.
    		}
    		res[g.ID] = []interval{{start: g.StartTime, end: endTime}}
    	}
    	if len(res) == 0 {
    		return nil, fmt.Errorf("failed to find matching goroutines for name: %s", name)
    	}
    	return res, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/preemption/preemption.go

    // 2. A node with minimum highest priority victim is picked.
    // 3. Ties are broken by sum of priorities of all victims.
    // 4. If there are still ties, node with the minimum number of victims is picked.
    // 5. If there are still ties, node with the latest start time of all highest priority victims is picked.
    // 6. If there are still ties, the first such node is picked (sort of randomly).
    // The 'minNodes1' and 'minNodes2' are being reused here to save the memory
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  6. cmd/kube-proxy/app/server_linux_test.go

    				DetectLocalMode: proxyconfigapi.LocalModeClusterCIDR,
    				ClusterCIDR:     "10.0.0.0/14",
    			},
    			primaryIPFamily: v1.IPv6Protocol,
    			// This will output a warning that there is no IPv6 CIDR but it
    			// will still use the provided IPv4 CIDR for IPv4.
    			expected: map[v1.IPFamily]proxyutil.LocalTrafficDetector{
    				v1.IPv4Protocol: proxyutil.NewDetectLocalByCIDR("10.0.0.0/14"),
    				v1.IPv6Protocol: proxyutil.NewNoOpLocalDetector(),
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  7. guava/src/com/google/common/util/concurrent/ExecutionSequencer.java

     *       cancel} on the {@code Future}). So beware: <i>Even if you cancel every preceding {@code
     *       Future} returned by this class, the next task may still have to wait.</i>.
     *   <li>Once an {@code AsyncCallable} returns a {@code Future}, this class considers that task to
     *       be "done" as soon as <i>that</i> {@code Future} completes in any way. Notably, a {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  8. docs/en/docs/alternatives.md

    It had the best performance benchmarks at the time (only surpassed by Starlette).
    
    At first, it didn't have an automatic API documentation web UI, but I knew I could add Swagger UI to it.
    
    It had a dependency injection system. It required pre-registration of components, as other tools discussed above. But still, it was a great feature.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modfetch/codehost/codehost.go

    	// depends on the set of tags present in the repo, specifically the tags
    	// of the form TagPrefix + a valid semver version.
    	// If the matching repo tags and their commit hashes still hash to TagSum,
    	// the Origin is still valid (at least as far as the tags are concerned).
    	// The exact checksum is up to the Repo implementation; see (*gitRepo).Tags.
    	TagPrefix string `json:",omitempty"`
    	TagSum    string `json:",omitempty"`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  10. pkg/registry/core/namespace/storage/storage_test.go

    	if immediate {
    		t.Fatalf("unexpected immediate flag")
    	}
    	if ns, ok := obj.(*api.Namespace); !ok || obj == nil || ns == nil || ns.Name != namespace.Name {
    		t.Fatalf("object not returned by delete")
    	}
    	// should still exist
    	if _, err := storage.Get(ctx, "foo", &metav1.GetOptions{}); err != nil {
    		t.Errorf("unexpected error: %v", err)
    	}
    }
    
    func TestUpdateDeletingNamespaceWithIncompleteMetadataFinalizers(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 17 05:13:34 UTC 2022
    - 19.8K bytes
    - Viewed (0)
Back to top