- Sort Score
- Result 10 results
- Languages All
Results 611 - 620 of 2,871 for value (0.03 sec)
-
dbflute.xml
<?xml version="1.0" encoding="UTF-8"?> <project name="dbflute" basedir="."> <property name="mydbflute.dir" value="${basedir}/mydbflute" /> <property name="target.dir" value="${basedir}/target" /> <property name="branch.name" value="fess-14.17" /> <property name="mydbflute.url" value="https://github.com/lastaflute/lastaflute-example-waterfront/archive/${branch.name}.zip" /> <target name="mydbflute.check"> <condition property="mydbflute.exists">
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Sep 21 05:37:26 UTC 2024 - 1000 bytes - Viewed (0) -
android/guava/src/com/google/common/graph/ImmutableValueGraph.java
public ImmutableValueGraph.Builder<N, V> putEdgeValue(N nodeU, N nodeV, V value) { mutableValueGraph.putEdgeValue(nodeU, nodeV, value); return this; } /** * Adds an edge connecting {@code endpoints} if one is not already present, and sets a value for * that edge to {@code value} (overwriting the existing value, if any). *
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Feb 01 16:30:37 UTC 2022 - 7.7K bytes - Viewed (0) -
helm-releases/minio-3.4.4.tgz
MINIO_PROMETHEUS_AUTH_TYPE value: "public" {{- end}} {{- if .Values.etcd.endpoints }} - name: MINIO_ETCD_ENDPOINTS value: {{ join "," .Values.etcd.endpoints | quote }} {{- if .Values.etcd.clientCert }} - name: MINIO_ETCD_CLIENT_CERT value: "/tmp/credentials/etcd_client.crt" {{- end }} {{- if .Values.etcd.clientCertKey }} - name: MINIO_ETCD_CLIENT_CERT_KEY value: "/tmp/credentials/etcd_client.key" {{- end }} {{- if .Values.etcd.pathPrefix }} - name: MINIO_ETCD_PATH_PREFIX value: {{ .Values.etcd.pathPrefix }}...
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Dec 31 04:21:24 UTC 2021 - 15.2K bytes - Viewed (0) -
helm-releases/minio-3.4.5.tgz
MINIO_PROMETHEUS_AUTH_TYPE value: "public" {{- end}} {{- if .Values.etcd.endpoints }} - name: MINIO_ETCD_ENDPOINTS value: {{ join "," .Values.etcd.endpoints | quote }} {{- if .Values.etcd.clientCert }} - name: MINIO_ETCD_CLIENT_CERT value: "/tmp/credentials/etcd_client.crt" {{- end }} {{- if .Values.etcd.clientCertKey }} - name: MINIO_ETCD_CLIENT_CERT_KEY value: "/tmp/credentials/etcd_client.key" {{- end }} {{- if .Values.etcd.pathPrefix }} - name: MINIO_ETCD_PATH_PREFIX value: {{ .Values.etcd.pathPrefix }}...
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed Jan 05 19:32:55 UTC 2022 - 15.2K bytes - Viewed (0) -
helm-releases/minio-3.4.2.tgz
}} - name: MINIO_ETCD_ENDPOINTS value: {{ join "," .Values.etcd.endpoints | quote }} {{- if .Values.etcd.clientCert }} - name: MINIO_ETCD_CLIENT_CERT value: "/etc/credentials/etcd_client_cert.pem" {{- end }} {{- if .Values.etcd.clientCertKey }} - name: MINIO_ETCD_CLIENT_CERT_KEY value: "/etc/credentials/etcd_client_cert_key.pem" {{- end }} {{- if .Values.etcd.pathPrefix }} - name: MINIO_ETCD_PATH_PREFIX value: {{ .Values.etcd.pathPrefix }} {{- end }} {{- if .Values.etcd.corednsPathPrefix }} - name:...
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Dec 21 02:58:25 UTC 2021 - 15.2K bytes - Viewed (0) -
okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/CertificateAdapters.kt
} } override fun toDer( writer: DerWriter, value: Long, ) { // [1950-01-01T00:00:00..2050-01-01T00:00:00Z) if (value in -631_152_000_000L until 2_524_608_000_000L) { Adapters.UTC_TIME.toDer(writer, value) } else { Adapters.GENERALIZED_TIME.toDer(writer, value) } } } /** * ``` * Validity ::= SEQUENCE {
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 13.6K bytes - Viewed (0) -
guava/src/com/google/common/graph/UndirectedGraphConnections.java
return adjacentNodeValues.remove(node); } @Override public void addPredecessor(N node, V value) { @SuppressWarnings("unused") V unused = addSuccessor(node, value); } @Override @CheckForNull public V addSuccessor(N node, V value) { return adjacentNodeValues.put(node, value); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 06 00:47:57 UTC 2021 - 3.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/log/exbhv/ClickLogBhv.java
protected LocalDateTime toLocalDateTime(final Object value) { if (value != null) { try { final Instant instant = Instant.from(DateTimeFormatter.ISO_INSTANT.parse(value.toString())); return LocalDateTime.ofInstant(instant, ZoneId.systemDefault()); } catch (final DateTimeParseException e) { logger.debug("Invalid date format: {}", value, e); } }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 2.1K bytes - Viewed (0) -
guava-tests/test/com/google/common/cache/TestingWeighers.java
public int weigh(Object key, Object value) { return constant; } } static final class IntKeyWeigher implements Weigher<Integer, Object> { @Override public int weigh(Integer key, Object value) { return key; } } static final class IntValueWeigher implements Weigher<Object, Integer> { @Override public int weigh(Object key, Integer value) { return value; } }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Dec 04 17:37:03 UTC 2017 - 1.9K bytes - Viewed (0) -
guava/src/com/google/common/graph/ImmutableValueGraph.java
public ImmutableValueGraph.Builder<N, V> putEdgeValue(N nodeU, N nodeV, V value) { mutableValueGraph.putEdgeValue(nodeU, nodeV, value); return this; } /** * Adds an edge connecting {@code endpoints} if one is not already present, and sets a value for * that edge to {@code value} (overwriting the existing value, if any). *
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Feb 01 16:30:37 UTC 2022 - 7.7K bytes - Viewed (0)