Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 55 for txt2 (0.06 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskIntegrationSpec.groovy

            then:
            file('dest').assertHasDescendants('sub/a.TXT', 'sub/b.txt', 'sub/c.Txt')
    
            when:
            run 'copy'
    
            then:
            file('files/exclude/d.txt').createFile()
            skipped(':copy')
            file('dest').assertHasDescendants('sub/a.TXT', 'sub/b.txt', 'sub/c.Txt')
    
            when:
            file('files/d.TXT').createFile()
            run 'copy'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  2. docs/ru/docs/deployment/docker.md

    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
    
    # (9)
    RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
    
    # (10)
    COPY ./app /code/app
    
    # (11)
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  3. src/main/resources/suggest_indices/suggest_analyzer.json

          },
          "danish_stemmer": {
            "type":       "stemmer",
            "language":   "danish"
          },
          "dutch_stop": {
            "type":       "stop",
            "stopwords":  "_dutch_"
          },
          "dutch_keywords": {
            "type":       "keyword_marker",
            "keywords_path": "${fess.dictionary.path}nl/protwords.txt"
          },
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 23 05:09:51 UTC 2019
    - 57.7K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformWithDependenciesIntegrationTest.groovy

                singleStep("lib.jar", "common.jar")
            )
            outputContains("result = [app.txt, lib.jar.txt, common.jar.txt]")
    
            when:
            run("app:resolveView")
    
            then:
            assertTransformationsExecuted()
            outputContains("result = [app.txt, lib.jar.txt, common.jar.txt]")
        }
    
        def "transform with changed set of dependencies are re-executed"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 54.2K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/suppliers/DynamicRevisionRemoteResolveWithMetadataSupplierIntegrationTest.groovy

                    server.expectGet("/repo/${path}/status.txt", file)
                } else {
                    server.expectGetBroken("/repo/${path}/status.txt")
                }
                file
            }
    
            @Override
            void refresh(String... modules) {
                modules.each {
                    server.expectHead("/repo/${it.replace(':', '/')}/status.txt", statusFiles[it])
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 11:46:17 UTC 2024
    - 49K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

        inputSummaries.from(summarizedFiles)
        outputFile.set(layout.buildDirectory.file("summary.txt"))
    }
    
    dependencies {
        sourceFiles(files("input.txt"))
    }
    '''
            def inputFile = file('input.txt').tap { write("the input file") }
            def outputFile = file('build/summary.txt')
            def expectedOutput = "input.txt: ${inputFile.length()}"
            def configurationCache = newConfigurationCacheFixture()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  7. testing/architecture-test/src/changes/archunit-store/provider-task-properties.txt

    Tom Tresansky <******@****.***> 1718052812 -0400
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:33:20 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  8. cmd/object-api-listobjects_test.go

    		{
    			Objects: []ObjectInfo{
    				{Name: "a-1.txt"},
    				{Name: "a.txt"},
    				{Name: "a/1.txt"},
    				{Name: "apache2-doc/1.txt"},
    				{Name: "apache2/-sub/2.txt"},
    				{Name: "apache2/1.txt"},
    			},
    		},
    		{
    			Objects: []ObjectInfo{
    				{Name: "apache2-doc/1.txt"},
    				{Name: "apache2/1.txt"},
    			},
    		},
    		{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 11:07:40 UTC 2024
    - 73.1K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    		if length-n < uint16(len(t))+1 {
    			return TXTResource{}, errCalcLen
    		}
    		n += uint16(len(t)) + 1
    		txts = append(txts, t)
    	}
    	return TXTResource{txts}, nil
    }
    
    // An SRVResource is an SRV Resource record.
    type SRVResource struct {
    	Priority uint16
    	Weight   uint16
    	Port     uint16
    	Target   Name // Not compressed as per RFC 2782.
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
  10. src/net/dnsclient_unix_test.go

    	txt, err := r.lookupTXT(context.Background(), "golang.org")
    	if err != nil {
    		t.Fatal("LookupTXT failed:", err)
    	}
    	if want := 2; len(txt) != want {
    		t.Fatalf("len(txt), got %d, want %d", len(txt), want)
    	}
    	if want := "string1 string2"; txt[0] != want {
    		t.Errorf("txt[0], got %q, want %q", txt[0], want)
    	}
    	if want := "onestring"; txt[1] != want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
Back to top