Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 585 for driver1 (0.18 sec)

  1. src/database/sql/convert.go

    }
    
    // ccChecker wraps the driver.ColumnConverter and allows it to be used
    // as if it were a NamedValueChecker. If the driver ColumnConverter
    // is not present then the NamedValueChecker will return driver.ErrSkip.
    type ccChecker struct {
    	cci  driver.ColumnConverter
    	want int
    }
    
    func (c ccChecker) CheckNamedValue(nv *driver.NamedValue) error {
    	if c.cci == nil {
    		return driver.ErrSkip
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/analysis/doc.go

    	}
    
    	func run(pass *analysis.Pass) (interface{}, error) {
    		...
    	}
    
    An analysis driver is a program such as vet that runs a set of
    analyses and prints the diagnostics that they report.
    The driver program must import the list of Analyzers it needs.
    Typically each Analyzer resides in a separate package.
    To add a new Analyzer to an existing driver, add another item to the list:
    
    	import ( "unusedresult"; "nilness"; "printf" )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/resource/v1alpha2/types_swagger_doc_generated.go

    	"parametersRef":        "ParametersRef references an arbitrary separate object that may hold parameters that will be used by the driver when allocating a resource that uses this class. A dynamic resource driver can distinguish between parameters stored here and and those stored...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  4. pkg/apis/resource/types.go

    	// different drivers. For each driver, this array has at most one
    	// entry which then may have one or more per-driver requests.
    	//
    	// May be empty, in which case the claim can always be allocated.
    	DriverRequests []DriverRequests
    }
    
    // DriverRequests describes all resources that are needed from one particular driver.
    type DriverRequests struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/resource/v1alpha2/generated.proto

      // DriverRequests describes all resources that are needed for the
      // allocated claim. A single claim may use resources coming from
      // different drivers. For each driver, this array has at most one
      // entry which then may have one or more per-driver requests.
      //
      // May be empty, in which case the claim can always be allocated.
      //
      // +listType=atomic
      repeated DriverRequests driverRequests = 4;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 22:07:50 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/storage/v1alpha1/generated.proto

      optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
    
      // Name of the CSI driver
      // This field is immutable.
      optional string driverName = 2;
    
      // parameters hold volume attributes defined by the CSI driver. These values
      // are opaque to the Kubernetes and are passed directly to the CSI driver.
      // The underlying storage provider supports changing these attributes on an
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  7. cmd/sftp-server-driver.go

    Sveinn <******@****.***> 1717573873 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 07:51:13 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/resource/v1alpha2/types.go

    	// DriverRequests describes all resources that are needed for the
    	// allocated claim. A single claim may use resources coming from
    	// different drivers. For each driver, this array has at most one
    	// entry which then may have one or more per-driver requests.
    	//
    	// May be empty, in which case the claim can always be allocated.
    	//
    	// +listType=atomic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 27 10:22:35 UTC 2024
    - 30K bytes
    - Viewed (0)
  9. internal/config/drive/drive.go

    // You should have received a copy of the GNU Affero General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package drive
    
    import (
    	"sync"
    	"time"
    
    	"github.com/minio/minio/internal/config"
    	"github.com/minio/pkg/v3/env"
    )
    
    // Drive specific timeout environment variables
    const (
    	EnvMaxDriveTimeout       = "MINIO_DRIVE_MAX_TIMEOUT"
    	EnvMaxDriveTimeoutLegacy = "_MINIO_DRIVE_MAX_TIMEOUT"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/storage/v1alpha1/types_swagger_doc_generated.go

    	"nodeTopology":      "nodeTopology...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 10.6K bytes
    - Viewed (0)
Back to top