Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 591 for choosing (0.64 sec)

  1. pkg/kubelet/preemption/preemption.go

    // Chooses pods that minimize "distance" to the requirements.
    // If more than one pod exists that fulfills the remaining requirements,
    // it chooses the pod that has the "smaller resource request"
    // This method, by repeatedly choosing the pod that fulfills as much of the requirements as possible,
    // attempts to minimize the number of pods returned.
    func getPodsToPreemptByDistance(pods []*v1.Pod, requirements admissionRequirementList) ([]*v1.Pod, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 02 16:53:19 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Lists.java

              return rest[index - 2];
          }
        }
    
        @J2ktIncompatible private static final long serialVersionUID = 0;
      }
    
      /**
       * Returns every possible list that can be formed by choosing one element from each of the given
       * lists in order; the "n-ary <a href="http://en.wikipedia.org/wiki/Cartesian_product">Cartesian
       * product</a>" of the lists. For example:
       *
       * <pre>{@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 16:48:36 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/graph/Network.java

     * prefer the simplest interface that satisfies your use case. See the <a
     * href="https://github.com/google/guava/wiki/GraphsExplained#choosing-the-right-graph-type">
     * "Choosing the right graph type"</a> section of the Guava User Guide for more details.
     *
     * <h3>Capabilities</h3>
     *
     * <p>{@code Network} supports the following use cases (<a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/logging.adoc

    INFO:: Information messages
    DEBUG:: Debug messages
    
    NOTE: The console's rich components (build status and work-in-progress area) are displayed regardless of the log level used.
    
    [[sec:choosing_a_log_level]]
    == Choosing a log level
    
    You can choose different log levels from the command line switches shown in <<#logLevelCommandLineOptions, Log level command-line options>>.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 18:32:47 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  5. internal/config/storageclass/storage-class.go

    // an erasure shard and written along with xl.meta on the drive, on a versioned
    // bucket this value is automatically chosen to 1/8th of the this value, make
    // sure to put this into consideration when choosing this value.
    func (sCfg *Config) InlineBlock() int64 {
    	ConfigLock.RLock()
    	defer ConfigLock.RUnlock()
    	if !sCfg.initialized {
    		return 128 * humanize.KiByte
    	}
    	return sCfg.inlineBlock
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/Lists.java

              return rest[index - 2];
          }
        }
    
        @J2ktIncompatible private static final long serialVersionUID = 0;
      }
    
      /**
       * Returns every possible list that can be formed by choosing one element from each of the given
       * lists in order; the "n-ary <a href="http://en.wikipedia.org/wiki/Cartesian_product">Cartesian
       * product</a>" of the lists. For example:
       *
       * <pre>{@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 16:48:36 UTC 2024
    - 41.9K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/SelectorState.java

        // that use this selector. Since a module resolve state tracks all selectors
        // for this module, when considering selectors that need to be used when
        // choosing a version, we must only consider the ones which currently have
        // outgoing edges pointing to them. If not, then it means the module was
        // evicted, but it can still be reintegrated later in a different path.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  8. guava/src/com/google/common/graph/Network.java

     * prefer the simplest interface that satisfies your use case. See the <a
     * href="https://github.com/google/guava/wiki/GraphsExplained#choosing-the-right-graph-type">
     * "Choosing the right graph type"</a> section of the Guava User Guide for more details.
     *
     * <h3>Capabilities</h3>
     *
     * <p>{@code Network} supports the following use cases (<a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  9. src/math/big/prime.go

    		return false
    	}
    	// Two is the only even prime.
    	// Already checked by caller, but here to allow testing in isolation.
    	if n[0]&1 == 0 {
    		return n.cmp(natTwo) == 0
    	}
    
    	// Baillie-OEIS "method C" for choosing D, P, Q,
    	// as in https://oeis.org/A217719/a217719.txt:
    	// try increasing P ≥ 3 such that D = P² - 4 (so Q = 1)
    	// until Jacobi(D, n) = -1.
    	// The search is expected to succeed for non-square n after just a few trials.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 02 14:43:52 UTC 2022
    - 10.4K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modget/query.go

    	// version that does not match version.
    	conflict *query
    
    	// candidates is a list of sets of alternatives for a path that matches (or
    	// contains packages that match) the pattern. The query can be resolved by
    	// choosing exactly one alternative from each set in the list.
    	//
    	// A path-literal query results in only one set: the path itself, which
    	// may resolve to either a package path or a module path.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 27 15:48:25 UTC 2023
    - 11.2K bytes
    - Viewed (0)
Back to top