Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,110 for Preference (0.22 sec)

  1. src/main/java/org/codelibs/fess/es/config/allcommon/EsAbstractConditionBean.java

        public SearchRequestParams request() {
            return _searchRequestParams;
        }
    
        public void setPreference(final String preference) {
            _preference = preference;
        }
    
        public String getPreference() {
            return _preference;
        }
    
        // ===================================================================================
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/user/allcommon/EsAbstractConditionBean.java

        public SearchRequestParams request() {
            return _searchRequestParams;
        }
    
        public void setPreference(final String preference) {
            _preference = preference;
        }
    
        public String getPreference() {
            return _preference;
        }
    
        // ===================================================================================
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/log/allcommon/EsAbstractConditionBean.java

        public SearchRequestParams request() {
            return _searchRequestParams;
        }
    
        public void setPreference(final String preference) {
            _preference = preference;
        }
    
        public String getPreference() {
            return _preference;
        }
    
        // ===================================================================================
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  4. pkg/scheduler/apis/config/testing/defaults/defaults.go

    			// Weight is tripled because:
    			// - This is a score coming from user preference.
    			// - Usage of node tainting to group nodes in the cluster is increasing becoming a use-case
    			// for many user workloads
    			{Name: names.TaintToleration, Weight: 3},
    			// Weight is doubled because:
    			// - This is a score coming from user preference.
    			{Name: names.NodeAffinity, Weight: 2},
    			{Name: names.NodeResourcesFit, Weight: 1},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 06:27:01 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  5. .editorconfig

    # EditorConfig helps developers define and maintain consistent
    # coding styles between different editors and IDEs
    # editorconfig.org
    
    root = true
    
    [*]
    # Change these settings to your own preference
    indent_style = space
    indent_size = 4
    
    # We recommend you to keep these unchanged
    end_of_line = lf
    charset = utf-8
    trim_trailing_whitespace = true
    insert_final_newline = true
    
    # Markdown files sometimes need trailing whitespaces.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 11:48:19 UTC 2023
    - 643 bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/capabilities/CapabilitiesConflictResolutionIntegrationTest.groovy

        }
    
        @RequiredFeature(feature = GradleMetadataResolveRunner.GRADLE_METADATA, value = "true")
        def "can express preference for capabilities declared in published modules (#rule)"() {
            given:
            repository {
                'org:testA:1.0' {
                    variant('runtime') {
                        capability('org', 'testA', '1.0')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 07:37:10 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/QueryHelper.java

                if (session != null) {
                    return session.getId();
                }
                final String preference = r.getParameter("preference");
                if (preference != null) {
                    return Integer.toString(preference.hashCode());
                }
                final Object accessType = r.getAttribute(Constants.SEARCH_LOG_ACCESS_TYPE);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  8. src/crypto/tls/defaults.go

    		return disabledCipherSuites[c] ||
    			tlsrsakex.Value() != "1" && rsaKexCiphers[c] ||
    			tls3des.Value() != "1" && tdesCiphers[c]
    	})
    }
    
    // defaultCipherSuitesTLS13 is also the preference order, since there are no
    // disabled by default TLS 1.3 cipher suites. The same AES vs ChaCha20 logic as
    // cipherSuitesPreferenceOrder applies.
    //
    // defaultCipherSuitesTLS13 should be an internal detail,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/developingPlugins/reactingToBuildFeatures/groovy/buildSrc/src/main/java/MyPlugin.java

                myOptionalPluginLogicIncompatibleWithIsolatedProjects();
            }
        }
    
        private String describeFeatureUsage(Boolean requested) {
            return requested == null ? "no preference" : requested ? "opt-in" : "opt-out";
        }
    
        private void myOptionalPluginLogicIncompatibleWithIsolatedProjects() {
        }
    }
    // end::my-plugin[]
    
    class MyReport {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. cmd/sftp-server.go

    var caPublicKey ssh.PublicKey
    
    // https://cs.opensource.google/go/x/crypto/+/refs/tags/v0.22.0:ssh/common.go;l=46
    // preferredKexAlgos specifies the default preference for key-exchange
    // algorithms in preference order. The diffie-hellman-group16-sha512 algorithm
    // is disabled by default because it is a bit slower than the others.
    var preferredKexAlgos = []string{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 07:51:13 UTC 2024
    - 16K bytes
    - Viewed (0)
Back to top