Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 224 for dataSource (0.43 sec)

  1. 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)
  2. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/Packer.java

     */
    
    package org.gradle.caching.internal.tasks;
    
    import java.io.IOException;
    import java.util.List;
    
    interface Packer {
        void pack(List<DataSource> inputs, DataTarget output) throws IOException;
        void unpack(DataSource input, DataTargetFactory targetFactory) throws IOException;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 899 bytes
    - Viewed (0)
  3. security/pkg/nodeagent/sds/sdsservice.go

    				PollDelay: durationpb.New(time.Duration(crypto.GetPollDelay().Nanos)),
    				PrivateKey: &core.DataSource{
    					Specifier: &core.DataSource_InlineBytes{
    						InlineBytes: s.PrivateKey,
    					},
    				},
    			})
    			secret.Type = &tls.Secret_TlsCertificate{
    				TlsCertificate: &tls.TlsCertificate{
    					CertificateChain: &core.DataSource{
    						Specifier: &core.DataSource_InlineBytes{
    							InlineBytes: s.CertificateChain,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 25 00:20:04 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/SnappyDainPacker.java

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

        private final Packer delegate;
    
        public SnappyCommonsPacker(Packer delegate) {
            this.delegate = delegate;
        }
    
        @Override
        public void pack(List<DataSource> inputs, DataTarget output) throws IOException {
            delegate.pack(inputs, new DelegatingDataTarget(output) {
                @Override
                public OutputStream openOutput() throws IOException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. pilot/pkg/xds/sds.go

    			CertificateChain: &core.DataSource{
    				Specifier: &core.DataSource_InlineBytes{
    					InlineBytes: certInfo.Cert,
    				},
    			},
    			PrivateKey: &core.DataSource{
    				Specifier: &core.DataSource_InlineBytes{
    					InlineBytes: certInfo.Key,
    				},
    			},
    		}
    		if certInfo.Staple != nil {
    			tlsCertificate.OcspStaple = &core.DataSource{
    				Specifier: &core.DataSource_InlineBytes{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 23:04:36 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  7. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/SnappyPacker.java

    public class SnappyPacker implements Packer {
        private final Packer delegate;
    
        public SnappyPacker(Packer delegate) {
            this.delegate = delegate;
        }
    
        @Override
        public void pack(List<DataSource> inputs, DataTarget output) throws IOException {
            delegate.pack(inputs, new DelegatingDataTarget(output) {
                @Override
                public OutputStream openOutput() throws IOException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  8. dbflute_fess/dfprop/dependencyInjectionMap.dfprop

    #
    # {Java} Spring Only:
    # o dbfluteBeansPackageName (NotRequired - Default '../resources')
    # o dbfluteBeansFileName: (NotRequired - Default 'dbfluteBeans.xml')
    # o dbfluteBeansDataSourceName: (NotRequired - Default 'dataSource')
    # o dbfluteBeansDefaultAttribute: (NotRequired - Default null)
    # o isDBFluteBeansGeneratedAsJavaConfig (NotRequired - Default true since 1.1)
    #
    # {Java} Seasar Only:
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Oct 31 23:35:14 UTC 2015
    - 6.5K bytes
    - Viewed (0)
  9. pilot/pkg/xds/filters/filters.go

    						},
    						Value: &sfsvalue.FilterStateValue_FormatString{
    							FormatString: &core.SubstitutionFormatString{
    								Format: &core.SubstitutionFormatString_TextFormatSource{
    									TextFormatSource: &core.DataSource{
    										Specifier: &core.DataSource_InlineString{
    											InlineString: "%REQ(:AUTHORITY)%",
    										},
    									},
    								},
    							},
    						},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 09 09:24:25 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  10. pilot/pkg/model/extensions.go

    	if u.Scheme == "" {
    		u.Scheme = ociScheme
    	}
    
    	datasource := buildDataSource(u, plugin)
    	resourceName := p.Namespace + "." + p.Name
    	return &wasmextensions.PluginConfig{
    		Name:          resourceName,
    		RootId:        plugin.PluginName,
    		Configuration: cfg,
    		Vm:            buildVMConfig(datasource, p.ResourceVersion, plugin),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 11K bytes
    - Viewed (0)
Back to top