Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for Aggregate (0.16 sec)

  1. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // globally/universally unique. For example, if any of the following are true,
      // then two meshes must have different Mesh IDs:
      // - Meshes will have their telemetry aggregated in one place
      // - Meshes will be federated together
      // - Policy will be written referencing one mesh from the other
      //
      // If an administrator expects that any of these conditions may become true in
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  2. pkg/scheduler/internal/cache/cache_test.go

    	nodeInfo.NonZeroRequested = nonzeroRequest
    	nodeInfo.UsedPorts = usedPorts
    	nodeInfo.ImageStates = imageStates
    	return nodeInfo
    }
    
    // TestAssumePodScheduled tests that after a pod is assumed, its information is aggregated
    // on node level.
    func TestAssumePodScheduled(t *testing.T) {
    	nodeName := "node"
    	testPods := []*v1.Pod{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 01:38:03 UTC 2023
    - 63.8K bytes
    - Viewed (0)
  3. src/time/time_test.go

    	{1221681866, parsedTime{2008, September, 17, 13, 4, 26, 3e8, Wednesday, -7 * 60 * 60, "PDT"}},
    }
    
    func same(t Time, u *parsedTime) bool {
    	// Check aggregates.
    	year, month, day := t.Date()
    	hour, min, sec := t.Clock()
    	name, offset := t.Zone()
    	if year != u.Year || month != u.Month || day != u.Day ||
    		hour != u.Hour || min != u.Minute || sec != u.Second ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    	// If set, DestroyFunc has to be implemented in thread-safe way and
    	// be prepared for being called more than once.
    	DestroyFunc func()
    }
    
    // Note: the rest.StandardStorage interface aggregates the common REST verbs
    var _ rest.StandardStorage = &Store{}
    var _ rest.TableConvertor = &Store{}
    var _ GenericStore = &Store{}
    
    var _ rest.SingularNameProvider = &Store{}
    
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
Back to top