Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for 12345m (0.11 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    }
    
    func (m fakeStorage) GetList(ctx context.Context, key string, opts storage.ListOptions, listObj runtime.Object) error {
    	podList := listObj.(*example.PodList)
    	podList.ListMeta = metav1.ListMeta{ResourceVersion: "12345"}
    	podList.Items = m.pods
    	return nil
    }
    func (m fakeStorage) Watch(_ context.Context, _ string, _ storage.ListOptions) (watch.Interface, error) {
    	return newDummyWatch(), nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.30.md

    - Added `client-go` support for upgrading subresource fields from client-side to server-side management. ([#123484](https://github.com/kubernetes/kubernetes/pull/123484), [@erikgb](https://github.com/erikgb))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  3. tests/integration/ambient/baseline_test.go

    			})
    			run("VIP destination, unknown port", echo.CallOptions{
    				To:      apps.ServiceAddressedWaypoint,
    				Count:   1,
    				Address: apps.ServiceAddressedWaypoint[0].Address(),
    				Port:    echo.Port{ServicePort: 12345},
    				Scheme:  scheme.HTTP,
    				HBONE:   hbsvc,
    				// TODO: VIP:* should error sooner for undeclared ports
    				Check: check.Error(),
    			})
    			run("Pod IP destination", echo.CallOptions{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    Some examples:
    
    (1) For the following input of shape `[1, 2, 2, 1]` and block_size of 2:
    
    ```
    x = [[[[1], [2]], [[3], [4]]]]
    ```
    
    The output tensor has shape `[4, 1, 1, 1]` and value:
    
    ```
    [[[[1]]], [[[2]]], [[[3]]], [[[4]]]]
    ```
    
    (2) For the following input of shape `[1, 2, 2, 3]` and block_size of 2:
    
    ```
    x = [[[[1, 2, 3], [4, 5, 6]],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top