Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for refactoring (0.36 sec)

  1. .github/ISSUE_TEMPLATE/50_maintainer_chore.yml

    labels: [ "a:chore", "to-triage" ]
    assignees: [ ]
    body:
      - type: dropdown
        id: issue-type
        attributes:
          label: Issue type
          options:
            - Polishing
            - Deprecation
            - Refactoring
            - Other
        validations:
          required: true
      - type: textarea
        id: description
        attributes:
          label: Problem description
          description: |
    Others
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Tue Sep 12 11:52:53 GMT 2023
    - 856 bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/toolchain/DefaultToolchainManager.java

    import static java.util.Objects.requireNonNull;
    
    /**
     */
    @Named
    @Singleton
    public class DefaultToolchainManager implements ToolchainManager {
        protected final Logger logger; // TODO this class is extended, needs refactoring
    
        final Map<String, ToolchainFactory> factories;
    
        @Inject
        public DefaultToolchainManager(Map<String, ToolchainFactory> factories) {
            this.factories = factories;
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 4.6K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/escape/ArrayBasedCharEscaper.java

       * characters).
       *
       * @param c the character to escape
       * @return the replacement characters, or {@code null} if no escaping was required
       */
      // TODO(dbeaumont,cpovirk): Rename this something better once refactoring done
      @CheckForNull
      protected abstract char[] escapeUnsafe(char c);
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Jan 18 20:55:09 GMT 2022
    - 6.3K bytes
    - Viewed (0)
  4. docs/en/docs/tutorial/body.md

        It improves editor support for Pydantic models, with:
    
        * auto-completion
        * type checks
        * refactoring
        * searching
        * inspections
    
    ## Use the model
    
    Inside of the function, you can access all the attributes of the model object directly:
    
    === "Python 3.10+"
    
        ```Python hl_lines="19"
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 7.3K bytes
    - Viewed (0)
  5. docs/fr/docs/tutorial/body.md

        Ce qui améliore le support pour les modèles Pydantic avec :
    
        * de l'auto-complétion
        * des vérifications de type
        * du "refactoring" (ou remaniement de code)
        * de la recherche
        * de l'inspection
    
    ## Utilisez le modèle
    
    Dans la fonction, vous pouvez accéder à tous les attributs de l'objet du modèle directement :
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 7.8K bytes
    - Viewed (0)
  6. common/config/.golangci.yml

              - "!**/operator/**"
              - "!**/istioctl/**"
              - "!**/tools/bug-report/**"
              # This should only really import operator API, but that is hard to express without a larger refactoring
              - "!**/pkg/kube/**"
              - "!**/pkg/url/**"
              - "!**/pkg/test/framework/**"
              - "!**/tests/fuzz/**"
            deny:
              - pkg: istio.io/istio/operator
    Others
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Apr 22 19:22:39 GMT 2024
    - 11K bytes
    - Viewed (0)
  7. guava-testlib/src/com/google/common/collect/testing/DerivedCollectionGenerators.java

          }
    
          return mapGenerator.create(entries.toArray()).keySet();
        }
    
        @Override
        public K[] createArray(int length) {
          // TODO: with appropriate refactoring of OneSizeGenerator, we can perhaps
          // tidy this up and get rid of the casts here and in
          // MapValueCollectionGenerator.
    
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Feb 21 16:49:06 GMT 2024
    - 18.2K bytes
    - Viewed (0)
  8. android/guava-testlib/src/com/google/common/collect/testing/DerivedCollectionGenerators.java

          }
    
          return mapGenerator.create(entries.toArray()).keySet();
        }
    
        @Override
        public K[] createArray(int length) {
          // TODO: with appropriate refactoring of OneSizeGenerator, we can perhaps
          // tidy this up and get rid of the casts here and in
          // MapValueCollectionGenerator.
    
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Feb 21 16:49:06 GMT 2024
    - 18.2K bytes
    - Viewed (0)
  9. Makefile.core.mk

    RELEASE_SIZE_TEST_BINARIES:=pilot-discovery pilot-agent istioctl envoy ztunnel client server
    
    # agent: enables agent-specific files. Usually this is used to trim dependencies where they would be hard to trim through standard refactoring
    # disable_pgv: disables protoc-gen-validation. This is not used buts adds many MB to Envoy protos
    # not set vtprotobuf: this adds some performance improvement, but at a binary cost increase that is not worth it for the agent
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Fri Apr 26 19:45:17 GMT 2024
    - 22.5K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.12.md

        * Some refactoring of error/status messages and functions to align with new approach.
    * This PR will leverage subtests on the existing table tests for the scheduler units. ([#63661](https://github.com/kubernetes/kubernetes/pull/63661), [@xchapter7x](https://github.com/xchapter7x))
        * Some refactoring of error/status messages and functions to align with new approach.
    Plain Text
    - Registered: Fri Apr 26 09:05:10 GMT 2024
    - Last Modified: Thu Feb 06 06:04:15 GMT 2020
    - 293.8K bytes
    - Viewed (1)
Back to top