Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 403 for stage1 (0.12 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/Stage1BlocksAccessorClassPath.kt

    import org.gradle.kotlin.dsl.support.bytecode.newClassTypeOf
    import java.io.File
    import javax.inject.Inject
    
    
    /**
     * Produces an [AccessorsClassPath] with type-safe accessors for Stage 1 blocks such as
     * `buildscript {}` and `plugins {}`.
     *
     * Generates accessors for:
     * - dependency version catalogs found in this build,
     * - plugin spec builders for all plugin ids found in the `buildSrc` classpath.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 18:58:57 UTC 2023
    - 8K bytes
    - Viewed (0)
  2. src/compress/bzip2/bzip2_test.go

    	}, {
    		desc:   "random data - full symbol range",
    		input:  mustLoadFile("testdata/pass-random2.bz2"),
    		output: mustLoadFile("testdata/pass-random2.bin"),
    	}, {
    		desc: "random data - uses RLE1 stage",
    		input: mustDecodeHex("" +
    			"425a6839314159265359d992d0f60000137dfe84020310091c1e280e100e0428" +
    			"01099210094806c0110002e70806402000546034000034000000f28300000320" +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 09 19:12:23 UTC 2020
    - 6.3K bytes
    - Viewed (0)
  3. docs/ru/docs/deployment/docker.md

    # (1)
    FROM python:3.9 as requirements-stage
    
    # (2)
    WORKDIR /tmp
    
    # (3)
    RUN pip install poetry
    
    # (4)
    COPY ./pyproject.toml ./poetry.lock* /tmp/
    
    # (5)
    RUN poetry export -f requirements.txt --output requirements.txt --without-hashes
    
    # (6)
    FROM python:3.9
    
    # (7)
    WORKDIR /code
    
    # (8)
    COPY --from=requirements-stage /tmp/requirements.txt /code/requirements.txt
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/testFixtures/kotlin/org/gradle/kotlin/dsl/fixtures/SimplifiedKotlinScriptEvaluator.kt

            override fun hashOf(classPath: ClassPath): HashCode =
                TestHashCodes.hashCodeFrom(0)
    
            override fun runCompileBuildOperation(scriptPath: String, stage: String, action: () -> String): String =
                action()
    
            override fun onScriptClassLoaded(scriptSource: ScriptSource, specializedProgram: Class<*>) = Unit
    
            override val implicitImports: List<String>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 19:59:56 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  5. src/hash/crc32/crc32_test.go

    			state, err := h.(encoding.BinaryMarshaler).MarshalBinary()
    			if err != nil {
    				t.Errorf("could not marshal: %v", err)
    				continue
    			}
    
    			if string(state) != g.halfStateIEEE {
    				t.Errorf("IEEE(%q) state = %q, want %q", g.in, state, g.halfStateIEEE)
    				continue
    			}
    
    			if err := h2.(encoding.BinaryUnmarshaler).UnmarshalBinary(state); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  6. pkg/credentialprovider/plugin/plugin_test.go

    			keyLength: 1,
    			getKey:    "image1",
    			expectedResponse: map[string]credentialprovider.DockerConfigEntry{
    				"image1": {
    					Username: "user1",
    					Password: "pass1",
    				},
    			},
    			cacheEntry: cacheEntry{
    				key:       "image1",
    				expiresAt: fakeClock.Now().Add(1 * time.Minute),
    				credentials: map[string]credentialprovider.DockerConfigEntry{
    					"image1": {
    						Username: "user1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 09 06:11:06 UTC 2022
    - 26.5K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/groovy/scripts/internal/BuildScriptTransformerSpec.groovy

            }
            def loader = getClass().getClassLoader()
            def transformer = new BuildScriptTransformer(source, target)
            def operation = new FactoryBackedCompileOperation<BuildScriptData>("id", 'stage', transformer, transformer, new BuildScriptDataSerializer())
            scriptCompilationHandler.compileToDir(source, loader, scriptCacheDir, metadataCacheDir, operation, ProjectScript, Actions.doNothing())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 7.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/endpoints/filters/authn_audit_test.go

    	}
    }
    
    func TestFailedAuthnAuditOmitted(t *testing.T) {
    	sink := &fakeAuditSink{}
    	fakeRuleEvaluator := policy.NewFakePolicyRuleEvaluator(auditinternal.LevelRequestResponse, []auditinternal.Stage{auditinternal.StageResponseStarted})
    	handler := WithFailedAuthenticationAudit(
    		http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
    			http.Error(w, "", http.StatusUnauthorized)
    		}),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 12 21:42:41 UTC 2021
    - 5.5K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/ModuleVersionNotFoundException.java

         * or not. In particular, the ivy patterns can make it difficult to find out if an Ivy artifact
         * source should be configured. At this stage, this information is lost, so we do a best effort
         * based on the file locations.
         */
        private void recordPossibleResolution(Collection<String> locations) {
            if (locations.size() == 1) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. pkg/api/v1/pod/util_test.go

    		expected ExpectedStruct
    		desc     string
    	}{
    		{
    			status:   []v1.ContainerStatus{{Name: "test1", Ready: false, Image: "image1"}, {Name: "test2", Ready: true, Image: "image1"}},
    			name:     "test1",
    			expected: ExpectedStruct{status: v1.ContainerStatus{Name: "test1", Ready: false, Image: "image1"}, exists: true},
    			desc:     "retrieve ContainerStatus with Name=\"test1\"",
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 11:04:08 UTC 2023
    - 32.1K bytes
    - Viewed (0)
Back to top