Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 996 for Preferred (0.2 sec)

  1. .idea/uiDesigner.xml

              <preferred-size width="150" height="-1" />
            </default-constraints>
          </item>
          <item class="javax.swing.JPasswordField" icon="/com/intellij/uiDesigner/icons/passwordField.png" removable="false" auto-create-binding="true" can-attach-label="true">
            <default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1">
              <preferred-size width="150" height="-1" />
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Oct 24 15:06:04 UTC 2013
    - 9.5K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/Platform.java

    @ElementTypesAreNonnullByDefault
    final class Platform {
    
      /** Returns the platform preferred implementation of a map based on a hash table. */
      static <K extends @Nullable Object, V extends @Nullable Object>
          Map<K, V> newHashMapWithExpectedSize(int expectedSize) {
        return Maps.newHashMapWithExpectedSize(expectedSize);
      }
    
      /**
       * Returns the platform preferred implementation of an insertion ordered map based on a hash
       * table.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/topologymanager/policy_single_numa_node.go

    		var filtered []TopologyHint
    		for _, hint := range oneResourceHints {
    			if hint.NUMANodeAffinity == nil && hint.Preferred {
    				filtered = append(filtered, hint)
    			}
    			if hint.NUMANodeAffinity != nil && hint.NUMANodeAffinity.Count() == 1 && hint.Preferred {
    				filtered = append(filtered, hint)
    			}
    		}
    		filteredResourcesHints = append(filteredResourcesHints, filtered)
    	}
    	return filteredResourcesHints
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 09 16:52:08 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Platform.java

    @ElementTypesAreNonnullByDefault
    final class Platform {
      /** Returns the platform preferred implementation of a map based on a hash table. */
      static <K extends @Nullable Object, V extends @Nullable Object>
          Map<K, V> newHashMapWithExpectedSize(int expectedSize) {
        return CompactHashMap.createWithExpectedSize(expectedSize);
      }
    
      /**
       * Returns the platform preferred implementation of an insertion ordered map based on a hash
       * table.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  5. hack/verify-import-aliases.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # This script verifies that all the imports have our preferred alias(es). The
    # preferred aliases for imports are listed in `hack/.import-aliases`.
    # Usage: `hack/verify-import-aliases.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:56 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/api/meta/testrestmapper/test_restmapper.go

    // TestOnlyStaticRESTMapper returns a union RESTMapper of all known types with priorities chosen in the following order:
    //  1. legacy kube group preferred version, extensions preferred version, metrics preferred version, legacy
    //     kube any version, extensions any version, metrics any version, all other groups alphabetical preferred version,
    //     all other groups alphabetical.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 06 09:07:02 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  7. hack/lint-dependencies.sh

      select(.Version != .Replace.Version) |
      select(.Path) |
      \"\(.Path)
        pinned:    \(.Replace.Version)
        preferred: \(.Version)
        hack/pin-dependency.sh \(.Path) \(.Version)\"
    ")
    if [[ -n "${outdated}" ]]; then
      echo "These modules are pinned to versions different than the minimal preferred version."
      echo "That means that without replace directives, a different version would be selected,"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:42 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/DynamicMethodLookupIntegrationTest.groovy

    import org.gradle.test.preconditions.IntegTestPreconditions
    import spock.lang.Issue
    
    class DynamicMethodLookupIntegrationTest extends AbstractIntegrationSpec {
        @Issue("GRADLE-3460")
        def "extension configuration method is preferred over property with closure value"() {
            given:
            buildFile """
    class ContactExtension {
        String prop
    }
    
    class ContactPlugin implements Plugin<Project> {
        public void apply(Project project) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 17:01:37 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. cluster/gce/gci/README.md

    following guidelines are proposed for image choice in E2E testing.
    
      * To run release blocking tests, the latest LTS images are preferred.
        'image' should be used to specify the image.
    
      * To run presubmit, postsubmit or periodic tests, the latest LTS images are
        preferred. If tests need two images, you can use the latest two LTS images.
        LTS images are stable and usually include latest bug and security fix.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 14:55:40 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs-asciidoctor-extensions-base/src/main/resources/multi-language-samples.js

      var preferredBuildScriptLanguage = initPreferredBuildScriptLanguage();
    
      // Ensure preferred DSL is valid, defaulting to Kotlin DSL
      function initPreferredBuildScriptLanguage() {
        var lang = window.localStorage.getItem("preferred-gradle-dsl");
        if (GRADLE_DSLs.indexOf(lang) === -1) {
          window.localStorage.setItem("preferred-gradle-dsl", "kotlin");
          lang = "kotlin";
        }
        return lang;
      }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5.2K bytes
    - Viewed (0)
Back to top