Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,914 for based (0.05 sec)

  1. pkg/scheduler/framework/plugins/queuesort/priority_sort.go

    // PrioritySort is a plugin that implements Priority based sorting.
    type PrioritySort struct{}
    
    var _ framework.QueueSortPlugin = &PrioritySort{}
    
    // Name returns name of the plugin.
    func (pl *PrioritySort) Name() string {
    	return Name
    }
    
    // Less is the function used by the activeQ heap algorithm to sort pods.
    // It sorts pods based on their priority. When priorities are equal, it uses
    // PodQueueInfo.timestamp.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 20 09:49:54 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/exec/BuildCompletionNotifyingBuildActionRunner.java

            } catch (Throwable t) {
                // Note: throw the failure rather than returning a result object containing the failure, as console failure logging based on the _result_ happens down in the root build scope
                // whereas console failure logging based on the _thrown exception_ happens up outside session scope. It would be better to refactor so that a result can be returned from here
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/CompactHashing.java

      /** Maximum size of a compact hash-based collection (2^30 - 1 because 0 is UNSET). */
      static final int MAX_SIZE = Ints.MAX_POWER_OF_TWO - 1;
    
      /** Default size of a compact hash-based collection. */
      static final int DEFAULT_SIZE = 3;
    
      /**
       * Minimum size of the hash table of a compact hash-based collection. Because small hash tables
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 02 21:41:22 UTC 2021
    - 7.1K bytes
    - Viewed (0)
  4. guava/src/com/google/common/escape/CharEscaperBuilder.java

    /**
     * Simple helper class to build a "sparse" array of objects based on the indexes that were added to
     * it. The array will be from 0 to the maximum index given. All non-set indexes will contain null
     * (so it's not really a sparse array, just a pseudo sparse array). The builder can also return a
     * CharEscaper based on the generated array.
     *
     * @author Sven Mawson
     * @since 15.0
     */
    @GwtCompatible
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 18 20:55:09 UTC 2022
    - 4K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/options/constant.go

    	TokenDiscovery = "discovery-token"
    
    	// TokenDiscoveryCAHash flag instructs kubeadm to validate that the root CA public key matches this hash (for token-based discovery)
    	TokenDiscoveryCAHash = "discovery-token-ca-cert-hash"
    
    	// TokenDiscoverySkipCAHash flag instructs kubeadm to skip CA hash verification (for token-based discovery)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 05:14:21 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  6. platforms/jvm/jacoco/src/main/java/org/gradle/testing/jacoco/plugins/JacocoReportAggregationPlugin.java

            codeCoverageResultsConf.setVisible(false);
    
            project.getPlugins().withType(JavaBasePlugin.class, plugin -> {
                // If the current project is jvm-based, aggregate dependent projects as jvm-based as well.
                getEcosystemUtilities().configureAsRuntimeClasspath(codeCoverageResultsConf);
            });
    
            ObjectFactory objects = project.getObjects();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 16:25:42 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/developingPlugins/defaultDependency/tests/defaultDependency.out

    Root project 'default-dependency'
    ------------------------------------------------------------
    
    dataFiles - The data artifacts to be processed for this plugin.
    \--- org.myorg:more-data:2.6 FAILED
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 343 bytes
    - Viewed (0)
  8. pilot/pkg/networking/telemetry/telemetry.go

    	serviceTargetPortStatPattern = "%TARGET_PORT%"
    	servicePortNameStatPattern   = "%SERVICE_PORT_NAME%"
    	subsetNameStatPattern        = "%SUBSET_NAME%"
    )
    
    // BuildStatPrefix builds a stat prefix based on the stat pattern.
    func BuildStatPrefix(statPattern string, host string, subset string, port *model.Port, targetPort int, attributes *model.ServiceAttributes) string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 02:38:43 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/util/internal/GroovyDependencyUtil.java

    public class GroovyDependencyUtil {
        /**
         * Returns Groovy artifact group name based on the Groovy version.
         */
        public static String groovyGroupName(String version) {
            return groovyGroupName(VersionNumber.parse(version));
        }
    
        /**
         * Returns Groovy artifact group name based on the Groovy version.
         */
        public static String groovyGroupName(VersionNumber version) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 22 21:22:19 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/crdserverscheme/unstructured.go

    )
    
    // UnstructuredObjectTyper provides a runtime.ObjectTyper implementation for
    // runtime.Unstructured object based on discovery information.
    type UnstructuredObjectTyper struct {
    }
    
    // NewUnstructuredObjectTyper returns a runtime.ObjectTyper for
    // unstructured objects based on discovery information. It accepts a list of fallback typers
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 06 18:08:14 UTC 2018
    - 2.5K bytes
    - Viewed (0)
Back to top