Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for createHeader (0.17 sec)

  1. platforms/core-execution/build-cache-base/src/main/java/org/gradle/caching/internal/origin/OriginMetadataFactory.java

                additionalProperties.configure(properties);
                properties.store(outputStream, "Generated origin information");
            };
        }
    
        public OriginReader createReader() {
            return inputStream -> {
                Properties properties = new Properties();
                properties.load(inputStream);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 20 15:16:00 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. platforms/core-execution/build-cache/src/main/java/org/gradle/caching/internal/controller/DefaultBuildCacheController.java

            private BuildCacheLoadResult doUnpack(CacheableEntity entity, InputStream input) throws IOException {
                BuildCacheEntryPacker.UnpackResult unpackResult = packer.unpack(entity, input, originMetadataFactory.createReader());
                // TODO: Update the snapshots from the action
                ImmutableSortedMap<String, FileSystemSnapshot> resultingSnapshots = snapshotUnpackedData(entity, unpackResult.getSnapshots());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 08:29:47 UTC 2024
    - 14K bytes
    - Viewed (0)
  3. samples/bookinfo/src/reviews/reviews-application/src/main/java/application/rest/LibertyRestEndpoint.java

            if (statusCode == Response.Status.OK.getStatusCode()) {
              try (StringReader stringReader = new StringReader(r.readEntity(String.class));
                   JsonReader jsonReader = Json.createReader(stringReader)) {
                return jsonReader.readObject();
              }
            } else {
              System.out.println("Error: unable to contact " + ratings_service + " got status of " + statusCode);
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 15 22:25:32 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/testcshared/cshared_test.go

    	t.Helper()
    	// This function is run in parallel, so append to a copy of cc
    	// rather than cc itself.
    	return run(t, nil, append(append([]string(nil), cc...), args...)...)
    }
    
    func createHeaders() error {
    	// The 'cgo' command generates a number of additional artifacts,
    	// but we're only interested in the header.
    	// Shunt the rest of the outputs to a temporary directory.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 13:19:50 UTC 2023
    - 21K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"(*Reader).RegisterDecompressor", Method, 6},
    		{"(*Writer).AddFS", Method, 22},
    		{"(*Writer).Close", Method, 0},
    		{"(*Writer).Copy", Method, 17},
    		{"(*Writer).Create", Method, 0},
    		{"(*Writer).CreateHeader", Method, 0},
    		{"(*Writer).CreateRaw", Method, 17},
    		{"(*Writer).Flush", Method, 4},
    		{"(*Writer).RegisterCompressor", Method, 6},
    		{"(*Writer).SetComment", Method, 10},
    		{"(*Writer).SetOffset", Method, 5},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top