Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1241 - 1250 of 2,551 for Fset (0.03 sec)

  1. docs/sts/tls.md

    The MinIO TLS STS API can be configured via MinIO's standard configuration API (i.e. using `mc admin config set/get`). Further, it can be configured via the following environment variables:
    
    ```
    mc admin config set myminio identity_tls --env
    KEY:
    identity_tls  enable X.509 TLS certificate SSO support
    
    ARGS:
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/SuggestHelper.java

        protected static final String TEXT_SEP = " ";
    
        protected Suggester suggester;
    
        protected FessConfig fessConfig;
    
        protected final Set<String> contentFieldNameSet = new HashSet<>();
    
        protected final Set<String> tagFieldNameSet = new HashSet<>();
    
        protected final Set<String> roleFieldNameSet = new HashSet<>();
    
        protected List<String> contentFieldList;
    
        protected PopularWordHelper popularWordHelper = null;
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:20:39 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/cache/ReferenceEntry.java

     *
     * <p>Entries in the map can be in the following states:
     *
     * <p>Valid:
     *
     * <ul>
     *   <li>Live: valid key/value are set
     *   <li>Loading: loading is pending
     * </ul>
     *
     * <p>Invalid:
     *
     * <ul>
     *   <li>Expired: time expired (key/value may still be set)
     *   <li>Collected: key/value was partially collected, but not yet cleaned up
     *   <li>Unset: marked as unset, awaiting cleanup or reuse
     * </ul>
     */
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Jun 15 18:00:07 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  4. tests/test_tutorial/test_path_operation_configurations/test_tutorial005_py39.py

                        "operationId": "create_item_items__post",
                        "requestBody": {
                            "content": {
                                "application/json": {
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Thu Sep 28 04:14:40 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  5. src/cmd/addr2line/addr2line_test.go

    	"testing"
    )
    
    // TestMain executes the test binary as the addr2line command if
    // GO_ADDR2LINETEST_IS_ADDR2LINE is set, and runs the tests otherwise.
    func TestMain(m *testing.M) {
    	if os.Getenv("GO_ADDR2LINETEST_IS_ADDR2LINE") != "" {
    		main()
    		os.Exit(0)
    	}
    
    	os.Setenv("GO_ADDR2LINETEST_IS_ADDR2LINE", "1") // Set for subprocesses to inherit.
    	os.Exit(m.Run())
    }
    
    func loadSyms(t *testing.T, dbgExePath string) map[string]string {
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Fri Sep 06 13:23:48 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/collect/ImmutableMultisetTest.java

                      @Override
                      protected List<String> create(String[] elements) {
                        Set<String> set = new HashSet<>();
                        ImmutableMultiset.Builder<String> builder = ImmutableMultiset.builder();
                        for (String s : elements) {
                          checkArgument(set.add(s));
                          builder.addCopies(s, 2);
                        }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  7. docs/em/docs/tutorial/response-model.md

    {!> ../../docs_src/response_model/tutorial005_py310.py!}
    ```
    
    ////
    
    /// tip
    
    ❕ `{"name", "description"}` ✍ `set` ⏎ī¸ 📚 2ī¸âƒŖ 💲.
    
    âšĢī¸ 🌓 `set(["name", "description"])`.
    
    ///
    
    #### ⚙ī¸ `list`Ⓜ ↩ī¸ `set`Ⓜ
    
    đŸšĨ 👆 💭 ⚙ī¸ `set` &amp; ⚙ī¸ `list` ⚖ī¸ `tuple` ↩ī¸, FastAPI 🔜 🗜 âšĢī¸ `set` &amp; âšĢī¸ 🔜 👷 ☑:
    
    //// tab | 🐍 3ī¸âƒŖ.6ī¸âƒŖ &amp; 🔛
    
    ```Python hl_lines="31  37"
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  8. utils/tests/dummy_dialecter.go

    func (DummyDialector) Initialize(db *gorm.DB) error {
    	callbacks.RegisterDefaultCallbacks(db, &callbacks.Config{
    		CreateClauses:        []string{"INSERT", "VALUES", "ON CONFLICT", "RETURNING"},
    		UpdateClauses:        []string{"UPDATE", "SET", "WHERE", "RETURNING"},
    		DeleteClauses:        []string{"DELETE", "FROM", "WHERE", "RETURNING"},
    		LastInsertIDReversed: true,
    	})
    
    	return nil
    }
    
    Registered: Sun Nov 03 09:35:10 UTC 2024
    - Last Modified: Mon Mar 06 06:03:31 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. doc/next/6-stdlib/99-minor/math/rand/67273.md

    Calls to the deprecated top-level [Seed] function no longer have any effect. To
    restore the old behavior set `GODEBUG=randseednop=0`. For more background see
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Mon Aug 19 20:47:27 UTC 2024
    - 195 bytes
    - Viewed (0)
  10. impl/maven-core/src/main/java/org/apache/maven/lifecycle/LifecycleExecutor.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.lifecycle;
    
    import java.util.List;
    import java.util.Set;
    
    import org.apache.maven.execution.MavenSession;
    import org.apache.maven.model.Plugin;
    import org.apache.maven.plugin.InvalidPluginDescriptorException;
    import org.apache.maven.plugin.MojoExecution;
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top