Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 586 for _developer (0.15 sec)

  1. .github/CODEOWNERS

    /settings.gradle*                           @gradle/bt-developer-productivity
    gradle/shared-with-buildSrc/                @gradle/bt-developer-productivity
    platforms/build-infrastructure/             @gradle/bt-developer-productivity
    subprojects/internal-build-reports/         @gradle/bt-developer-productivity
    testing/internal-architecture-testing/      @gradle/bt-developer-productivity
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:44:59 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/signing/maven-publish/kotlin/build.gradle.kts

                            name = "The Apache License, Version 2.0"
                            url = "http://www.apache.org/licenses/LICENSE-2.0.txt"
                        }
                    }
                    developers {
                        developer {
                            id = "johnd"
                            name = "John Doe"
                            email = "******@****.***"
                        }
                    }
                    scm {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. docs/en/docs/advanced/openapi-callbacks.md

    The process that happens when your API app calls the *external API* is named a "callback". Because the software that the external developer wrote sends a request to your API and then your API *calls back*, sending a request to an *external API* (that was probably created by the same developer).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  4. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/publication/DefaultMavenPom.java

            return organization;
        }
    
        @Override
        public void developers(Action<? super MavenPomDeveloperSpec> action) {
            action.execute(this);
        }
    
        @Override
        public void developer(Action<? super MavenPomDeveloper> action) {
            configureAndAdd(DefaultMavenPomDeveloper.class, action, developers);
        }
    
        @Override
        public List<MavenPomDeveloper> getDevelopers() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  5. build-logic/publishing/src/main/kotlin/gradlebuild.publish-defaults.gradle.kts

                    license {
                        name = "Apache-2.0"
                        url = "http://www.apache.org/licenses/LICENSE-2.0.txt"
                    }
                }
                developers {
                    developer {
                        name = "The Gradle team"
                        organization = "Gradle Inc."
                        organizationUrl = "https://gradle.org"
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:58 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/signing/maven-publish/groovy/build.gradle

                            name = 'The Apache License, Version 2.0'
                            url = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
                        }
                    }
                    developers {
                        developer {
                            id = 'johnd'
                            name = 'John Doe'
                            email = '******@****.***'
                        }
                    }
                    scm {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  7. platforms/software/maven/src/test/groovy/org/gradle/api/publish/maven/internal/tasks/MavenPomFileGeneratorTest.groovy

                        url.set("http://www.gnu.org/licenses/gpl.html")
                    }
                }
                organization {
                    name.set("Some Org")
                }
                developers {
                    developer {
                        name.set("Alice")
                    }
                }
                contributors {
                    contributor {
                        name.set("Bob")
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  8. RELEASE_BRANCHES.md

      unit and integration test changes).
        * The release managers may not know of all the features being worked on for an Istio release. Developers must
          make their case as to why their PR should be merged.
    * Developers submitting PRs after the code freeze and after the first release candidate must provide justification
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 12 23:27:43 UTC 2021
    - 3.9K bytes
    - Viewed (0)
  9. src/site/site.xml

          <item name="Super POM" href="./maven-model-builder/super-pom.html"/>
        </menu>
    
        <menu inherit="bottom" name="Development">
          <item name="Maven Developer Centre" href="../../developers/index.html"/>
          <item name="Maven Core ITs" href="../../core-its/index.html"/>
        </menu>
    
        <menu inherit="bottom" ref="modules"/>
        <menu inherit="bottom" ref="reports"/>
      </body>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Feb 17 18:40:11 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache.adoc

    The configuration would then look as follows.
    
    .Recommended setup for CI push use case
    ====
    include::sample[dir="snippets/buildCache/developer-ci-setup/kotlin",files="settings.gradle.kts[tags=developer-ci-setup]"]
    include::sample[dir="snippets/buildCache/developer-ci-setup/groovy",files="settings.gradle[tags=developer-ci-setup]"]
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 11:30:10 UTC 2024
    - 26.1K bytes
    - Viewed (0)
Back to top