Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,686 for lets (0.09 sec)

  1. pkg/volume/csi/csi_drivers_store.go

    	store
    	sync.RWMutex
    }
    
    type store map[string]Driver
    
    // Get lets you retrieve a CSI Driver by name.
    // This method is protected by a mutex.
    func (s *DriversStore) Get(driverName string) (Driver, bool) {
    	s.RLock()
    	defer s.RUnlock()
    
    	driver, ok := s.store[driverName]
    	return driver, ok
    }
    
    // Set lets you save a CSI Driver to the list and give it a specific name.
    // This method is protected by a mutex.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 11:12:06 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/dra/plugin/plugins_store.go

    // and their corresponding sockets.
    var draPlugins = &pluginsStore{}
    
    // Get lets you retrieve a DRA Plugin by name.
    // This method is protected by a mutex.
    func (s *pluginsStore) get(pluginName string) *plugin {
    	s.RLock()
    	defer s.RUnlock()
    
    	return s.store[pluginName]
    }
    
    // Set lets you save a DRA Plugin to the list and give it a specific name.
    // This method is protected by a mutex.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 13:11:27 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/meta.go

    	"k8s.io/apimachinery/pkg/types"
    )
    
    // TODO: move this, Object, List, and Type to a different package
    type ObjectMetaAccessor interface {
    	GetObjectMeta() Object
    }
    
    // Object lets you work with object metadata from any of the versioned or
    // internal API objects. Attempting to set or retrieve a field on an object that does
    // not support that field (Name, UID, Namespace on lists) will be a no-op and return
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 20:12:50 UTC 2022
    - 7.7K bytes
    - Viewed (0)
  4. src/runtime/mkfastlog2table.go

    		fastlog2Table[i] = log2(1.0 + float64(i)/(1<<fastlogNumBits))
    	}
    	return fastlog2Table
    }
    
    // log2 is a local copy of math.Log2 with an explicit float64 conversion
    // to disable FMA. This lets us generate the same output on all platforms.
    func log2(x float64) float64 {
    	frac, exp := math.Frexp(x)
    	// Make sure exact powers of two give an exact answer.
    	// Don't depend on Log(0.5)*(1/Ln2)+exp being exactly exp-1.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Jun 26 22:12:19 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  5. .zenodo.json

    {
        "description": "TensorFlow is an end-to-end open source platform for machine learning. It has a comprehensive, flexible ecosystem of tools, libraries, and community resources that lets researchers push the state-of-the-art in ML and developers easily build and deploy ML-powered applications.",
        "license": "Apache-2.0",
        "title": "TensorFlow",
        "upload_type": "software",
        "creators": [
            {
                "name": "TensorFlow Developers"
            }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 18 19:19:25 UTC 2021
    - 741 bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/watch/watch.go

    }
    
    // Stop implements Interface
    func (w emptyWatch) Stop() {
    }
    
    // ResultChan implements Interface
    func (w emptyWatch) ResultChan() <-chan Event {
    	return chan Event(w)
    }
    
    // FakeWatcher lets you test anything that consumes a watch.Interface; threadsafe.
    type FakeWatcher struct {
    	result  chan Event
    	stopped bool
    	sync.Mutex
    }
    
    func NewFake() *FakeWatcher {
    	return &FakeWatcher{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:06:22 UTC 2024
    - 8.1K bytes
    - Viewed (1)
  7. src/go/doc/comment/mkstd.sh

    # license that can be found in the LICENSE file.
    
    # This could be a good use for embed but go/doc/comment
    # is built into the bootstrap go command, so it can't use embed.
    # Also not using embed lets us emit a string array directly
    # and avoid init-time work.
    
    (
    echo "// Copyright 2022 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:42 UTC 2022
    - 768 bytes
    - Viewed (0)
  8. src/internal/abi/abi_generic.go

    //go:build !goexperiment.regabiargs && !amd64 && !arm64 && !loong64 && !ppc64 && !ppc64le && !riscv64
    
    package abi
    
    const (
    	// ABI-related constants.
    	//
    	// In the generic case, these are all zero
    	// which lets them gracefully degrade to ABI0.
    
    	// IntArgRegs is the number of registers dedicated
    	// to passing integer argument values. Result registers are identical
    	// to argument registers, so this number is used for those too.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:38:52 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. src/runtime/cgo/gcc_signal_ios_arm64.c

    {
    	kern_return_t ret;
    	arm_unified_thread_state_t thread_state;
    	mach_msg_type_number_t state_count = ARM_UNIFIED_THREAD_STATE_COUNT;
    
    	// Returning KERN_SUCCESS intercepts the exception.
    	//
    	// Returning KERN_FAILURE lets the exception fall through to the
    	// next handler, which is the standard signal emulation code
    	// registered on the task port.
    
    	if (exception != EXC_BAD_ACCESS) {
    		return KERN_FAILURE;
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 21:04:22 UTC 2024
    - 6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/api/meta/interfaces.go

    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/apimachinery/pkg/types"
    )
    
    type ListMetaAccessor interface {
    	GetListMeta() List
    }
    
    // List lets you work with list metadata from any of the versioned or
    // internal API objects. Attempting to set or retrieve a field on an object that does
    // not support that field will be a no-op and return a default value.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 05 23:44:02 UTC 2021
    - 5.5K bytes
    - Viewed (0)
Back to top