Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 508 for effort (0.31 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/cache/cache.go

    //
    // It is safe for multiple processes on a single machine to use the
    // same cache directory in a local file system simultaneously.
    // They will coordinate using operating system file locks and may
    // duplicate effort but will not corrupt the cache.
    //
    // However, it is NOT safe for multiple processes on different machines
    // to share a cache directory (for example, if the directory were stored
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 14:19:39 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  7. 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)
  8. pkg/kubelet/stats/cri_stats_provider_windows.go

    		}
    		if imageFsInfo != nil {
    			// The image filesystem id is unknown to the local node or there's
    			// an error on retrieving the stats. In these cases, we omit those stats
    			// and return the best-effort partial result. See
    			// https://github.com/kubernetes/heapster/issues/1793.
    			result.Rootfs.AvailableBytes = &imageFsInfo.Available
    			result.Rootfs.CapacityBytes = &imageFsInfo.Capacity
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 18 07:03:11 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  9. 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)
  10. src/net/http/fcgi/child.go

    		if err != nil {
    			return err
    		}
    		c := newChild(rw, handler)
    		go c.serve()
    	}
    }
    
    // ProcessEnv returns FastCGI environment variables associated with the request r
    // for which no effort was made to be included in the request itself - the data
    // is hidden in the request's context. As an example, if REMOTE_USER is set for a
    // request, it will not be found anywhere in r, but it will be included in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top