Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 276 for Implementation (0.15 sec)

  1. tools/istio-iptables/pkg/dependencies/implementation.go

    	XTablesParameterProblem: "xtables parameter problem",
    	XTablesVersionProblem:   "xtables version problem",
    	XTablesResourceProblem:  "xtables resource problem",
    }
    
    // RealDependencies implementation of interface Dependencies, which is used in production
    type RealDependencies struct {
    	NetworkNamespace string
    	CNIMode          bool
    }
    
    const iptablesVersionPattern = `v([0-9]+(\.[0-9]+)+)`
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 19:54:50 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  2. 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)
  3. src/vendor/golang.org/x/crypto/internal/poly1305/sum_s390x.go

    // calls that would have gone to updateGeneric to updateVX if the vector
    // facility is installed.
    //
    // A larger buffer is required for good performance because the vector
    // implementation has a higher fixed cost per call than the generic
    // implementation.
    type mac struct {
    	macState
    
    	buffer [16 * TagSize]byte // size must be a multiple of block size (16)
    	offset int
    }
    
    func (h *mac) Write(p []byte) (int, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. 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)
  5. src/vendor/golang.org/x/crypto/chacha20/chacha_s390x.go

    //go:build gc && !purego
    
    package chacha20
    
    import "golang.org/x/sys/cpu"
    
    var haveAsm = cpu.S390X.HasVX
    
    const bufSize = 256
    
    // xorKeyStreamVX is an assembly implementation of XORKeyStream. It must only
    // be called when the vector facility is available. Implementation in asm_s390x.s.
    //
    //go:noescape
    func xorKeyStreamVX(dst, src []byte, key *[8]uint32, nonce *[3]uint32, counter *uint32)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 743 bytes
    - Viewed (0)
  6. 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)
  7. src/vendor/golang.org/x/crypto/sha3/sha3_s390x.go

    }
    
    // new224 returns an assembly implementation of SHA3-224 if available,
    // otherwise it returns a generic implementation.
    func new224() hash.Hash {
    	if cpu.S390X.HasSHA3 {
    		return newAsmState(sha3_224)
    	}
    	return new224Generic()
    }
    
    // new256 returns an assembly implementation of SHA3-256 if available,
    // otherwise it returns a generic implementation.
    func new256() hash.Hash {
    	if cpu.S390X.HasSHA3 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  8. internal/ioutil/discard.go

    package ioutil
    
    import (
    	"io"
    )
    
    // Discard is just like io.Discard without the io.ReaderFrom compatible
    // implementation which is buggy on NUMA systems, we have to use a simpler
    // io.Writer implementation alone avoids also unnecessary buffer copies,
    // and as such incurred latencies.
    var Discard io.Writer = discard{}
    
    // discard is /dev/null for Golang.
    type discard struct{}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Nov 06 22:26:08 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. 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)
  10. src/crypto/elliptic/params.go

    package elliptic
    
    import "math/big"
    
    // CurveParams contains the parameters of an elliptic curve and also provides
    // a generic, non-constant time implementation of [Curve].
    //
    // The generic Curve implementation is deprecated, and using custom curves
    // (those not returned by [P224], [P256], [P384], and [P521]) is not guaranteed
    // to provide any security property.
    type CurveParams struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 9.6K bytes
    - Viewed (0)
Back to top