Skip to content

Instantly share code, notes, and snippets.

View anki2189's full-sized avatar

Ankit Tomar anki2189

  • Gurgaon
View GitHub Profile
FROM mono:3.12.1 as builder
ENV CHOCO_VERSION=master
ENV CHOCO_PATH=/usr/local/bin/choco.exe
RUN set -ex \
&& curl -s -L https://github.com/chocolatey/choco/archive/${CHOCO_VERSION}.tar.gz --output ${CHOCO_VERSION}.tar.gz \
&& tar -xzf ${CHOCO_VERSION}.tar.gz \
&& mv choco-${CHOCO_VERSION} choco
RUN set -ex \
ARG SNAPSHOT=""
FROM strongboxci/alpine:jdk8-mvn3.6$SNAPSHOT
FROM mono:4.6
ENV CHOCO_VERSION=master
ENV CHOCO_PATH=/usr/local/bin/choco.exe
USER root
RUN set -ex \
ARG SNAPSHOT=""
FROM strongboxci/alpine:jdk8-mvn3.6-mono5$SNAPSHOT as build
ENV CHOCO_VERSION=master
ENV CHOCO_PATH=/usr/local/bin/choco.exe
USER root
RUN set -ex \
&& curl -s -L https://github.com/chocolatey/choco/archive/${CHOCO_VERSION}.tar.gz --output ${CHOCO_VERSION}.tar.gz \
package org.carlspring.strongbox.controllers.layout.pypi;
import org.carlspring.strongbox.artifact.coordinates.PypiArtifactCoordinates;
import org.carlspring.strongbox.artifact.metadata.PypiArtifactMetadata;
import org.carlspring.strongbox.controllers.BaseArtifactController;
import org.carlspring.strongbox.providers.ProviderImplementationException;
import org.carlspring.strongbox.providers.io.RepositoryPath;
import org.carlspring.strongbox.storage.repository.Repository;
import org.carlspring.strongbox.storage.validation.artifact.ArtifactCoordinatesValidationException;
import org.carlspring.strongbox.utils.ArtifactControllerHelper;
02:01:21.023 18-12-2019 | DEBUG | qtp486371171-29 | o.c.s.s.a.suppliers.AuthenticationSuppliers | Supplier org.carlspring.strongbox.security.authentication.suppliers.JsonFormLoginSupplier does not support this request [method: POST] [URI: /storages/storage-pipy/pypi-releases/] [ContentType multipart/form-data; boundary=a8de8bdef3e24f20a589e2157e1ce653]
02:01:21.024 18-12-2019 | DEBUG | qtp486371171-29 | o.c.s.s.a.suppliers.AuthenticationSuppliers | Supplier org.carlspring.strongbox.security.authentication.suppliers.JWTAuthenticationSupplier does not support this request [method: POST] [URI: /storages/storage-pipy/pypi-releases/] [ContentType multipart/form-data; boundary=a8de8bdef3e24f20a589e2157e1ce653]
02:01:21.025 18-12-2019 | DEBUG | qtp486371171-29 | o.c.s.s.a.suppliers.AuthenticationSuppliers | Supplier org.carlspring.strongbox.security.authentication.suppliers.NpmLoginAuthenticationSupplier does not support this request [method: POST] [URI: /storages/storage-pipy/pyp
@anki2189
anki2189 / System Design.md
Created December 30, 2018 06:14 — forked from vasanthk/System Design.md
System Design Cheatsheet

System Design Cheatsheet

Picking the right architecture = Picking the right battles + Managing trade-offs

Basic Steps

  1. Clarify and agree on the scope of the system
  • User cases (description of sequences of events that, taken together, lead to a system doing something useful)
    • Who is going to use it?
    • How are they going to use it?