Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 251 for Implementation (0.16 sec)

  1. pkg/proxy/ipvs/util/testing/fake.go

    }
    
    // UpdateVirtualServer is a fake implementation, it updates the VirtualServer in the cache store.
    func (f *FakeIPVS) UpdateVirtualServer(serv *utilipvs.VirtualServer) error {
    	if serv == nil {
    		return fmt.Errorf("failed to update service, service can't be nil")
    	}
    	key := toServiceKey(serv)
    	f.Services[key] = serv
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 7K bytes
    - Viewed (0)
  2. pkg/kubelet/cadvisor/testing/cadvisor_fake.go

    }
    
    // RootFsInfo is a fake implementation of Interface.RootFsInfo.
    func (c *Fake) RootFsInfo() (cadvisorapiv2.FsInfo, error) {
    	return cadvisorapiv2.FsInfo{}, nil
    }
    
    // ContainerFsInfo is a fake implementation of Interface.ContainerFsInfo.
    func (c *Fake) ContainerFsInfo() (cadvisorapiv2.FsInfo, error) {
    	return cadvisorapiv2.FsInfo{}, nil
    }
    
    // GetDirFsInfo is a fake implementation of Interface.GetDirFsInfo.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 22:07:20 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  3. pkg/kubelet/util/util_unsupported.go

    */
    
    package util
    
    import (
    	"fmt"
    	"time"
    )
    
    // LockAndCheckSubPath empty implementation
    func LockAndCheckSubPath(volumePath, subPath string) ([]uintptr, error) {
    	return []uintptr{}, nil
    }
    
    // UnlockPath empty implementation
    func UnlockPath(fileHandles []uintptr) {
    }
    
    // LocalEndpoint empty implementation
    func LocalEndpoint(path, file string) (string, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 08:58:18 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/crds/standard-install.yaml

                      or some other address that traffic will be sent to. \n If no Addresses
                      are specified, the implementation MAY schedule the Gateway in an
                      implementation-specific manner, assigning an appropriate set of
                      Addresses. \n The implementation MUST bind all Listeners to every
                      GatewayAddress that it assigns to the Gateway and add a corresponding
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 458.3K bytes
    - Viewed (0)
  5. pkg/proxy/ipvs/testing/fake.go

    limitations under the License.
    */
    
    package testing
    
    import (
    	"fmt"
    	"k8s.io/utils/net"
    
    	"k8s.io/apimachinery/pkg/util/sets"
    )
    
    // FakeNetlinkHandle mock implementation of proxy NetlinkHandle
    type FakeNetlinkHandle struct {
    	// localAddresses is a network interface name to all of its IP addresses map, e.g.
    	// eth0 -> [1.2.3.4, 10.20.30.40]
    	localAddresses map[string][]string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/doc.go

    // completes.
    //
    // The first two differences can easily be handled by straightforward
    // adaptation of the concept called "R(t)" in the original paper and
    // "virtual time" in the implementation outline. In that
    // implementation outline, the notation now() is used to mean reading
    // the virtual clock. In the original paper’s terms, "R(t)" is the
    // number of "rounds" that have been completed at real time t ---
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 08 12:33:30 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  7. pkg/kubelet/configmap/configmap_manager.go

    }
    
    // configMapManager keeps a cache of all configmaps necessary
    // for registered pods. Different implementation of the store
    // may result in different semantics for freshness of configmaps
    // (e.g. ttl-based implementation vs watch-based implementation).
    type configMapManager struct {
    	manager manager.Manager
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/cel/mutation/mock_test.go

    	"github.com/google/cel-go/common/types/ref"
    
    	"k8s.io/apiserver/pkg/cel/mutation/common"
    )
    
    // mockTypeResolver is a mock implementation of TypeResolver that
    // allows the object to contain any field.
    type mockTypeResolver struct {
    }
    
    // mockTypeRef is a mock implementation of TypeRef that
    // contains any field.
    type mockTypeRef struct {
    	objectType *types.Type
    	resolver   common.TypeResolver
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 24 00:01:35 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/README.md

    Implements: https://github.com/kubernetes/design-proposals-archive/blob/main/api-machinery/thirdpartyresources.md
    
    It provides an API for registering `CustomResourceDefinitions`.
    
    ## Purpose
    
    This API server provides the implementation for `CustomResourceDefinitions` which is included as
    delegate server inside of `kube-apiserver`.
    
    
    ## Compatibility
    
    HEAD of this repo will match HEAD of k8s.io/apiserver, k8s.io/apimachinery, and k8s.io/client-go.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 08 06:41:15 UTC 2023
    - 742 bytes
    - Viewed (0)
  10. pkg/util/coverage/fake_test_deps.go

    limitations under the License.
    */
    
    package coverage
    
    import (
    	"io"
    	"reflect"
    	"time"
    )
    
    // This is an implementation of testing.testDeps. It doesn't need to do anything, because
    // no tests are actually run. It does need a concrete implementation of at least ImportPath,
    // which is called unconditionally when running tests.
    //
    //nolint:unused // U1000 see comment above, we know it's unused normally.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 15:31:22 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top