Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 202 for Advice (0.13 sec)

  1. pkg/kubelet/volumemanager/cache/desired_state_of_world.go

    	// The unique volume name used depends on whether the volume is attachable/device-mountable
    	// or not.
    	attachable := util.IsAttachableVolume(volumeSpec, dsw.volumePluginMgr)
    	deviceMountable := util.IsDeviceMountableVolume(volumeSpec, dsw.volumePluginMgr)
    	if attachable || deviceMountable {
    		// For attachable/device-mountable volumes, use the unique volume name as reported by
    		// the plugin.
    		volumeName, err =
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  2. pkg/volume/testing/testing.go

    	// TimeoutOnMountDeviceVolumeName will cause MountDevice call to timeout but Setup will finish.
    	TimeoutOnMountDeviceVolumeName = "timeout-mount-device-volume"
    	// TimeoutAndFailOnMountDeviceVolumeName will cause first MountDevice call to timeout but second call will fail
    	TimeoutAndFailOnMountDeviceVolumeName = "timeout-and-fail-mount-device-name"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/utils/export_utils.cc

        auto name_strref = named_attr.getName().str();
        auto attr = named_attr.getValue();
        absl::string_view name(name_strref.data(), name_strref.size());
        if (name == "name" || name == "device" || attrs_to_ignore.contains(name)) {
          // The name, device spec of a TF op or function are not stored as
          // AttrValue inside NodeDef, but we model them using attribute inside
          // MLIR. So we need to ignore them when going back to AttrValue here.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfrt/tests/ifrt/sink_variable_as_named_array.mlir

    // RUN: tf-tfrt-opt -split-input-file -tf-device-decompose-resource-ops -sink-variable-as-named-array %s | FileCheck %s
    
    // -----
    // Basic test: all variables tensors are for devices and sinked as named ifrt arrays
    //
    //
    // CHECK-LABEL:  func.func @serving_default(%arg0: tensor<1x3xf32>) -> tensor<1x1xf32> {
    // CHECK-NEXT:   [[HANDLE2:%.*]] = "tf.VarHandleOp"
    // CHECK-NEXT:   [[KEY:%.*]], [[FUTURE:%.*]] = "tf.IfrtLoadVariable"([[HANDLE2]])
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 15:33:17 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/scopes/KtScopeLike.kt

         */
        public fun getPossibleClassifierNames(): Set<Name>
    
        /**
         * return true if the scope may contain name, false otherwise.
         *
         * In other words `(mayContainName(name) == false) => (name !in scope)`; vice versa is not always true
         */
        public fun mayContainName(name: Name): Boolean = withValidityAssertion {
            name in getPossibleCallableNames() || name in getPossibleClassifierNames()
        }
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. internal/http/dial_linux.go

    			}
    
    			if opts.Interface != "" {
    				if h, _, err := net.SplitHostPort(address); err == nil {
    					address = h
    				}
    				// Create socket on specific vrf device.
    				// To catch all kinds of special cases this filters specifically for loopback networks.
    				if ip := net.ParseIP(address); ip != nil && !ip.IsLoopback() {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 4.8K bytes
    - Viewed (3)
  7. pkg/kubelet/container/runtime.go

    }
    
    // DeviceInfo contains information about the device.
    type DeviceInfo struct {
    	// Path on host for mapping
    	PathOnHost string
    	// Path in Container to map
    	PathInContainer string
    	// Cgroup permissions
    	Permissions string
    }
    
    // CDIDevice contains information about CDI device
    type CDIDevice struct {
    	// Name is a fully qualified device name
    	Name string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  8. build-logic/documentation/src/main/groovy/gradlebuild/docs/ReleaseNotesTransformer.java

            document.prependChild(new DocumentType("html", "", ""));
            document.head().
                    append("<meta charset='utf-8'>").
                    append("<meta name='viewport' content='width=device-width, initial-scale=1'>").
                    append("<title>Gradle @version@ Release Notes</title>").
                    append("<link rel='stylesheet' type='text/css' href='https://assets.gradle.com/lato/css/lato-font.css'/>");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_statistics_saver_op.cc

          default:
            collector = std::make_unique<CalibrationStatisticsCollectorMinMax>();
        }
      }
    };
    
    REGISTER_KERNEL_BUILDER(Name("CalibrationStatisticsSaver").Device(DEVICE_CPU),
                            CalibrationStatisticsSaverOp);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 13 01:31:23 UTC 2024
    - 8K bytes
    - Viewed (0)
  10. internal/http/listener.go

    	RecvBufSize int              // SO_RECVBUF size for the socket connection, NOTE: this sets server and client connection
    	Interface   string           // This is a VRF device passed via `--interface` flag
    	Trace       func(msg string) // Trace when starting.
    }
    
    // ForWebsocket returns TCPOptions valid for websocket net.Conn
    func (t TCPOptions) ForWebsocket() TCPOptions {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top