Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 586 for _developer (0.18 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/maven/MavenPom.groovy

        Node getOrganization() {
            return pom?.organization[0]
        }
    
        NodeList getLicenses() {
            return pom?.licenses?.license
        }
    
        NodeList getDevelopers() {
            return pom?.developers?.developer
        }
    
        NodeList getContributors() {
            return pom?.contributors?.contributor
        }
    
        Node getScm() {
            return pom?.scm[0]
        }
    
        Node getIssueManagement() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. CITATION.cff

    devices, including multicore CPUs, general purpose GPUs, and custom-designed ASICs known as Tensor Processing Units (TPUs). This architecture gives flexibility to the application developer, whereas in previous “parameter server” designs the management of shared state is built into the system, TensorFlow enables developers to experiment with novel optimizations and training algorithms. TensorFlow supports a variety of applications, with a focus on training and inference on deep neural networks. Several...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 06 15:26:23 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  3. docs/tr/docs/history-design-future.md

    Çeşitli fikirleri en popüler Python editörlerinde test ettim: PyCharm, VS Code, Jedi tabanlı editörler.
    
    Bu test, en son <a href="https://www.jetbrains.com/research/python-developers-survey-2018/#development-tools" class="external-link" target="_blank">Python Developer Survey</a>'ine göre, kullanıcıların yaklaşık %80'inin kullandığı editörleri kapsıyor.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part6_gradle_caching.adoc

    Incremental Builds are a great optimization that helps avoid work that is already done.
    If a developer is continuously making changes in a single file, there is likely no need to rebuild all the other files in the project.
    
    However, what happens when the same developer decides to switch to a new branch created last week?
    The files are rebuilt, even though the developer is building something that has been built before.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  5. maven-core/src/site/apt/configuration-management.apt

     Unified source directory structure that is analogous to the repository
     itself. This way locations of intermediary artifacts of a build would be
     in a known location. This would also help with developer setup i.e. getting
     new developers up and running. They could run a maven command and have all
     their source trees set up in the same way as their colleagues.
    
     here's what I do currently in the netbeans part of the mavenide project to
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  6. docs/changelogs/upgrading_to_okhttp_4.md

     [mockito]: https://site.mockito.org/
     [proguard_problems]: https://github.com/square/okhttp/issues/5167
     [require_android_5]: https://code.cash.app/okhttp-3-13-requires-android-5
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 16:58:16 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/common_caching_problems.adoc

    Treating the minor number as an input can decrease the likelihood of a cache hit for developer builds.
    Depending on how standard development environments are across your team, it's common for many different Java minor version to be in use.
    
    Even without tracking the Java minor version you may have cache misses for developers due to some locally compiled class files which constitute an input to test execution.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  8. maven-model/src/test/java/org/apache/maven/model/DeveloperTest.java

    import static org.junit.jupiter.api.Assertions.assertTrue;
    
    /**
     * Tests {@code Developer}.
     *
     */
    class DeveloperTest {
    
        @Test
        void testHashCodeNullSafe() {
            new Developer().hashCode();
        }
    
        @Test
        void testEqualsNullSafe() {
            assertFalse(new Developer().equals(null));
    
            new Developer().equals(new Developer());
        }
    
        @Test
        void testEqualsIdentity() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/MavenPomDeveloper.java

        /**
         * The URL of this developer.
         */
        Property<String> getUrl();
    
        /**
         * The organization name of this developer.
         */
        Property<String> getOrganization();
    
        /**
         * The organization's URL of this developer.
         */
        Property<String> getOrganizationUrl();
    
        /**
         * The roles of this developer.
         */
        SetProperty<String> getRoles();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. hack/golangci.yaml.in

    # - golangci.yaml is the most permissive configuration. All existing code
    #   passed.
    # - golangci-strict.yaml adds checks that all new code in pull requests
    #   must pass.
    # - golangci-hints.yaml adds checks for code patterns where developer
    #   and reviewer may decide whether findings should get addressed before
    #   merging. Beware that the golangci-lint output includes also the
    #   issues that must be fixed and doesn't indicate how severe each issue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 13 13:12:04 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top