Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,623 for lake (0.07 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. pkg/volume/csi/csi_client_test.go

    			return fake.NewNodeClientWithVolumeStats(volumeStatsCapable)
    		})
    }
    
    func TestClientNodeSupportsVolumeMountGroup(t *testing.T) {
    	testClientNodeSupportsCapabilities(t,
    		func(client *csiDriverClient) (bool, error) {
    			return client.NodeSupportsVolumeMountGroup(context.Background())
    		},
    		func(volumeMountGroupCapable bool) *fake.NodeClient {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/podtopologyspread/plugin_test.go

    			expectedHint: framework.QueueSkip,
    		},
    		{
    			name: "add pod's label that matches topologySpreadConstraints selector",
    			pod: st.MakePod().Name("p").Label("foo", "").
    				SpreadConstraint(1, "zone", v1.DoNotSchedule, fooSelector, nil, nil, nil, nil).
    				Obj(),
    			oldPod:       st.MakePod().Node("fake-node").Obj(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 17 06:30:53 UTC 2023
    - 13K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/pkg/client/clientset/versioned/typed/cr/v1/fake/fake_example.go

    	_, err := c.Fake.Invokes(action, &v1.ExampleList{})
    	return err
    }
    
    // Patch applies the patch and returns the patched example.
    func (c *FakeExamples) Patch(ctx context.Context, name string, pt types.PatchType, data []byte, opts metav1.PatchOptions, subresources ...string) (result *v1.Example, err error) {
    	emptyResult := &v1.Example{}
    	obj, err := c.Fake.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/crdclient/client_test.go

    			Namespace: "test",
    		},
    		Spec: v1alpha3.ServiceEntry{},
    	}
    	fake := kube.NewFakeClient()
    	clienttest.NewWriter[*clientnetworkingv1alpha3.ServiceEntry](t, fake).Create(obj)
    	for _, s := range collections.Pilot.All() {
    		clienttest.MakeCRD(t, fake, s.GroupVersionResource())
    	}
    	stop := test.NewStop(t)
    	c := New(fake, Option{})
    
    	events := atomic.NewInt64(0)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 02:58:52 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  10. pkg/filewatcher/fakefilewatcher.go

    func NewFakeWatcher(changedFunc func(path string, added bool)) (NewFileWatcherFunc, *FakeWatcher) {
    	w := &FakeWatcher{
    		events:      make(map[string]chan fsnotify.Event),
    		errors:      make(map[string]chan error),
    		changedFunc: changedFunc,
    	}
    	return func() FileWatcher {
    		return w
    	}, w
    }
    
    // Add is a fake implementation of the FileWatcher interface.
    func (w *FakeWatcher) Add(path string) error {
    	w.Lock()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 14:06:41 UTC 2023
    - 3.6K bytes
    - Viewed (0)
Back to top