Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 116 for assign_id (0.38 sec)

  1. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/analysis/transformation/OriginReplacementTest.kt

                val result = replaceInnerReceiverWithTopLevel(assignments.single().rhs)
                val valAssignedFunction = ((result as ObjectOrigin.FromLocalValue).assigned) as ObjectOrigin.NewObjectFromMemberFunction
                val functionReceiver = valAssignedFunction.receiver as ObjectOrigin.ImplicitThisReceiver
                assertEquals(topLevelReceiver, functionReceiver.resolvedTo)
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 17:31:36 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  2. pkg/proxy/util/nodeport_addresses.go

    type NodePortAddresses struct {
    	cidrStrings []string
    
    	cidrs                []*net.IPNet
    	containsIPv4Loopback bool
    	matchAll             bool
    }
    
    // RFC 5735 127.0.0.0/8 - This block is assigned for use as the Internet host loopback address
    var ipv4LoopbackStart = net.IPv4(127, 0, 0, 0)
    
    // NewNodePortAddresses takes an IP family and the `--nodeport-addresses` value (which is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/xla_device_context.h

    #include "tensorflow/core/framework/allocator.h"
    #include "tensorflow/core/framework/device_base.h"
    #include "tensorflow/core/lib/core/status.h"
    
    namespace tensorflow {
    
    // The allocator used for Tensors assigned to the XLA device. The allocator
    // ignores the alignment and size of the request and always returns a new,
    // empty, XlaTensor.
    class XlaDeviceAllocator : public Allocator {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  4. cni/pkg/util/podutil.go

    			"status",
    		)
    	if errors.IsNotFound(err) {
    		return nil
    	}
    	return err
    }
    
    // Get any IPs currently assigned to the Pod.
    //
    // If 'PodIPs' exists, it is preferred (and should be guaranteed to contain the address in 'PodIP'),
    // otherwise fallback to 'PodIP'.
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 17:18:11 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/devicemanager/types.go

    	GetCapacity() (v1.ResourceList, v1.ResourceList, []string)
    	GetWatcherHandler() cache.PluginHandler
    
    	// GetDevices returns information about the devices assigned to pods and containers
    	GetDevices(podUID, containerName string) ResourceDeviceInstances
    
    	// GetAllocatableDevices returns information about all the devices known to the manager
    	GetAllocatableDevices() ResourceDeviceInstances
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 5K bytes
    - Viewed (0)
  6. docs/en/docs/tutorial/path-operation-configuration.md

    ## Description from docstring
    
    As descriptions tend to be long and cover multiple lines, you can declare the *path operation* description in the function <abbr title="a multi-line string as the first expression inside a function (not assigned to any variable) used for documentation">docstring</abbr> and **FastAPI** will read it from there.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Oct 17 05:59:11 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/device_util.cc

    Status DeviceNameToDeviceType(const string& device, DeviceType* device_type) {
      DeviceNameUtils::ParsedName parsed;
      if (!DeviceNameUtils::ParseFullName(device, &parsed)) {
        return errors::Internal("Malformed assigned device '", device, "'");
      }
      *device_type = DeviceType(parsed.type);
      return absl::OkStatus();
    }
    
    absl::StatusOr<std::optional<jit::DeviceId>> PickDeviceForXlaImpl(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/utils/eval_util.cc

      RETURN_FAILURE_IF_ERROR(status);
      auto clean_op = MakeCleanup([op] { TFE_DeleteOp(op); });
    
      // Explicitly set device to Host CPU instead of the device present in device
      // attribute of the MLIR op. The assigned device might be remote, not
      // available during compilation or compilation only device for on demand
      // execution which may create a recursion if used for constant folding.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 13 06:02:14 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  9. platforms/core-configuration/declarative-dsl-evaluator/src/main/kotlin/org/gradle/internal/declarativedsl/evaluator/EvaluationFailureMessageGenerator.kt

            ErrorReason.UnitAssignment -> "assignment of a Unit value"
            ErrorReason.UnresolvedAssignmentLhs -> "unresolved assignment target"
            ErrorReason.UnresolvedAssignmentRhs -> "unresolved assigned value"
            is ErrorReason.UnresolvedReference -> "unresolved reference '${errorReason.reference.sourceData.text()}'"
            ErrorReason.UnusedConfigureLambda -> "a configuring block is not expected"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:47 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  10. src/crypto/ecdsa/ecdsa_s390x.go

    // the name of the curve to see if it matches the curves supported(P-256, P-384, P-521).
    // Then, based on the curve name, a function code and a block size will be assigned.
    // If KDSA instruction is not available or if the curve is not supported, canUseKDSA
    // will set ok to false.
    func canUseKDSA(c elliptic.Curve) (functionCode uint64, blockSize int, ok bool) {
    	if testingDisableKDSA {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top