Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,005 for Implementation (0.18 sec)

  1. staging/src/k8s.io/api/node/v1alpha1/types_swagger_doc_generated.go

    	"runtimeHandler": "runtimeHandler specifies the underlying runtime and configuration that the CRI implementation will use to handle pods of this class. The possible values are specific to the node & CRI configuration.  It is assumed that...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 5K bytes
    - Viewed (0)
  2. pkg/util/hash/hash_test.go

    		wantSum                []byte
    		wantStr                string
    		wantUint64             uint64
    		wantLittleEndianUint64 uint64
    	}{
    		{
    			name: "foo",
    			str:  "foo",
    			// note: Different hash implementation may get different hash value
    			wantStr:    "33bf00a859c4ba3f",
    			wantUint64: 3728699739546630719,
    		},
    	}
    
    	for _, tt := range testCases {
    		t.Run(tt.name, func(t *testing.T) {
    			h := New()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 21 20:24:14 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. src/log/slog/internal/benchmarks/benchmarks.go

    //     tasks as fast as possible (and sometimes faster, in that an
    //     implementation may not be concurrency-safe). This gives us an upper bound
    //     on handler performance, so we can evaluate the (handler-independent) core
    //     activity of the package in an end-to-end context without concern that a
    //     slow handler implementation is skewing the results.
    //
    //   - We also test the built-in handlers, for comparison.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 25 12:14:46 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. pkg/volume/util/hostutil/hostutil_linux.go

    		return fmt.Errorf("failed to make %s rshared: %v", path, err)
    	}
    
    	return nil
    }
    
    // selinux.SELinuxEnabled implementation for unit tests
    type seLinuxEnabledFunc func() bool
    
    // GetSELinux is common implementation of GetSELinuxSupport on Linux.
    func GetSELinux(path string, mountInfoFilename string, selinuxEnabled seLinuxEnabledFunc) (bool, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 23 08:36:44 UTC 2023
    - 10K bytes
    - Viewed (0)
  5. src/encoding/binary/native_endian_big.go

    //go:build armbe || arm64be || m68k || mips || mips64 || mips64p32 || ppc || ppc64 || s390 || s390x || shbe || sparc || sparc64
    
    package binary
    
    type nativeEndian struct {
    	bigEndian
    }
    
    // NativeEndian is the native-endian implementation of [ByteOrder] and [AppendByteOrder].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 466 bytes
    - Viewed (0)
  6. pilot/pkg/config/memory/controller.go

    )
    
    // Controller is an implementation of ConfigStoreController.
    type Controller struct {
    	monitor     Monitor
    	configStore model.ConfigStore
    	hasSynced   func() bool
    
    	// If meshConfig.DiscoverySelectors are specified, the namespacesFilter tracks the namespaces this controller watches.
    	namespacesFilter func(obj interface{}) bool
    }
    
    // NewController return an implementation of ConfigStoreController
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 26 13:54:32 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  7. src/io/fs/sub.go

    //
    // If dir is ".", Sub returns fsys unchanged.
    // Otherwise, if fs implements [SubFS], Sub returns fsys.Sub(dir).
    // Otherwise, Sub returns a new [FS] implementation sub that,
    // in effect, implements sub.Open(name) as fsys.Open(path.Join(dir, name)).
    // The implementation also translates calls to ReadDir, ReadFile, and Glob appropriately.
    //
    // Note that Sub(os.DirFS("/"), "prefix") is equivalent to os.DirFS("/prefix")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 10 02:10:17 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. pkg/controller/cronjob/injection.go

    	// GetCronJob retrieves a CronJob.
    	GetCronJob(ctx context.Context, namespace, name string) (*batchv1.CronJob, error)
    }
    
    // realCJControl is the default implementation of cjControlInterface.
    type realCJControl struct {
    	KubeClient clientset.Interface
    }
    
    func (c *realCJControl) GetCronJob(ctx context.Context, namespace, name string) (*batchv1.CronJob, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 22 09:37:31 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  9. pkg/volume/util/device_util.go

    	FindDevicesForISCSILun(targetIqn string, lun int) ([]string, error)
    }
    
    type deviceHandler struct {
    	getIo IoUtil
    }
    
    // NewDeviceHandler Create a new IoHandler implementation
    func NewDeviceHandler(io IoUtil) DeviceUtil {
    	return &deviceHandler{getIo: io}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  10. src/runtime/pprof/label.go

    	if labels == nil {
    		return labelMap(nil)
    	}
    	return *labels
    }
    
    // labelMap is the representation of the label set held in the context type.
    // This is an initial implementation, but it will be replaced with something
    // that admits incremental immutable modification more efficiently.
    type labelMap map[string]string
    
    // String satisfies Stringer and returns key, value pairs in a consistent
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top