Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,100 for Driver (0.12 sec)

  1. src/cmd/vendor/golang.org/x/sys/windows/setupapi_windows.go

    	DI_FLAGSEX_FILTERSIMILARDRIVERS     DI_FLAGSEX = 0x02000000 // only include similar drivers in class list
    	DI_FLAGSEX_INSTALLEDDRIVER          DI_FLAGSEX = 0x04000000 // only add the installed driver to the class or compat driver list.  Used in calls to SetupDiBuildDriverInfoList
    	DI_FLAGSEX_NO_CLASSLIST_NODE_MERGE  DI_FLAGSEX = 0x08000000 // Don't remove identical driver nodes from the class list
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 67.2K bytes
    - Viewed (0)
  2. pkg/volume/csi/csi_util_test.go

    				CSI: &api.CSIPersistentVolumeSource{
    					Driver:       driverName,
    					VolumeHandle: volID,
    					ReadOnly:     false,
    				},
    			},
    		},
    	}
    }
    
    func makeTestVol(name string, driverName string) *api.Volume {
    	ro := false
    	return &api.Volume{
    		Name: name,
    		VolumeSource: api.VolumeSource{
    			CSI: &api.CSIVolumeSource{
    				Driver:   driverName,
    				ReadOnly: &ro,
    			},
    		},
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 14:49:03 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  3. pkg/volume/csi/nodeinfomanager/nodeinfomanager.go

    		return err
    	}
    
    	hasModified := false
    	// Uninstall CSINodeDriver with name csiDriverName
    	drivers := nodeInfo.Spec.Drivers[:0]
    	for _, driver := range nodeInfo.Spec.Drivers {
    		if driver.Name != csiDriverName {
    			drivers = append(drivers, driver)
    		} else {
    			// Found a driver with name csiDriverName
    			// Set hasModified to true because it will be removed
    			hasModified = true
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/JavaExecIntegrationTest.groovy

                    mainClass = "driver.Driver"
                    args "1"
                }
            """
        }
    
        private static String mainClass(String body) {
            """
                package driver;
    
                import java.io.*;
                import java.lang.System;
    
                public class Driver {
                    public static void main(String[] args) {
                    ${body}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 06:04:19 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  5. pkg/volume/csi/csi_block.go

    	// Request to publish a block volume to publishPath.
    	// Expectation for driver is to place a block volume on the publishPath, by bind-mounting the device file on the publishPath or
    	// creating device file on the publishPath.
    	// Parent directory for publishPath is created by k8s, but driver is responsible for creating publishPath itself.
    	// If driver doesn't implement NodeStageVolume, attaching the block volume to the node may be done, here.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 06:07:40 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  6. pkg/apis/storage/v1/defaults_test.go

    		t.Errorf("%v\nSource: %#v", err, obj2)
    		return nil
    	}
    	return obj3
    }
    
    func TestSetDefaultStorageCapacityEnabled(t *testing.T) {
    	driver := &storagev1.CSIDriver{}
    
    	// field should be defaulted
    	defaultStorageCapacity := false
    	output := roundTrip(t, runtime.Object(driver)).(*storagev1.CSIDriver)
    	outStorageCapacity := output.Spec.StorageCapacity
    	if outStorageCapacity == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  7. src/database/sql/sql_test.go

    		}
    	})
    
    	db := newTestDB(t, "magicquery")
    	defer closeDB(t, db)
    
    	driver := db.Driver().(*fakeDriver)
    
    	// Force the number of open connections to 0 so we can get an accurate
    	// count for the test
    	db.clearAllConns(t)
    
    	driver.mu.Lock()
    	opens0 := driver.openCount
    	closes0 := driver.closeCount
    	driver.mu.Unlock()
    
    	db.SetMaxIdleConns(10)
    	db.SetMaxOpenConns(10)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  8. utils/utils_test.go

    		{"error not equal", errors.New("1"), errors.New("2"), false},
    		{"driver.Valuer equal", ModifyAt{Time: now, Valid: true}, ModifyAt{Time: now, Valid: true}, true},
    		{"driver.Valuer not equal", ModifyAt{Time: now, Valid: true}, ModifyAt{Time: now.Add(time.Second), Valid: true}, false},
    		{"driver.Valuer equal (ptr to nil ptr)", (*ModifyAt)(nil), &ModifyAt{}, false},
    	}
    	for _, test := range assertEqualTests {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Feb 19 03:42:25 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  9. 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)
  10. common-protos/k8s.io/api/resource/v1alpha2/generated.proto

    message ResourceClaimSpec {
      // ResourceClassName references the driver and additional parameters
      // via the name of a ResourceClass that was created as part of the
      // driver deployment.
      optional string resourceClassName = 1;
    
      // ParametersRef references a separate object with arbitrary parameters
      // that will be used by the driver when allocating a resource for the
      // claim.
      //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 14.4K bytes
    - Viewed (0)
Back to top