Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 432 for darkred (4.86 sec)

  1. tensorflow/compiler/jit/xla_host_send_device_context.h

    // used to transfer from host->device using Rendezvous. It transfers the
    // content of `device_memory_base` with `shape` using `stream`. Only
    // `CopyCPUTensorToDevice` method is implemented. The `done_event` is marked as
    // Concrete once transfer is completed.
    //
    // Example usage:
    //
    //  Device device;
    //  stream_executor::Stream stream(executor);
    //  Tensor cpu_tensor(host_allocator, DT_FLOAT, TensorShape({2, 2}));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 22:46:36 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/configuration/internal/DynamicCallContextTracker.java

     */
    // TODO: consider transforming this to a more generic tool for tracking the events
    //       of entering and leaving some generic context (marked with a key?)
    @ServiceScope(Scope.CrossBuildSession.class)
    public interface DynamicCallContextTracker {
        /**
         * Notifies the tracker that the control flow entered the context of a new dynamic call.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 06:02:19 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/scheduling/v1alpha1/generated.proto

      optional int32 value = 2;
    
      // globalDefault specifies whether this PriorityClass should be considered as
      // the default priority for pods that do not have any priority class.
      // Only one PriorityClass can be marked as `globalDefault`. However, if more than
      // one PriorityClasses exists with their `globalDefault` field set to true,
      // the smallest value of such global default PriorityClasses will be used as the default priority.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/scheduling/v1/types.go

    	// globalDefault specifies whether this PriorityClass should be considered as
    	// the default priority for pods that do not have any priority class.
    	// Only one PriorityClass can be marked as `globalDefault`. However, if more than
    	// one PriorityClasses exists with their `globalDefault` field set to true,
    	// the smallest value of such global default PriorityClasses will be used as the default priority.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtTypeInfoProvider.kt

        /** Returns true if the type is explicitly marked as nullable. This means it's safe to assign `null` to a variable with this type. */
        public val KaType.isMarkedNullable: Boolean get() = withValidityAssertion { this.nullability == KaTypeNullability.NULLABLE }
    
        /** Returns true if the type is a platform flexible type and may or may not be marked nullable. */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  6. src/runtime/time.go

    }
    
    // resetForSleep is called after the goroutine is parked for timeSleep.
    // We can't call timer.reset in timeSleep itself because if this is a short
    // sleep and there are many goroutines then the P can wind up running the
    // timer function, goroutineReady, before the goroutine has been parked.
    func resetForSleep(gp *g, _ unsafe.Pointer) bool {
    	gp.timer.reset(gp.sleepWhen, 0)
    	return true
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 14:36:24 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/scheduling/v1alpha1/generated.proto

      optional int32 value = 2;
    
      // globalDefault specifies whether this PriorityClass should be considered as
      // the default priority for pods that do not have any priority class.
      // Only one PriorityClass can be marked as `globalDefault`. However, if more than
      // one PriorityClasses exists with their `globalDefault` field set to true,
      // the smallest value of such global default PriorityClasses will be used as the default priority.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. pkg/kubelet/volumemanager/reconciler/reconstruct.go

    				klog.ErrorS(err, "Could not add pod to volume information to actual state of world", "pod", klog.KObj(volume.pod))
    				continue
    			}
    			seLinuxMountContext = volume.seLinuxMountContext
    			klog.V(2).InfoS("Volume is marked as uncertain and added into the actual state", "pod", klog.KObj(volume.pod), "podName", volume.podName, "volumeName", volume.volumeName, "seLinuxMountContext", volume.seLinuxMountContext)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:23:12 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/xla_host_recv_device_context.h

    // used to transfer from device->host using Rendezvous. It transfers the
    // content of `device_memory_base` with `shape` using `stream`. Only
    // `CopyDeviceTensorToCPU` method is implemented. The `done_event` is marked as
    // Concrete once transfer is completed.
    //
    // Example usage:
    //
    //  Device device;
    //  stream_executor::Stream stream(executor);
    //  Tensor device_tensor(device_allocator, DT_FLOAT, TensorShape({2, 2}));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 22:46:36 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/quantize.cc

        // be categorized as cusom ops despite each of them may require different
        // behaviors. In that case, these ops can be marked in the custom map and
        // treated separately in this pass.
    
        auto custom_op = llvm::dyn_cast_or_null<CustomOp>(op);
        if (!custom_op) return false;
    
        // Custom op which is marked in the custom op map is quantizable.
        std::string op_name = custom_op.getCustomCode().str();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top