Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 422 for Driver (0.15 sec)

  1. cmd/tier.go

    	config.Lock()
    	defer config.Unlock()
    
    	var ok bool
    	// Lookup in-memory drivercache
    	d, ok = config.drivercache[tierName]
    	if ok {
    		return d, nil
    	}
    
    	// Initialize driver from tier config matching tierName
    	t, ok := config.Tiers[tierName]
    	if !ok {
    		return nil, errTierNotFound
    	}
    	d, err = newWarmBackend(ctx, t, false)
    	if err != nil {
    		return nil, err
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 09 08:44:07 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_driver.h

      // Avoid clobbering all uses of the value, limit to just these ops.
      SmallVector<std::pair<Operation*, int>> users;
    };
    
    using RequantizeStates = SmallVector<RequantizeState>;
    
    // This is a worklist-driven driver for propagating quantization parameters
    // across operations.
    //
    // The initial quantization parameters are extracted from the quantized type
    // between adjacent `quantfork::QuantizeCastOp` and
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 11:42:17 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  3. pkg/volume/plugins.go

    func (spec *Spec) KubeletExpandablePluginName() string {
    	switch {
    	case spec.Volume != nil && spec.Volume.FlexVolume != nil:
    		return spec.Volume.FlexVolume.Driver
    	case spec.PersistentVolume != nil && spec.PersistentVolume.Spec.FlexVolume != nil:
    		return spec.PersistentVolume.Spec.FlexVolume.Driver
    	default:
    		return ""
    	}
    }
    
    // VolumeConfig is how volume plugins receive configuration.  An instance
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/driver/commands.go

    	return func(input io.Reader, output io.Writer, ui plugin.UI) error {
    		baseSVG := new(bytes.Buffer)
    		if err := generateSVG(input, baseSVG, ui); err != nil {
    			return err
    		}
    		_, err := output.Write([]byte(massageSVG(baseSVG.String())))
    		return err
    	}
    }
    
    func invokeVisualizer(suffix string, visualizers []string) PostProcessor {
    	return func(input io.Reader, output io.Writer, ui plugin.UI) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/volumebinding/volume_binding.go

    		{Event: framework.ClusterEvent{Resource: framework.CSINode, ActionType: framework.Add | framework.Update}},
    		// When CSIStorageCapacity is enabled, pods may become schedulable
    		// on CSI driver & storage capacity changes.
    		{Event: framework.ClusterEvent{Resource: framework.CSIDriver, ActionType: framework.Add | framework.Update}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:13:06 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  6. manifests/charts/istio-control/istio-discovery/files/injection-template.yaml

      volumes:
      - emptyDir:
        name: workload-socket
      - emptyDir:
        name: credential-socket
      {{- if eq .Values.global.caName "GkeWorkloadCertificate" }}
      - name: gke-workload-certificate
        csi:
          driver: workloadcertificates.security.cloud.google.com
      {{- else }}
      - emptyDir:
        name: workload-certs
      {{- end }}
      {{- if (isset .ObjectMeta.Annotations `sidecar.istio.io/bootstrapOverride`) }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 21:01:52 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/test_kit.adoc

    ----
    
    It is a common practice to implement any custom build logic (like plugins and task types) that is more complex in nature as external classes in a standalone project. The main driver behind this approach is bundle the compiled code into a JAR file, publish it to a binary repository and reuse it across various projects.
    
    [[sub:test-kit-classpath-injection]]
    == Getting the plugin-under-test into the test build
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  8. manifests/charts/istiod-remote/files/injection-template.yaml

      volumes:
      - emptyDir:
        name: workload-socket
      - emptyDir:
        name: credential-socket
      {{- if eq .Values.global.caName "GkeWorkloadCertificate" }}
      - name: gke-workload-certificate
        csi:
          driver: workloadcertificates.security.cloud.google.com
      {{- else }}
      - emptyDir:
        name: workload-certs
      {{- end }}
      {{- if (isset .ObjectMeta.Annotations `sidecar.istio.io/bootstrapOverride`) }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 21:01:52 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  9. pkg/controller/resourceclaim/controller.go

    		// releases the underlying resources for use by other claims.
    		//
    		// This has to be triggered by the transition from "was being used" to
    		// "is not used anymore" because a DRA driver is not required to set
    		// `status.reservedFor` together with `status.allocation`, i.e. a claim
    		// that is "currently unused" should not get deallocated.
    		//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/dra/claiminfo_test.go

    		description    string
    		state          *state.ClaimInfoState
    		expectedResult *ClaimInfo
    	}{
    		{
    			description: "successfully created object",
    			state: &state.ClaimInfoState{
    				DriverName:      "test-driver",
    				ClassName:       "test-class",
    				ClaimUID:        "test-uid",
    				ClaimName:       "test-claim",
    				Namespace:       "test-namespace",
    				PodUIDs:         sets.New[string]("test-pod-uid"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:30:31 UTC 2024
    - 21K bytes
    - Viewed (0)
Back to top