Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 1,100 for Driver (1.12 sec)

  1. pkg/scheduler/framework/plugins/nodevolumelimits/csi.go

    	result[volumeUniqueName] = volumeLimitKey
    	return nil
    }
    
    // getCSIDriverInfo returns the CSI driver name and volume ID of a given PVC.
    // If the PVC is from a migrated in-tree plugin, this function will return
    // the information of the CSI driver that the plugin has been migrated to.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 18:07:11 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/compile_mlir_util/BUILD

    # copybara:uncomment package(default_applicable_licenses = ["//tensorflow:license"])
    
    licenses(["notice"])
    
    glob_lit_tests(
        name = "all_tests",
        data = [":test_utilities"],
        driver = "@llvm-project//mlir:run_lit.sh",
        test_file_exts = [
            "mlir",
            "pbtxt",
        ],
    )
    
    # Bundle together all of the test utilities that are used by tests.
    filegroup(
        name = "test_utilities",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 15:18:46 UTC 2023
    - 705 bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/mlir2graph/BUILD

    # copybara:uncomment package(default_applicable_licenses = ["//tensorflow:license"])
    
    licenses(["notice"])
    
    glob_lit_tests(
        name = "all_tests",
        data = [":test_utilities"],
        driver = "@llvm-project//mlir:run_lit.sh",
        test_file_exts = ["mlir"],
    )
    
    # Bundle together all of the test utilities that are used by tests.
    filegroup(
        name = "test_utilities",
        testonly = True,
        data = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 20 23:11:32 UTC 2023
    - 673 bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/executor_tpuv1_island_coarsening/BUILD

    # copybara:uncomment package(default_applicable_licenses = ["//tensorflow:license"])
    
    licenses(["notice"])
    
    glob_lit_tests(
        name = "all_tests",
        data = [":test_utilities"],
        driver = "@llvm-project//mlir:run_lit.sh",
        test_file_exts = [
            "mlir",
            "pbtxt",
        ],
    )
    
    # Bundle together all of the test utilities that are used by tests.
    filegroup(
        name = "test_utilities",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 15:18:46 UTC 2023
    - 694 bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/executor_tpuv1_outline_island/BUILD

    # copybara:uncomment package(default_applicable_licenses = ["//tensorflow:license"])
    
    licenses(["notice"])
    
    glob_lit_tests(
        name = "all_tests",
        data = [":test_utilities"],
        driver = "@llvm-project//mlir:run_lit.sh",
        test_file_exts = [
            "mlir",
            "pbtxt",
        ],
    )
    
    # Bundle together all of the test utilities that are used by tests.
    filegroup(
        name = "test_utilities",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 15:18:46 UTC 2023
    - 694 bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/tf_to_hlo_pipeline/BUILD

    # copybara:uncomment package(default_applicable_licenses = ["//tensorflow:license"])
    
    licenses(["notice"])
    
    glob_lit_tests(
        name = "all_tests",
        data = [":test_utilities"],
        driver = "@llvm-project//mlir:run_lit.sh",
        test_file_exts = [
            "mlir",
            "pbtxt",
        ],
    )
    
    # Bundle together all of the test utilities that are used by tests.
    filegroup(
        name = "test_utilities",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 15:18:46 UTC 2023
    - 694 bytes
    - Viewed (0)
  7. pkg/volume/csi/csi_metrics_test.go

    		targetPath string
    		exitError  error
    	}{
    		{
    			name:       "volume with no driver",
    			volumeID:   "foobar",
    			targetPath: "/mnt/foo",
    			exitError:  transientError,
    		},
    	}
    
    	for _, tc := range tests {
    		metricsGetter := &metricsCsi{volumeID: tc.volumeID, targetPath: tc.targetPath}
    		metricsGetter.driverName = "unknown-driver"
    		_, err := metricsGetter.GetMetrics()
    		if err == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 06:07:40 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  8. src/runtime/testdata/testprog/coro.go

    	})
    	register("CoroLockOSThreadStopLockedIterNested", func() {
    		println("expect: OK")
    		CoroLockOSThread(callerStopLocked, iterNested)
    	})
    }
    
    func CoroLockOSThread(driver func(iter.Seq[int]) error, seq iter.Seq[int]) {
    	if err := driver(seq); err != nil {
    		println("error:", err.Error())
    		return
    	}
    	println("OK")
    }
    
    func callerExhaust(i iter.Seq[int]) error {
    	next, _ := iter.Pull(i)
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 19:46:10 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  9. src/runtime/testdata/testprogcgo/coro.go

    	h := cgo.Handle(handle)
    	h.Value().(func())()
    	h.Delete()
    }
    
    func callFromC(f func()) {
    	C.call_go(C.uintptr_t(cgo.NewHandle(f)))
    }
    
    func CoroCgo(driver func(iter.Seq[int]) error, seq iter.Seq[int]) {
    	if err := driver(seq); err != nil {
    		println("error:", err.Error())
    		return
    	}
    	println("OK")
    }
    
    func callerExhaust(i iter.Seq[int]) error {
    	next, _ := iter.Pull(i)
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 19:46:10 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.PersistentVolume.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 7.7K bytes
    - Viewed (0)
Back to top