Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,007 for lake (0.04 sec)

  1. pilot/pkg/config/kube/gateway/testdata/weighted.status.yaml.golden

      listeners:
      - attachedRoutes: 1
        conditions:
        - lastTransitionTime: fake
          message: No errors found
          reason: Accepted
          status: "True"
          type: Accepted
        - lastTransitionTime: fake
          message: No errors found
          reason: NoConflicts
          status: "False"
          type: Conflicted
        - lastTransitionTime: fake
          message: No errors found
          reason: Programmed
          status: "True"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. pkg/controller/nodeipam/ipam/sync/sync_test.go

    		tc.fake.logger = logger
    		sync := New(&tc.fake, &tc.fake, &tc.fake, tc.mode, "node1", cidr)
    		doneChan := make(chan struct{})
    
    		// Do a single step of the loop.
    		go sync.Loop(logger, doneChan)
    		sync.Delete(tc.node)
    		<-doneChan
    		tc.fake.dumpTrace()
    
    		/*
    			if !reflect.DeepEqual(tc.fake.events, tc.events) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 05 23:39:52 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/testdata/waypoint.status.yaml.golden

      listeners:
      - attachedRoutes: 0
        conditions:
        - lastTransitionTime: fake
          message: No errors found
          reason: Accepted
          status: "True"
          type: Accepted
        - lastTransitionTime: fake
          message: No errors found
          reason: NoConflicts
          status: "False"
          type: Conflicted
        - lastTransitionTime: fake
          message: No errors found
          reason: Programmed
          status: "True"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 21:30:40 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/gateway/testdata/route-precedence.status.yaml.golden

      listeners:
      - attachedRoutes: 2
        conditions:
        - lastTransitionTime: fake
          message: No errors found
          reason: Accepted
          status: "True"
          type: Accepted
        - lastTransitionTime: fake
          message: No errors found
          reason: NoConflicts
          status: "False"
          type: Conflicted
        - lastTransitionTime: fake
          message: No errors found
          reason: Programmed
          status: "True"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/testdata/serviceentry.status.yaml.golden

      listeners:
      - attachedRoutes: 1
        conditions:
        - lastTransitionTime: fake
          message: No errors found
          reason: Accepted
          status: "True"
          type: Accepted
        - lastTransitionTime: fake
          message: No errors found
          reason: NoConflicts
          status: "False"
          type: Conflicted
        - lastTransitionTime: fake
          message: No errors found
          reason: Programmed
          status: "True"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 18:54:10 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/testdata/tcp.status.yaml.golden

      listeners:
      - attachedRoutes: 1
        conditions:
        - lastTransitionTime: fake
          message: No errors found
          reason: Accepted
          status: "True"
          type: Accepted
        - lastTransitionTime: fake
          message: No errors found
          reason: NoConflicts
          status: "False"
          type: Conflicted
        - lastTransitionTime: fake
          message: No errors found
          reason: Programmed
          status: "True"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/testdata/grpc.status.yaml.golden

      listeners:
      - attachedRoutes: 1
        conditions:
        - lastTransitionTime: fake
          message: No errors found
          reason: Accepted
          status: "True"
          type: Accepted
        - lastTransitionTime: fake
          message: No errors found
          reason: NoConflicts
          status: "False"
          type: Conflicted
        - lastTransitionTime: fake
          message: No errors found
          reason: Programmed
          status: "True"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/testdata/reference-policy-tls.status.yaml.golden

      listeners:
      - attachedRoutes: 1
        conditions:
        - lastTransitionTime: fake
          message: No errors found
          reason: Accepted
          status: "True"
          type: Accepted
        - lastTransitionTime: fake
          message: No errors found
          reason: NoConflicts
          status: "False"
          type: Conflicted
        - lastTransitionTime: fake
          message: No errors found
          reason: Programmed
          status: "True"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. pkg/kubelet/container/testing/os.go

    	return nil
    }
    
    // Stat is a fake that returns an error
    func (f *FakeOS) Stat(path string) (os.FileInfo, error) {
    	if f.StatFn != nil {
    		return f.StatFn(path)
    	}
    	return nil, errors.New("unimplemented testing mock")
    }
    
    // Remove is a fake call that returns nil.
    func (f *FakeOS) Remove(path string) error {
    	f.Removes = append(f.Removes, path)
    	return nil
    }
    
    // RemoveAll is a fake call that just returns nil.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 07 13:37:31 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/admission/chain_test.go

    		}
    		for _, h := range test.chain {
    			fake := h.(*FakeHandler)
    			_, shouldBeCalled := test.calls[fake.name]
    			if shouldBeCalled != fake.admitCalled {
    				t.Errorf("admit handler %s not called as expected: %v", fake.name, fake.admitCalled)
    				continue
    			}
    			if fake.validateCalled {
    				t.Errorf("validate handler %s called during admit", fake.name)
    			}
    
    			// reset value for validation test
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 20 15:11:00 UTC 2019
    - 5.4K bytes
    - Viewed (0)
Back to top