Search Options

Results per page
Sort
Preferred Languages
Advance

Results 731 - 740 of 1,467 for dist (0.02 sec)

  1. common-protos/k8s.io/api/authorization/v1/generated.proto

      // +optional
      optional string name = 7;
    }
    
    // ResourceRule is the list of actions the subject is allowed to perform on resources. The list ordering isn't significant,
    // may contain duplicates, and possibly be incomplete.
    message ResourceRule {
      // Verb is a list of kubernetes resource API verbs, like: get, list, watch, create, update, delete, proxy.  "*" means all.
      repeated string verbs = 1;
    
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  2. android/guava-testlib/src/com/google/common/testing/ClassSanityTester.java

          args.add(generateDummyArg(param, generator));
        }
        Object instance = createInstance(factory, args);
        List<Object> equalArgs = generateEqualFactoryArguments(factory, params, args);
        // Each group is a List of items, each item has a list of factory args.
        final List<List<List<Object>>> argGroups = Lists.newArrayList();
        argGroups.add(ImmutableList.of(args, equalArgs));
        EqualsTester tester =
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Jul 23 14:18:12 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  3. docs/de/docs/tutorial/first-steps.md

    ///
    
    ### Schritt 4: Definieren der **Pfadoperation-Funktion**
    
    Das ist unsere β€ž**Pfadoperation-Funktion**β€œ:
    
    * **Pfad**: ist `/`.
    * **Operation**: ist `get`.
    * **Funktion**: ist die Funktion direkt unter dem β€žDekoratorβ€œ (unter `@app.get("/")`).
    
    ```Python hl_lines="7"
    {!../../docs_src/first_steps/tutorial001.py!}
    ```
    
    Dies ist eine Python-Funktion.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  4. docs/em/docs/advanced/custom-response.md

    ///
    
    ### `Response`
    
    πŸ‘‘ `Response` πŸŽ“, 🌐 🎏 πŸ“¨ πŸ˜– βšͺ️➑️ ⚫️.
    
    πŸ‘† πŸ’ͺ πŸ“¨ ⚫️ πŸ”—.
    
    ⚫️ 🚫 πŸ“„ πŸ”’:
    
    * `content` - `str` βš–οΈ `bytes`.
    * `status_code` - `int` πŸ‡ΊπŸ‡ΈπŸ” πŸ‘” πŸ“Ÿ.
    * `headers` - `dict` 🎻.
    * `media_type` - `str` 🀝 πŸ“» πŸ†Ž. 🀢 β“‚. `"text/html"`.
    
    FastAPI (πŸ€™ πŸ’ƒ) πŸ”œ πŸ” πŸ”Œ 🎚-πŸ“ 🎚. ⚫️ πŸ”œ πŸ”Œ 🎚-πŸ†Ž 🎚, βš“οΈ πŸ”› = &amp; πŸ” = ✍ πŸ†Ž.
    
    ```Python hl_lines="1  18"
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  5. docs/distributed/README.md

    ### Consistency Guarantees
    
    MinIO follows strict **read-after-write** and **list-after-write** consistency model for all i/o operations both in distributed and standalone modes. This consistency model is only guaranteed if you use disk filesystems such as xfs, zfs or btrfs etc.. for distributed setup.
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  6. fess-crawler/src/main/java/org/codelibs/fess/crawler/service/UrlFilterService.java

        void delete(String sessionId);
    
        void deleteAll();
    
        List<Pattern> getIncludeUrlPatternList(String sessionId);
    
        List<Pattern> getExcludeUrlPatternList(String sessionId);
    
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  7. docs/bucket/replication/setup_replication.sh

    cat ./repladmin-policy-source.json
    
    #assign this replication policy to repladmin
    mc admin policy attach source repladmin-policy --user=repladmin
    
    ### on dest alias
    # Create a replication user : repluser on dest alias
    mc admin user add dest repluser repluser123
    
    # create a replication policy for repluser
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri May 26 05:07:25 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelBuilderResult.java

         */
        @Nonnull
        List<Profile> getActivePomProfiles();
    
        /**
         * Gets the external profiles that were active during model building. External profiles are those that were
         * contributed by {@link ModelBuilderRequest#getProfiles()}.
         *
         * @return The active external profiles or an empty list if none, never {@code null}.
         */
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Sat Sep 28 09:03:24 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  9. android/guava-testlib/src/com/google/common/collect/testing/ListIteratorTester.java

      }
    
      @Override
      protected final Iterable<? extends Stimulus<E, ? super ListIterator<E>>> getStimulusValues() {
        List<Stimulus<E, ? super ListIterator<E>>> list = new ArrayList<>();
        Helpers.addAll(list, iteratorStimuli());
        Helpers.addAll(list, listIteratorStimuli());
        return list;
      }
    
      @Override
      protected abstract ListIterator<E> newTargetIterator();
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/ForwardingListMultimap.java

    import com.google.common.annotations.GwtCompatible;
    import com.google.errorprone.annotations.CanIgnoreReturnValue;
    import java.util.List;
    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * A list multimap which forwards all its method calls to another list multimap. Subclasses should
     * override one or more methods to modify the behavior of the backing multimap as desired per the <a
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Jun 15 21:08:00 UTC 2021
    - 2.2K bytes
    - Viewed (0)
Back to top