Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 217 for dataSource (0.24 sec)

  1. docs/metrics/prometheus/grafana/bucket/minio-bucket.json

    {
      "annotations": {
        "list": [
          {
            "builtIn": 1,
            "datasource": {
              "type": "datasource",
              "uid": "grafana"
            },
            "enable": true,
            "hide": true,
            "iconColor": "rgba(0, 211, 255, 1)",
            "name": "Annotations & Alerts",
            "type": "dashboard"
          }
        ]
      },
      "__inputs": [
        {
          "name": "DS_PROMETHEUS",
          "label": "Prometheus",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 11:11:51 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  2. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/JTarPacker.java

            this.buffer = new byte[bufferSizeInKBytes * 1024];
        }
    
        @Override
        public void pack(List<DataSource> inputs, DataTarget output) throws IOException {
            TarOutputStream tarOutput = new TarOutputStream(output.openOutput());
            for (DataSource input : inputs) {
                @SuppressWarnings("OctalInteger")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  3. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/AbstractTaskOutputPackagingBenchmark.java

                random.nextBytes(buffer);
                DataSource input = accessor.createSource(name, buffer, Level.Trial);
                inputs.add(input);
            }
            return inputs.build();
        }
    
        private static DataSource packSample(String name, List<DataSource> inputs, Packer packer, DataAccessor accessor) throws IOException {
            long sumLength = 0;
            for (DataSource input : inputs) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  4. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/ZipPacker.java

            this.buffer = new byte[bufferSizeInKBytes];
        }
    
        @Override
        public void pack(List<DataSource> inputs, DataTarget output) throws IOException {
            ZipOutputStream zipOutput = new ZipOutputStream(output.openOutput());
            for (DataSource input : inputs) {
                ZipEntry entry = new ZipEntry(input.getName());
                entry.setSize(input.getLength());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/DelegatingDataSource.java

     */
    
    package org.gradle.caching.internal.tasks;
    
    import java.io.IOException;
    import java.io.InputStream;
    
    public abstract class DelegatingDataSource implements DataSource {
        private final DataSource delegate;
    
        public DelegatingDataSource(DataSource delegate) {
            this.delegate = delegate;
        }
    
        @Override
        public InputStream openInput() throws IOException {
            return delegate.openInput();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/InMemoryDataAccessor.java

    import java.io.ByteArrayOutputStream;
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.OutputStream;
    
    public class InMemoryDataAccessor implements DataAccessor {
        @Override
        public DataSource createSource(String name, byte[] bytes, Level level) {
            return new Source(name, bytes);
        }
    
        @Override
        public DataTarget createTarget(String name, Level level) {
            return new Target(name);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/client-go/applyconfigurations/core/v1/persistentvolumeclaimspec.go

    	VolumeMode                *v1.PersistentVolumeMode                      `json:"volumeMode,omitempty"`
    	DataSource                *TypedLocalObjectReferenceApplyConfiguration  `json:"dataSource,omitempty"`
    	DataSourceRef             *TypedObjectReferenceApplyConfiguration       `json:"dataSourceRef,omitempty"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  8. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/GzipPacker.java

        @Override
        public void pack(List<DataSource> inputs, DataTarget output) throws IOException {
            delegate.pack(inputs, new DelegatingDataTarget(output) {
                @Override
                public OutputStream openOutput() throws IOException {
                    return new GZIPOutputStream(super.openOutput());
                }
            });
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/CommonsTarPacker.java

            this.buffer = new byte[bufferSizeInKBytes * 1024];
        }
    
        @Override
        public void pack(List<DataSource> inputs, DataTarget output) throws IOException {
            TarArchiveOutputStream tarOutput = new TarArchiveOutputStream(output.openOutput());
            for (DataSource input : inputs) {
                TarArchiveEntry entry = new TarArchiveEntry(input.getName());
                entry.setSize(input.getLength());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 07:31:19 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/AbstractFileAccessor.java

        private final DirectoryProvider directoryProvider;
    
        public AbstractFileAccessor(DirectoryProvider directoryProvider) {
            this.directoryProvider = directoryProvider;
        }
    
        @Override
        public DataSource createSource(String name, byte[] bytes, Level level) throws IOException {
            Path path = getPath(name, level);
            Files.write(path, bytes, StandardOpenOption.CREATE_NEW);
            return new Source(path);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 3.3K bytes
    - Viewed (0)
Back to top