- Sort Score
- Result 10 results
- Languages All
Results 911 - 920 of 3,988 for true (0.02 sec)
-
cmd/bucket-replication-utils.go
targetsMap map[string]replicateTargetDecision } // ReplicateAny returns true if at least one target qualifies for replication func (d ReplicateDecision) ReplicateAny() bool { for _, t := range d.targetsMap { if t.Replicate { return true } } return false } // Synchronous returns true if at least one target qualifies for synchronous replication
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Jun 10 15:31:51 UTC 2024 - 26.3K bytes - Viewed (0) -
.github/workflows/root-disable.yml
pull_request: branches: - master # This ensures that previous jobs for the PR are canceled when the PR is # updated. concurrency: group: ${{ github.workflow }}-${{ github.head_ref }} cancel-in-progress: true permissions: contents: read jobs: build: name: Go ${{ matrix.go-version }} on ${{ matrix.os }} runs-on: ${{ matrix.os }} strategy: matrix: go-version: [1.22.x]
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed May 22 23:07:14 UTC 2024 - 734 bytes - Viewed (0) -
build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/docbook/ClassDocRendererTest.groovy
PropertyDoc readWriteProperty = propertyDoc('readWriteProperty', readable: true, writeable: true) PropertyDoc readOnlyProperty = propertyDoc('readOnlyProperty', readable: true, writeable: false) PropertyDoc writeOnlyProperty = propertyDoc('writeOnlyProperty', readable: false, writeable: true) _ * classDoc.classProperties >> [readWriteProperty, readOnlyProperty, writeOnlyProperty]
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 40.8K bytes - Viewed (0) -
src/main/webapp/WEB-INF/orig/view/index.jsp
<a class="nav-link dropdown-toggle" data-toggle="dropdown" href="#" role="button" aria-haspopup="true" aria-expanded="false"> <em class="fa fa-fw fa-user">${username} </a> <div class="dropdown-menu" aria-labelledby="userMenu"> <c:if test="${editableUser == true}"> <la:link href="/profile" styleClass="dropdown-item"> <la:message key="labels.profile" />
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 26 01:07:52 UTC 2024 - 6.9K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/TablesTransformValuesRowTest.java
import java.util.Map; @GwtCompatible @ElementTypesAreNonnullByDefault public class TablesTransformValuesRowTest extends RowTests { public TablesTransformValuesRowTest() { super(false, false, true, true, true); } @Override Table<Character, String, Integer> makeTable() { Table<Character, String, Integer> table = HashBasedTable.create(); return transformValues(table, TableCollectionTest.DIVIDE_BY_2); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 1.6K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/TreeBasedTableRowMapSubMapTest.java
import java.util.Map; @GwtCompatible @ElementTypesAreNonnullByDefault public class TreeBasedTableRowMapSubMapTest extends RowMapTests { public TreeBasedTableRowMapSubMapTest() { super(false, true, true, true); } @Override TreeBasedTable<String, Integer, Character> makeTable() { TreeBasedTable<String, Integer, Character> table = TreeBasedTable.create(); table.put("a", 1, 'a');
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Feb 19 20:34:55 UTC 2024 - 1.6K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/TablesTransformValuesRowMapTest.java
import java.util.Map; @GwtCompatible @ElementTypesAreNonnullByDefault public class TablesTransformValuesRowMapTest extends RowMapTests { public TablesTransformValuesRowMapTest() { super(false, true, true, true); } @Override Table<String, Integer, Character> makeTable() { Table<String, Integer, String> original = HashBasedTable.create(); return transformValues(original, TableCollectionTest.FIRST_CHARACTER);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 1.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/FailureUrlService.java
failureUrlBhv.insertOrUpdate(failureUrl, op -> { op.setRefreshPolicy(Constants.TRUE); }); } public void delete(final FailureUrl failureUrl) { failureUrlBhv.delete(failureUrl, op -> { op.setRefreshPolicy(Constants.TRUE); }); } protected void setupListCondition(final FailureUrlCB cb, final FailureUrlPager failureUrlPager) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Mon Jun 24 01:20:42 UTC 2024 - 6.3K bytes - Viewed (0) -
guava/src/com/google/common/graph/EndpointPairIterator.java
checkState(!successorIterator.hasNext()); if (!nodeIterator.hasNext()) { return false; } node = nodeIterator.next(); successorIterator = graph.successors(node).iterator(); return true; } /** * If the graph is directed, each ordered [source, target] pair will be visited once if there is * an edge connecting them. */
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Jul 09 17:31:04 UTC 2021 - 5K bytes - Viewed (0) -
src/main/resources/fess_env_crawler.properties
development.here = false # The title of environment (e.g. local or integration or production) environment.title = Production # Does it enable the Framework internal debug? (true only when emergency) framework.debug = false # one day: 86400000, three days: 259200000, five days: 432000000, one week: 604800000, one year: 31556926000
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Mon Jan 29 07:34:32 UTC 2018 - 2.2K bytes - Viewed (0)