Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 159 for pleg (0.05 sec)

  1. pkg/volume/fc/fc_test.go

    	plug, err := plugMgr.FindPluginByName("kubernetes.io/fc")
    	if err != nil {
    		t.Fatal("Can't find the plugin by name")
    	}
    	if plug.GetPluginName() != "kubernetes.io/fc" {
    		t.Errorf("Wrong name: %s", plug.GetPluginName())
    	}
    	if plug.CanSupport(&volume.Spec{}) {
    		t.Errorf("Expected false")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 01 15:56:32 UTC 2022
    - 14.1K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.30.md

    - Fixed node lifecycle controller panic when conditionType ready is been patch `nil` by mistake. ([#122874](https://github.com/kubernetes/kubernetes/pull/122874), [@fusida](https://github.com/fusida))
    - Fixed panic of Evented `PLEG` during kubelet start-up. ([#122475](https://github.com/kubernetes/kubernetes/pull/122475), [@pacoxu](https://github.com/pacoxu))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  3. pkg/volume/nfs/nfs_test.go

    	plug, err := plugMgr.FindPluginByName("kubernetes.io/nfs")
    	if err != nil {
    		t.Fatal("Can't find the plugin by name")
    	}
    	if plug.GetPluginName() != "kubernetes.io/nfs" {
    		t.Errorf("Wrong name: %s", plug.GetPluginName())
    	}
    
    	if !plug.CanSupport(&volume.Spec{Volume: &v1.Volume{VolumeSource: v1.VolumeSource{NFS: &v1.NFSVolumeSource{}}}}) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 01 15:56:32 UTC 2022
    - 9K bytes
    - Viewed (0)
  4. pkg/volume/csi/csi_plugin_test.go

    	})
    }
    
    func TestPluginGetPluginName(t *testing.T) {
    	plug, tmpDir := newTestPlugin(t, nil)
    	defer os.RemoveAll(tmpDir)
    	if plug.GetPluginName() != "kubernetes.io/csi" {
    		t.Errorf("unexpected plugin name %v", plug.GetPluginName())
    	}
    }
    
    func TestPluginGetVolumeName(t *testing.T) {
    	plug, tmpDir := newTestPlugin(t, nil)
    	defer os.RemoveAll(tmpDir)
    	testCases := []struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  5. pkg/volume/csi/csi_block_test.go

    		}
    	}
    }
    
    func TestBlockMapperSetupDevice(t *testing.T) {
    	plug, tmpDir := newTestPlugin(t, nil)
    	defer os.RemoveAll(tmpDir)
    
    	csiMapper, _, pv, err := prepareBlockMapperTest(plug, "test-pv", t)
    	if err != nil {
    		t.Fatalf("Failed to make a new Mapper: %v", err)
    	}
    
    	pvName := pv.GetName()
    	nodeName := string(plug.host.GetNodeName())
    
    	csiMapper.csiClient = setupClient(t, true)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 06:07:40 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  6. pkg/volume/portworx/portworx_test.go

    	plug, err := plugMgr.FindPluginByName("kubernetes.io/portworx-volume")
    	if err != nil {
    		t.Fatal("Can't find the plugin by name")
    	}
    	if plug.GetPluginName() != "kubernetes.io/portworx-volume" {
    		t.Errorf("Wrong name: %s", plug.GetPluginName())
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 21 02:17:04 UTC 2021
    - 7.4K bytes
    - Viewed (0)
  7. pkg/volume/iscsi/iscsi_test.go

    	plug, err := plugMgr.FindPluginByName("kubernetes.io/iscsi")
    	if err != nil {
    		t.Fatal("Can't find the plugin by name")
    	}
    	if plug.GetPluginName() != "kubernetes.io/iscsi" {
    		t.Errorf("Wrong name: %s", plug.GetPluginName())
    	}
    	if plug.CanSupport(&volume.Spec{Volume: &v1.Volume{VolumeSource: v1.VolumeSource{}}}) {
    		t.Errorf("Expected false")
    	}
    	if plug.CanSupport(&volume.Spec{}) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 01 15:56:32 UTC 2022
    - 16.4K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/pluggable_profiler/pluggable_profiler.h

    //
    // Conventions:
    //   * Struct prefix indicates whether struct fields should be filled by the
    //   plug-in or core TensorFlow implementation:
    //     * TF_: Set/filled by core, unless marked otherwise.
    //     * TP_: Set/filled by plug-in, unless marked otherwise.
    //     * This prefix rule only applies to structures. Enumerations and methods
    //     are all prefixed with TP_.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 14 20:04:34 UTC 2021
    - 7.4K bytes
    - Viewed (0)
  9. operator/pkg/helmreconciler/apply.go

    	if len(changedObjectKeys) > 0 {
    		err := WaitForResources(result.processedObjects, h.kubeClient,
    			h.opts.WaitTimeout, h.opts.DryRun, plog)
    		if err != nil {
    			werr := fmt.Errorf("failed to wait for resource: %v", err)
    			plog.ReportError(werr.Error())
    			return result, werr
    		}
    		plog.ReportFinished()
    
    	}
    	return result, nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 12 17:12:54 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  10. pkg/volume/hostpath/host_path_test.go

    	plug, err := plugMgr.FindPluginByName(hostPathPluginName)
    	if err != nil {
    		t.Fatal("Can't find the plugin by name")
    	}
    	if plug.GetPluginName() != hostPathPluginName {
    		t.Errorf("Wrong name: %s", plug.GetPluginName())
    	}
    	if !plug.CanSupport(&volume.Spec{Volume: &v1.Volume{VolumeSource: v1.VolumeSource{HostPath: &v1.HostPathVolumeSource{}}}}) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:37:30 UTC 2023
    - 20.5K bytes
    - Viewed (0)
Back to top