Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 362 for ecsi (2.12 sec)

  1. pkg/controller/volume/attachdetach/attach_detach_controller_test.go

    	"k8s.io/kubernetes/pkg/volume"
    	"k8s.io/kubernetes/pkg/volume/csi"
    	"k8s.io/kubernetes/pkg/volume/util"
    	"k8s.io/kubernetes/test/utils/ktesting"
    )
    
    const (
    	intreePDUniqueNamePrefix = "kubernetes.io/gce-pd/"
    	csiPDUniqueNamePrefix    = "kubernetes.io/csi/pd.csi.storage.gke.io^projects/UNSPECIFIED/zones/UNSPECIFIED/disks/"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 11:00:37 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  2. docs/yo/docs/index.md

    ![ReDoc](https://fastapi.tiangolo.com/img/index/index-02-redoc-simple.png)
    
    ## Àpẹẹrẹ ìgbésókè mìíràn
    
    Ní báyìí ṣe àtúnṣe fáìlì `main.py` láti gba kókó èsì láti inú ìbéèrè `PUT`.
    
    Ní báyìí, ṣe ìkéde kókó èsì API nínú kóòdù rẹ nipa lílo àwọn ìtọ́kasí àmì irúfẹ́ Python, ọpẹ́ pàtàkìsi sí Pydantic.
    
    ```Python hl_lines="4  9-12  25-27"
    from typing import Union
    
    from fastapi import FastAPI
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/extension/wasmplugin_test.go

    					TypedConfig: networkFilter,
    				},
    			},
    		},
    	}
    	for _, tc := range testCases {
    		t.Run(tc.name, func(t *testing.T) {
    			ecs := InsertedExtensionConfigurations(tc.wasmPlugins, tc.names, nil)
    			if diff := cmp.Diff(tc.expectedECs, ecs, protocmp.Transform()); diff != "" {
    				t.Fatal(diff)
    			}
    		})
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. pkg/kubelet/volumemanager/cache/desired_state_of_world.go

    	return nil
    }
    
    // Return the volume plugin name, together with the CSI driver name if it's a CSI volume.
    func getVolumePluginNameWithDriver(plugin volume.VolumePlugin, spec *volume.Spec) string {
    	pluginName := plugin.GetPluginName()
    	if pluginName != csi.CSIPluginName {
    		return pluginName
    	}
    
    	// It's a CSI volume
    	driverName, err := csi.GetCSIDriverName(spec)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  5. go.work

    	./staging/src/k8s.io/component-base
    	./staging/src/k8s.io/component-helpers
    	./staging/src/k8s.io/controller-manager
    	./staging/src/k8s.io/cri-api
    	./staging/src/k8s.io/cri-client
    	./staging/src/k8s.io/csi-translation-lib
    	./staging/src/k8s.io/dynamic-resource-allocation
    	./staging/src/k8s.io/endpointslice
    	./staging/src/k8s.io/kms
    	./staging/src/k8s.io/kube-aggregator
    	./staging/src/k8s.io/kube-controller-manager
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  6. pkg/controller/volume/attachdetach/attach_detach_controller.go

    	pvcQueue workqueue.TypedRateLimitingInterface[string]
    
    	// csiMigratedPluginManager detects in-tree plugins that have been migrated to CSI
    	csiMigratedPluginManager csimigration.PluginManager
    
    	// intreeToCSITranslator translates from in-tree volume specs to CSI
    	intreeToCSITranslator csimigration.InTreeToCSITranslator
    }
    
    func (adc *attachDetachController) Run(ctx context.Context) {
    	defer runtime.HandleCrash()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  7. pkg/controller/volume/expand/expand_controller.go

    	migratable, err := expc.csiMigratedPluginManager.IsMigratable(volumeSpec)
    	if err != nil {
    		logger.V(4).Info("Failed to check CSI migration status for PVC with error", "pvcKey", key, "err", err)
    		return nil
    	}
    	// handle CSI migration scenarios before invoking FindExpandablePluginBySpec for in-tree
    	if migratable {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zptrace_x86_linux.go

    //go:build linux && (386 || amd64)
    
    package unix
    
    import "unsafe"
    
    // PtraceRegs386 is the registers used by 386 binaries.
    type PtraceRegs386 struct {
    	Ebx      int32
    	Ecx      int32
    	Edx      int32
    	Esi      int32
    	Edi      int32
    	Ebp      int32
    	Eax      int32
    	Xds      int32
    	Xes      int32
    	Xfs      int32
    	Xgs      int32
    	Orig_eax int32
    	Eip      int32
    	Xcs      int32
    	Eflags   int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. pkg/controller/volume/persistentvolume/provision_test.go

    			errors:          noerrors,
    			test:            testSyncClaim,
    		},
    		{
    			// Provision a volume with a data source will proceed
    			// for CSI plugins
    			"11-26 - csi with data source",
    			novolumes,
    			novolumes,
    			claimWithAnnotation(volume.AnnStorageProvisioner, "mydriver.csi.k8s.io",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  10. cmd/kube-controller-manager/app/plugins.go

    	// given binary target.
    
    	"fmt"
    
    	"k8s.io/klog/v2"
    
    	// Volume plugins
    	"k8s.io/kubernetes/pkg/volume"
    	"k8s.io/kubernetes/pkg/volume/csi"
    	"k8s.io/kubernetes/pkg/volume/fc"
    	"k8s.io/kubernetes/pkg/volume/flexvolume"
    	"k8s.io/kubernetes/pkg/volume/hostpath"
    	"k8s.io/kubernetes/pkg/volume/iscsi"
    	"k8s.io/kubernetes/pkg/volume/nfs"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:17:15 UTC 2024
    - 6.1K bytes
    - Viewed (0)
Back to top