Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 136 for _edata (4.29 sec)

  1. maven-embedder/src/main/java/org/apache/maven/cli/event/DefaultEventSpyContext.java

    /**
     * DefaultEventSpyContext
     */
    public class DefaultEventSpyContext implements EventSpy.Context {
    
        private final Map<String, Object> data = new HashMap<>();
    
        public Map<String, Object> getData() {
            return data;
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  2. pkg/scheduler/extender.go

    		cfg.TLSClientConfig.CAFile = config.TLSConfig.CAFile
    		cfg.TLSClientConfig.CertData = config.TLSConfig.CertData
    		cfg.TLSClientConfig.KeyData = config.TLSConfig.KeyData
    		cfg.TLSClientConfig.CAData = config.TLSConfig.CAData
    	}
    	if config.EnableHTTPS {
    		hasCA := len(cfg.CAFile) > 0 || len(cfg.CAData) > 0
    		if !hasCA {
    			cfg.Insecure = true
    		}
    	}
    	tlsConfig, err := restclient.TLSConfigFor(&cfg)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 19:07:19 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/FileTransformer.java

            }
    
            final byte[] data = accessResultData.getData();
            if (data == null) {
                return null;
            }
            final String encoding = accessResultData.getEncoding();
            String filePath;
            try {
                filePath = new String(data, encoding == null ? Constants.UTF_8 : encoding);
            } catch (final UnsupportedEncodingException e) {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  4. cmd/data-scanner_test.go

    Krishnan Parthasarathi <******@****.***> 1714735138 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 03 11:18:58 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. cmd/data-usage_test.go

    Harshavardhana <******@****.***> 1711552240 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Mar 27 15:10:40 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  6. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/ResultData.java

        private String transformerName;
    
        private byte[] data;
    
        private String encoding;
    
        private Set<RequestData> childUrlSet = new LinkedHashSet<>();
    
        public byte[] getData() {
            return data;
        }
    
        public void setData(final byte[] data) {
            this.data = data;
        }
    
        public void addUrl(final RequestData url) {
            childUrlSet.add(url);
        }
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. pkg/scheduler/apis/config/zz_generated.deepcopy.go

    	if in.CertData != nil {
    		in, out := &in.CertData, &out.CertData
    		*out = make([]byte, len(*in))
    		copy(*out, *in)
    	}
    	if in.KeyData != nil {
    		in, out := &in.KeyData, &out.KeyData
    		*out = make([]byte, len(*in))
    		copy(*out, *in)
    	}
    	if in.CAData != nil {
    		in, out := &in.CAData, &out.CAData
    		*out = make([]byte, len(*in))
    		copy(*out, *in)
    	}
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 07 22:02:57 UTC 2022
    - 16.2K bytes
    - Viewed (0)
  8. cmd/data-usage.go

    Harshavardhana <******@****.***> 1715215894 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 09 00:51:34 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. src/debug/elf/file.go

    	}
    
    	// The first entry is all zeros.
    	data = data[Sym32Size:]
    
    	symbols := make([]Symbol, len(data)/Sym32Size)
    
    	i := 0
    	var sym Sym32
    	for len(data) > 0 {
    		sym.Name = f.ByteOrder.Uint32(data[0:4])
    		sym.Value = f.ByteOrder.Uint32(data[4:8])
    		sym.Size = f.ByteOrder.Uint32(data[8:12])
    		sym.Info = data[12]
    		sym.Other = data[13]
    		sym.Shndx = f.ByteOrder.Uint16(data[14:16])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:49:58 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  10. pkg/scheduler/apis/config/types.go

    	// CertData takes precedence over CertFile
    	CertData []byte
    	// KeyData holds PEM-encoded bytes (typically read from a client certificate key file).
    	// KeyData takes precedence over KeyFile
    	KeyData []byte `datapolicy:"security-key"`
    	// CAData holds PEM-encoded bytes (typically read from a root certificates bundle).
    	// CAData takes precedence over CAFile
    	CAData []byte
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 18:47:23 UTC 2024
    - 14.8K bytes
    - Viewed (0)
Back to top