Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 560 for dev (0.14 sec)

  1. maven-core/src/test/remote-repo/org/apache/maven/maven-plugin-api/2.0/maven-plugin-api-2.0.jar

    g ******@****.*** http://mail-archives.apache.org/mod_mbox/maven-users Maven Developer List dev******@****.*** dev******@****.*** dev@maven.apache.org http://mail-archives.apache.org/mod_mbox/maven-dev Maven Commits List ******@****.*** ******@****.*** ******@****.*** http://mail-archives.apache.org/mod_mbox/maven-dev Apache Announce List ******@****.*** ******@****.*** ******@****.***...
    Archive
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Fri Oct 23 23:48:02 GMT 2009
    - 9.9K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus/1.0.4/plexus-1.0.4.pom

      <mailingLists>
        <mailingList>
          <name>Plexus Developer List</name>
          <subscribe>http://lists.codehaus.org/mailman/listinfo/plexus-dev</subscribe>
          <unsubscribe>http://lists.codehaus.org/mailman/listinfo/plexus-dev</unsubscribe>
          <archive>http://lists.codehaus.org/pipermail/plexus-dev/</archive>
        </mailingList>
      </mailingLists>
    
      <distributionManagement>
        <repository>
          <id>repo1</id>
    Plain Text
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 5.6K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus/1.0.9/plexus-1.0.9.pom

        </mailingList>
        <mailingList>
          <name>Plexus Developer List</name>
          <subscribe>http://xircles.codehaus.org/manage_email/dev%40plexus.codehaus.org</subscribe>
          <unsubscribe>http://xircles.codehaus.org/manage_email/dev%40plexus.codehaus.org</unsubscribe>
          <archive>http://archive.plexus.codehaus.org/dev</archive>
        </mailingList>
        <mailingList>
          <name>Plexus Announce List</name>
    Plain Text
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Thu Dec 24 18:09:10 GMT 2020
    - 7.5K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus/1.0.11/plexus-1.0.11.pom

        </mailingList>
        <mailingList>
          <name>Plexus Developer List</name>
          <subscribe>http://xircles.codehaus.org/manage_email/dev%40plexus.codehaus.org</subscribe>
          <unsubscribe>http://xircles.codehaus.org/manage_email/dev%40plexus.codehaus.org</unsubscribe>
          <archive>http://archive.plexus.codehaus.org/dev</archive>
        </mailingList>
        <mailingList>
          <name>Plexus Announce List</name>
    Plain Text
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 8.8K bytes
    - Viewed (0)
  5. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus/1.0.4/plexus-1.0.4.pom

      <mailingLists>
        <mailingList>
          <name>Plexus Developer List</name>
          <subscribe>http://lists.codehaus.org/mailman/listinfo/plexus-dev</subscribe>
          <unsubscribe>http://lists.codehaus.org/mailman/listinfo/plexus-dev</unsubscribe>
          <archive>http://lists.codehaus.org/pipermail/plexus-dev/</archive>
        </mailingList>
      </mailingLists>
    
      <distributionManagement>
        <repository>
          <id>repo1</id>
    Plain Text
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Thu Dec 24 18:09:10 GMT 2020
    - 5.6K bytes
    - Viewed (0)
  6. common/scripts/report_build_info.sh

    #   See the License for the specific language governing permissions and
    #   limitations under the License.
    
    if BUILD_GIT_REVISION=$(git rev-parse HEAD 2> /dev/null); then
      if [[ -z "${IGNORE_DIRTY_TREE}" ]] && [[ -n "$(git status --porcelain 2>/dev/null)" ]]; then
        BUILD_GIT_REVISION=${BUILD_GIT_REVISION}"-dirty"
      fi
    else
      BUILD_GIT_REVISION=unknown
    fi
    
    # Check for local changes
    tree_status="Clean"
    Shell Script
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue May 23 17:08:31 GMT 2023
    - 1.9K bytes
    - Viewed (0)
  7. docs/en/docs/project-generation.md

        - 🧰 [SQLModel](https://sqlmodel.tiangolo.com) for the Python SQL database interactions (ORM).
        - 🔍 [Pydantic](https://docs.pydantic.dev), used by FastAPI, for the data validation and settings management.
        - 💾 [PostgreSQL](https://www.postgresql.org) as the SQL database.
    - 🚀 [React](https://react.dev) for the frontend.
        - 💃 Using TypeScript, hooks, Vite, and other parts of a modern frontend stack.
    Plain Text
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Thu Mar 21 21:12:21 GMT 2024
    - 1.8K bytes
    - Viewed (0)
  8. internal/disk/stat_linux.go

    		//nolint:unconvert
    		FSType: getFSType(int64(s.Type)),
    	}
    
    	st := syscall.Stat_t{}
    	err = syscall.Stat(path, &st)
    	if err != nil {
    		return Info{}, err
    	}
    	//nolint:unconvert
    	devID := uint64(st.Dev) // Needed to support multiple GOARCHs
    	info.Major = unix.Major(devID)
    	info.Minor = unix.Minor(devID)
    
    	// Check for overflows.
    	// https://github.com/minio/minio/issues/8035
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Mon Feb 26 19:34:50 GMT 2024
    - 4.8K bytes
    - Viewed (0)
  9. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/UpdateAgpVersions.kt

            )
            val nightlyBuildId = fetchNightlyBuildId(
                "https://androidx.dev/studio/builds"
            )
            val nightlyVersion = dbf.fetchNightlyVersion(
                "https://androidx.dev/studio/builds/$nightlyBuildId/artifacts/artifacts/repository/com/android/application/com.android.application.gradle.plugin/maven-metadata.xml"
            )
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Jun 02 09:17:07 GMT 2023
    - 5.6K bytes
    - Viewed (0)
  10. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus/1.0.10/plexus-1.0.10.pom

        </mailingList>
        <mailingList>
          <name>Plexus Developer List</name>
          <subscribe>http://xircles.codehaus.org/manage_email/dev%40plexus.codehaus.org</subscribe>
          <unsubscribe>http://xircles.codehaus.org/manage_email/dev%40plexus.codehaus.org</unsubscribe>
          <archive>http://archive.plexus.codehaus.org/dev</archive>
        </mailingList>
        <mailingList>
          <name>Plexus Announce List</name>
    Plain Text
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 7.8K bytes
    - Viewed (0)
Back to top