Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 159 for pleg (0.09 sec)

  1. pkg/volume/plugins_test.go

    	var prober DynamicPluginProber = nil // TODO (#51147) inject mock
    	vpm.InitPlugins(newTestPlugin(), prober, nil)
    
    	plug, err := vpm.FindPluginByName(testPluginName)
    	if err != nil {
    		t.Fatal("Can't find the plugin by name")
    	}
    	if plug.GetPluginName() != testPluginName {
    		t.Errorf("Wrong name: %s", plug.GetPluginName())
    	}
    
    	_, err = vpm.FindPluginBySpec(nil)
    	if err == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. apache-maven/src/main/appended-resources/META-INF/NOTICE.vm

    you should look to the Redistributor's license for terms and conditions of use. ASM 4.1 The plug-in includes software developed by the ObjectWeb consortium as part of the ASM project at http://asm.ow2.org/ http://asm.ow2.org/. A subset of ASM is re-packaged within the source and binary of the plug-in (org.eclipse.sisu.space.asm.*) to avoid version collisions with other usage and is also available from the plug-in's github repository. Your use of the ASM code is subject to the terms and conditions of...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Sep 10 19:27:25 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  3. src/math/erfc_s390x.s

    	BLTU	L3
    	FMOVD	F0, F1
    L9:
    	MOVH	$0x400F, R3
    	MOVW	R1, R6
    	MOVW	R3, R7
    	CMPBGT	R6, R7, L10
    	FMOVD	784(R9), F3
    	FSUB	F1, F3
    	VLEG	$0, 776(R9), V20
    	WFDDB	V1, V3, V6
    	VLEG	$0, 768(R9), V18
    	FMOVD	760(R9), F7
    	FMOVD	752(R9), F5
    	VLEG	$0, 744(R9), V16
    	FMOVD	736(R9), F3
    	FMOVD	728(R9), F2
    	FMOVD	720(R9), F4
    	WFMDB	V6, V6, V1
    	FMUL	F0, F0
    	MOVH	$0x0, R3
    	WFMADB	V1, V7, V20, V7
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 15:34:41 UTC 2019
    - 14.4K bytes
    - Viewed (0)
  4. pkg/volume/emptydir/empty_dir_test.go

    	if plug.GetPluginName() != "kubernetes.io/empty-dir" {
    		t.Errorf("Wrong name: %s", plug.GetPluginName())
    	}
    	if !plug.CanSupport(&volume.Spec{Volume: &v1.Volume{VolumeSource: v1.VolumeSource{EmptyDir: &v1.EmptyDirVolumeSource{}}}}) {
    		t.Errorf("Expected true")
    	}
    	if plug.CanSupport(&volume.Spec{Volume: &v1.Volume{VolumeSource: v1.VolumeSource{}}}) {
    		t.Errorf("Expected false")
    	}
    }
    
    type fakeMountDetector struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  5. pkg/volume/csi/csi_util_test.go

    		driver.Spec.SELinuxMount = &seLinuxMountSupport
    	case "no_selinux":
    		driver.Spec.SELinuxMount = &noSElinuxMountSupport
    	}
    	return driver
    }
    
    func TestSaveVolumeData(t *testing.T) {
    	plug, tmpDir := newTestPlugin(t, nil)
    	defer os.RemoveAll(tmpDir)
    	testCases := []struct {
    		name       string
    		data       map[string]string
    		shouldFail bool
    	}{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 14:49:03 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.7.md

      * Fix a bug where container cannot run as root when SecurityContext.RunAsNonRoot is false. ([#47009](https://github.com/kubernetes/kubernetes/pull/47009), [@yujuhong](https://github.com/yujuhong))
    
      * Fix the Kubelet PLEG update timestamp to better reflect the health of the component when the container runtime request hangs. ([#45496](https://github.com/kubernetes/kubernetes/pull/45496), [@andyxning](https://github.com/andyxning))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 308.7K bytes
    - Viewed (0)
  7. src/math/atan_s390x.s

    	WFMDB	V6, V6, V1
    	FMOVD	72(R5), F5
    	WFMADB	V2, V5, V7, V5
    	FMOVD	64(R5), F7
    	WFMADB	V2, V7, V16, V7
    	VLEG	$0, 56(R5), V16
    	WFMADB	V6, V5, V7, V5
    	WFMADB	V1, V4, V3, V4
    	FMOVD	48(R5), F7
    	FMOVD	40(R5), F3
    	WFMADB	V2, V3, V7, V3
    	FMOVD	32(R5), F7
    	WFMADB	V2, V7, V16, V7
    	VLEG	$0, 24(R5), V16
    	WFMADB	V1, V4, V5, V4
    	FMOVD	16(R5), F5
    	WFMADB	V6, V3, V7, V3
    	FMOVD	8(R5), F7
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 15:34:41 UTC 2019
    - 3.7K bytes
    - Viewed (0)
  8. pkg/volume/csi/testing/testing.go

    		tmpDir,
    		client,
    		csi.ProbeVolumePlugins(),
    		"fakeNode",
    		csiDriverLister,
    		nil,
    	)
    	plugMgr := host.GetPluginMgr()
    
    	plug, err := plugMgr.FindPluginByName(csi.CSIPluginName)
    	if err != nil {
    		t.Fatalf("can't find plugin %v", csi.CSIPluginName)
    	}
    
    	return plugMgr, &plug, tmpDir
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 07 00:11:50 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  9. dbflute_fess/dfprop/_readme.txt

    o replaceSchemaMap.dfprop
    
    Properties for documents:
    o documentMap.dfprop
    
    Properties for non-functional adjustments:
    o sourceCopyright.dfprop
    o infraMap.dfprop (manual making)
    
    Properties for plug-ins:
    o freeGenMap.dfprop (manual making)
    o lastafluteMap.dfprop (manual making)
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 29 07:34:32 UTC 2018
    - 930 bytes
    - Viewed (0)
  10. src/math/sin_s390x.s

    	FCMPU   F1, F2
    	BGT     L30
    	MOVD    $sincosc7<>+0(SB), R1
    	FMOVD   0(R1), F4
    	MOVD    $sincosc6<>+0(SB), R1
    	VLEG    $0, 0(R1), V20
    	MOVD    $sincosc5<>+0(SB), R1
    	VLEG    $0, 0(R1), V18
    	MOVD    $sincosc4<>+0(SB), R1
    	FMOVD   0(R1), F6
    	MOVD    $sincosc2<>+0(SB), R1
    	VLEG    $0, 0(R1), V16
    	MOVD    $sincosc3<>+0(SB), R1
    	FMOVD   0(R1), F7
    	MOVD    $sincosc1<>+0(SB), R1
    	FMOVD   0(R1), F5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 04:25:54 UTC 2023
    - 8.6K bytes
    - Viewed (0)
Back to top