Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 31 for fileMap (0.12 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/DependencyHandlerApiResolveIntegrationTest.groovy

                dependencies {
                    a gradleApi()
                    b gradleTestKit()
                    c localGroovy()
                }
                task showArtifacts {
                    def filesA = configurations.a
                    def idsA = configurations.a.incoming.artifacts.resolvedArtifacts.map { it.id }
                    def filesB = configurations.b
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 06:59:30 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/pcln.go

    	// Write filetab.
    	writeFiletab := func(ctxt *Link, s loader.Sym) {
    		sb := ctxt.loader.MakeSymbolUpdater(s)
    
    		// Write the strings.
    		for filename, loc := range fileOffsets {
    			sb.AddStringAt(int64(loc), expandFile(filename))
    		}
    	}
    	state.nfiles = uint32(len(fileOffsets))
    	state.filetab = state.addGeneratedSym(ctxt, "runtime.filetab", fileSize, writeFiletab)
    
    	return cuOffsets
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  3. src/os/stat_windows.go

    	if err == windows.ERROR_INVALID_PARAMETER {
    		// Console handles, like "\\.\con", require generic read access. See
    		// https://learn.microsoft.com/en-us/windows/win32/api/fileapi/nf-fileapi-createfilew#consoles.
    		// We haven't set it previously because it is normally not required
    		// to read attributes and some files may not allow it.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:44:48 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  4. src/mime/multipart/formdata_test.go

    		t.Errorf("texta value = %q, want %q", g, e)
    	}
    	if g, e := f.Value["textb"][0], textbValue; g != e {
    		t.Errorf("texta value = %q, want %q", g, e)
    	}
    	fd := testFile(t, f.File["filea"][0], "filea.txt", fileaContents)
    	if _, ok := fd.(*os.File); ok {
    		t.Error("file is *os.File, should not be")
    	}
    	fd.Close()
    	fd = testFile(t, f.File["fileb"][0], "fileb.txt", filebContents)
    	if _, ok := fd.(*os.File); !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 05 18:31:56 UTC 2024
    - 14K bytes
    - Viewed (0)
  5. tests/test_tutorial/test_request_forms_and_files/test_tutorial001_an.py

        patha.write_text("<file content>")
        pathb.write_text("<file b content>")
    
        client = TestClient(app)
        with patha.open("rb") as filea, pathb.open("rb") as fileb:
            response = client.post(
                "/files/",
                data={"token": "foo"},
                files={"file": filea, "fileb": ("testb.txt", fileb, "text/plain")},
            )
        assert response.status_code == 200, response.text
        assert response.json() == {
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  6. src/internal/filepathlite/path_windows.go

    				return true
    			}
    			return false
    		}
    	}
    
    	// Passing CONIN$ or CONOUT$ to CreateFile opens a console handle.
    	// https://learn.microsoft.com/en-us/windows/win32/api/fileapi/nf-fileapi-createfilea#consoles
    	//
    	// While CONIN$ and CONOUT$ aren't documented as being files,
    	// they behave the same as CON. For example, ./CONIN$ also opens the console input.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:50 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  7. tests/test_tutorial/test_request_forms_and_files/test_tutorial001.py

        patha.write_text("<file content>")
        pathb.write_text("<file b content>")
    
        client = TestClient(app)
        with patha.open("rb") as filea, pathb.open("rb") as fileb:
            response = client.post(
                "/files/",
                data={"token": "foo"},
                files={"file": filea, "fileb": ("testb.txt", fileb, "text/plain")},
            )
        assert response.status_code == 200, response.text
        assert response.json() == {
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  8. tests/test_tutorial/test_request_forms_and_files/test_tutorial001_an_py39.py

        patha.write_text("<file content>")
        pathb.write_text("<file b content>")
    
        client = TestClient(app)
        with patha.open("rb") as filea, pathb.open("rb") as fileb:
            response = client.post(
                "/files/",
                data={"token": "foo"},
                files={"file": filea, "fileb": ("testb.txt", fileb, "text/plain")},
            )
        assert response.status_code == 200, response.text
        assert response.json() == {
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/ComponentSelectionRulesDependencyResolveIntegTest.groovy

                dependencies {
                    modules "org.utils:api:1.+"
                }
    
                task verify {
                    def filesA = configurations.modulesA
                    def filesB = configurations.modulesB
                    doLast {
                        assert filesA.collect { it.name } == [ 'api-1.1.jar']
                        assert filesB.collect { it.name } == [ 'api-1.0.jar']
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  10. src/os/types_windows.go

    	// FILE_FLAG_OPEN_REPARSE_POINT flag when opening the file if it is a reparse
    	// point.”
    	//
    	// And per https://learn.microsoft.com/en-us/windows/win32/api/fileapi/nf-fileapi-createfilew,
    	// “If the file is not a reparse point, then this flag is ignored.”
    	//
    	// So we set FILE_FLAG_OPEN_REPARSE_POINT unconditionally, since we want
    	// information about the reparse point itself.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:44:48 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top