Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 327 for effort (0.11 sec)

  1. pkg/kubelet/kuberuntime/kuberuntime_container_linux_test.go

    		},
    
    		// With Guaranteed and Best-effort QoS
    		{
    			name:                       "Best-effort QoS, cgroups v2, NoSwap",
    			cgroupVersion:              cgroupV2,
    			qosClass:                   v1.PodQOSBestEffort,
    			nodeSwapFeatureGateEnabled: true,
    			swapBehavior:               "NoSwap",
    		},
    		{
    			name:                       "Best-effort QoS, cgroups v2, LimitedSwap",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 41K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/qos_container_manager_linux.go

    	if err := cm.Validate(rootContainer); err != nil {
    		return fmt.Errorf("error validating root container %v : %w", rootContainer, err)
    	}
    
    	// Top level for Qos containers are created only for Burstable
    	// and Best Effort classes
    	qosClasses := map[v1.PodQOSClass]CgroupName{
    		v1.PodQOSBurstable:  NewCgroupName(rootContainer, strings.ToLower(string(v1.PodQOSBurstable))),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 20:42:59 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/quantization_config.proto

      // Operand index -> QuantizedType mapping. Operands that are not specified
      // here will be quantized with best effort.
      map<int32, QuantizedType> input_quantized_types = 1;
    }
    
    message WeightOnlyPtq {
      // Operand index -> QuantizedType mapping. Operands that are not specified
      // here will be quantized with best effort.
      map<int32, QuantizedType> input_quantized_types = 1;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/util/concurrent/MoreExecutors.java

       *
       * <p>The implementation deviates from the {@code ExecutorService} specification with regards to
       * the {@code shutdownNow} method. First, "best-effort" with regards to canceling running tasks is
       * implemented as "no-effort". No interrupts or other attempts are made to stop threads executing
       * tasks. Second, the returned list will always be empty, as any submitted task is considered to
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 10:40:05 UTC 2024
    - 39K bytes
    - Viewed (0)
  5. guava/src/com/google/common/util/concurrent/MoreExecutors.java

       *
       * <p>The implementation deviates from the {@code ExecutorService} specification with regards to
       * the {@code shutdownNow} method. First, "best-effort" with regards to canceling running tasks is
       * implemented as "no-effort". No interrupts or other attempts are made to stop threads executing
       * tasks. Second, the returned list will always be empty, as any submitted task is considered to
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 10:40:05 UTC 2024
    - 43.7K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modfetch/fetch.go

    	tmpPrefix := filepath.Base(dir) + ".tmp-"
    	if old, err := filepath.Glob(filepath.Join(str.QuoteGlob(parentDir), str.QuoteGlob(tmpPrefix)+"*")); err == nil {
    		for _, path := range old {
    			RemoveAll(path) // best effort
    		}
    	}
    	if dirExists {
    		if err := RemoveAll(dir); err != nil {
    			return "", err
    		}
    	}
    
    	partialPath, err := CachePath(ctx, mod, "partial")
    	if err != nil {
    		return "", err
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/stablehlo/odml_to_stablehlo.cc

    // NOLINTNEXTLINE
    opt<std::string> output_path("o", llvm::cl::desc("<output path>"),
                                 llvm::cl::Required);
    
    // NOLINTNEXTLINE
    opt<std::string> export_type("export-type", llvm::cl::desc("<export type>"),
                                 llvm::cl::Optional, llvm::cl::init("mlir"));
    
    // NOLINTNEXTLINE
    opt<bool> verbose(
        "v", llvm::cl::desc("Dump intermediate translations to output dir."),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:16:49 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  8. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/ExceptionPlaceholder.java

                    if (Collection.class.isAssignableFrom(returnType)) {
                        return method;
                    }
                }
            }
            return null;
        }
    
        /**
         * Does best effort to find a method which potentially returns multiple causes
         * for an exception. This is for classes of external projects which actually do
         * something similar to what we do in Gradle with {@link DefaultMultiCauseException}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/shape_inference.cc

      for (Node* n : order) {
        VLOG(4) << "Propagating shape for node " << n->name()
                << ", type: " << n->type_string();
        // Ignore the status returned by the shape_refiner. We want the best effort
        // shapes, even if no shape function is registered for a node.
        Status status = shape_refiner->AddNode(n);
        if (!status.ok()) {
          VLOG(1) << "Shape inference failed for node " << n->name() << ": "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 13K bytes
    - Viewed (0)
  10. src/runtime/error.go

    func (e errorAddressString) RuntimeError() {}
    
    func (e errorAddressString) Error() string {
    	return "runtime error: " + e.msg
    }
    
    // Addr returns the memory address where a fault occurred.
    // The address provided is best-effort.
    // The veracity of the result may depend on the platform.
    // Errors providing this method will only be returned as
    // a result of using [runtime/debug.SetPanicOnFault].
    func (e errorAddressString) Addr() uintptr {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:10:41 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top