Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,843 for lake (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. pkg/util/iptables/testing/fake_test.go

    import (
    	"bytes"
    	"strings"
    	"testing"
    
    	"github.com/lithammer/dedent"
    
    	"k8s.io/kubernetes/pkg/util/iptables"
    )
    
    func TestFakeIPTables(t *testing.T) {
    	fake := NewFake()
    	buf := bytes.NewBuffer(nil)
    
    	err := fake.SaveInto("", buf)
    	if err != nil {
    		t.Fatalf("unexpected error from SaveInto: %v", err)
    	}
    	expected := dedent.Dedent(strings.Trim(`
    		*nat
    		:PREROUTING - [0:0]
    		:INPUT - [0:0]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  8. pkg/kubelet/token/token_manager_test.go

    								UID:  "fake-uid-1",
    								Name: "fake-name-1",
    							},
    						},
    					},
    					shouldFail: false,
    				},
    				{
    					name:      "fake-name-2",
    					namespace: "fake-namespace-2",
    					tr: authenticationv1.TokenRequest{
    						Spec: authenticationv1.TokenRequestSpec{
    							BoundObjectRef: &authenticationv1.BoundObjectReference{
    								UID:  "fake-uid-2",
    								Name: "fake-name-2",
    							},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 04 00:16:47 UTC 2022
    - 16.2K bytes
    - Viewed (0)
  9. 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)
  10. staging/src/k8s.io/apiserver/pkg/quota/v1/generic/evaluator_test.go

    	}
    	if fake.called != 0 {
    		t.Fatalf("expected called=0, got %d", fake.called)
    	}
    	fake.called = 0
    
    	hasSynced = true
    
    	if _, err := l.List(nil); err != errFakeLister {
    		t.Fatalf("expected %v, got %v", errFakeLister, err)
    	}
    	if _, err := l.Get(""); err != errFakeLister {
    		t.Fatalf("expected %v, got %v", errFakeLister, err)
    	}
    	if fake.called != 2 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 04 12:53:52 UTC 2020
    - 3K bytes
    - Viewed (0)
Back to top