Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 54 for Implementation (0.26 sec)

  1. pilot/pkg/networking/core/listener_test.go

    	if e.NumField() != 14 {
    		t.Fatalf("Expected 14 fields, got %v. This means we need to update filterChainMatchEqual implementation", e.NumField())
    	}
    }
    
    func TestInboundListener_PrivilegedPorts(t *testing.T) {
    	// Verify that an explicit ingress listener will not bind to privileged ports
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    	// Check for memory leaks
    	assertPendingResync(0)
    	addEndpoint("svc", []string{"172.0.1.1", "172.0.1.2", "172.0.1.3"}, []string{"pod1", "pod2", "pod3"})
    	// This is really an implementation detail here - but checking to sanity check our test
    	assertPendingResync(1)
    	// Remove the endpoint again, with no pod events in between. Should have no memory leaks
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    			// Changing a list to a set should allow you to keep the items the
    			// same, but if you modify any one item the set must be uniqued
    			//
    			// Possibly a future area of improvement. As it stands now,
    			// SSA implementation is incompatible with ratcheting this field:
    			// https://github.com/kubernetes/kubernetes/blob/ec9a8ffb237e391ce9ccc58de93ba4ecc2fabf42/staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/structuredmerge.go#L146-L149
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  4. src/syscall/syscall_windows.go

    //sys	getFinalPathNameByHandle(file Handle, filePath *uint16, filePathSize uint32, flags uint32) (n uint32, err error) [n == 0 || n >= filePathSize] = kernel32.GetFinalPathNameByHandleW
    
    // syscall interface implementation for other packages
    
    func makeInheritSa() *SecurityAttributes {
    	var sa SecurityAttributes
    	sa.Length = uint32(unsafe.Sizeof(sa))
    	sa.InheritHandle = 1
    	return &sa
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    	if err != nil {
    		return nil, err
    	}
    
    	return newRuntimeVersion(typedVersion.RuntimeVersion)
    }
    
    // APIVersion returns the cached API version information of the container
    // runtime. Implementation is expected to update this cache periodically.
    // This may be different from the runtime engine's version.
    func (m *kubeGenericRuntimeManager) APIVersion() (kubecontainer.Version, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    */
    
    package v1
    
    // This file contains a collection of methods that can be used from go-restful to
    // generate Swagger API documentation for its models. Please read this PR for more
    // information on the implementation: https://github.com/emicklei/go-restful/pull/215
    //
    // TODOs are ignored from the parser (e.g. TODO(andronat):... || TODO:...) if and only if
    // they are on one line! For multiple line or blocks that you want to ignore use ---.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  7. src/runtime/mgcscavenge.go

    	// sleepStub is a stub used for testing to avoid actually having
    	// the scavenger sleep.
    	//
    	// Unlike the other stubs, this is not populated if left nil
    	// Instead, it is called when non-nil because any valid implementation
    	// of this function basically requires closing over this scavenger
    	// state, and allocating a closure is not allowed in the runtime as
    	// a matter of policy.
    	sleepStub func(n int64) int64
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  8. pkg/volume/testing/testing.go

    	}
    
    	return pv, nil
    }
    
    var _ volumepathhandler.BlockVolumePathHandler = &FakeVolumePathHandler{}
    
    // NewDeviceHandler Create a new IoHandler implementation
    func NewBlockVolumePathHandler() volumepathhandler.BlockVolumePathHandler {
    	return &FakeVolumePathHandler{}
    }
    
    type FakeVolumePathHandler struct {
    	sync.RWMutex
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    import (
    	"fmt"
    	"reflect"
    	"sort"
    	"strings"
    
    	"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
    	"k8s.io/apimachinery/pkg/util/json"
    	"k8s.io/apimachinery/pkg/util/mergepatch"
    )
    
    // An alternate implementation of JSON Merge Patch
    // (https://tools.ietf.org/html/rfc7386) which supports the ability to annotate
    // certain fields with metadata that indicates whether the elements of JSON
    // lists should be merged or replaced.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    // underlying behavior.
    //
    // All fields are required unless specified.
    //
    // The intended use of this type is embedding within a Kind specific
    // RESTStorage implementation. This type provides CRUD semantics on a Kubelike
    // resource, handling details like conflict detection with ResourceVersion and
    // semantics. The RESTCreateStrategy, RESTUpdateStrategy, and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
Back to top