Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 125 for Capt (0.1 sec)

  1. samples/helloworld/src/Dockerfile

    RUN pip install --no-cache-dir --require-hashes -r requirements.txt
    
    # old image had curl and could be used as a sample client if desired
    RUN apt-get update \
      && apt-get install curl --no-install-recommends -y \
      && rm -rf /var/lib/apt/lists/*
    
    EXPOSE 5000
    
    ARG service_version
    ENV SERVICE_VERSION ${service_version:-v1}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 24 19:35:04 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. maven-core/src/test/java/org/apache/maven/artifact/handler/ArtifactHandlerTest.java

    @PlexusTest
    class ArtifactHandlerTest {
        @Inject
        PlexusContainer container;
    
        @Test
        void testAptConsistency() throws Exception {
            File apt = getTestFile("src/site/apt/artifact-handlers.apt");
    
            List<String> lines = Files.readAllLines(apt.toPath());
    
            for (String line : lines) {
                if (line.startsWith("||")) {
                    String[] cols = line.split("\\|\\|");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Dec 14 10:51:16 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  3. test/map.go

    	type M map[int]int
    	mipM := make(map[int]M)
    
    	var apT [2 * count]*T
    
    	for i := 0; i < count; i++ {
    		s := strconv.Itoa(i)
    		s10 := strconv.Itoa(i * 10)
    		f := float32(i)
    		t := T{int64(i), f}
    		apT[i] = new(T)
    		apT[i].i = int64(i)
    		apT[i].f = f
    		apT[2*i] = new(T) // need twice as many entries as we use, for the nonexistence check
    		apT[2*i].i = int64(i)
    		apT[2*i].f = f
    		m := M{i: i + 1}
    		mib[i] = (i != 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 06 21:02:55 UTC 2014
    - 14.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/demo/demoSimple/ReflectionDemo.kt

                """
                plugins {
                    val kotlinVersion = "1.9.20"
    
                    id("org.jetbrains.kotlin.jvm") version kotlinVersion
                    id("org.jetbrains.kotlin.kapt") version kotlinVersion apply false
                    val java = id("java")
                    val app = id("application")
                    app.apply(java.apply)
                }
                """.trimIndent()
            )
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 10:53:44 UTC 2024
    - 659 bytes
    - Viewed (0)
  5. samples/bookinfo/src/ratings/Dockerfile

    #   See the License for the specific language governing permissions and
    #   limitations under the License.
    
    FROM node:21.6-slim
    
    #hadolint ignore=DL3008
    RUN apt-get update \
        && apt-get install curl --no-install-recommends -y \
        && rm -rf /var/lib/apt/lists/*
    
    ARG service_version
    ENV SERVICE_VERSION ${service_version:-v1}
    
    COPY package.json /opt/microservices/
    COPY ratings.js /opt/microservices/
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:37 UTC 2024
    - 1009 bytes
    - Viewed (0)
  6. maven-embedder/src/site/apt/index.apt.vm

    Hervé Boutemy <******@****.***> 1613846083 +0100
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Feb 20 18:34:43 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  7. maven-core/src/site/apt/lifecycles.apt.vm

    Hervé Boutemy <******@****.***> 1641653859 +0100
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Jan 08 14:57:39 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  8. .idea/dictionaries/yan.xml

      <dictionary name="yan">
        <words>
          <w>barebone</w>
          <w>debuggee</w>
          <w>deserializes</w>
          <w>destructured</w>
          <w>hacky</w>
          <w>impls</w>
          <w>inlined</w>
          <w>kapt</w>
          <w>kotlinc</w>
          <w>mutators</w>
          <w>parcelable</w>
          <w>parceler</w>
          <w>parcelers</w>
          <w>parcelize</w>
          <w>repl</w>
          <w>testdata</w>
          <w>uast</w>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 20 16:41:23 UTC 2021
    - 547 bytes
    - Viewed (0)
  9. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/demo/demoPlugins/demoPluginUsage.kt

        val topLevelScope = TopLevelScope()
        topLevelScope.run {
            plugins {
                val kotlinVersion = "1.9.20"
    
                id("org.jetbrains.kotlin.jvm") version kotlinVersion
                id("org.jetbrains.kotlin.kapt") version kotlinVersion apply false
                id("java") apply false
                val app = id("application")
                app.apply(false)
            }
        }
        println(topLevelScope.plugins)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 12:28:39 UTC 2024
    - 499 bytes
    - Viewed (0)
  10. cluster/gce/gci/mounter/Dockerfile

    # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    FROM ubuntu:xenial
    
    RUN apt-get update && apt-get install -y netbase nfs-common=1:1.2.8-9ubuntu12
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 13 14:41:50 UTC 2022
    - 713 bytes
    - Viewed (0)
Back to top