- Sort Score
- Result 10 results
- Languages All
Results 1011 - 1020 of 1,353 for includes (0.06 sec)
-
src/main/java/jcifs/smb1/smb1/SmbException.java
* as a special case (which it is). */ if (errcode == 0) { return "NT_STATUS_SUCCESS"; } if(( errcode & 0xC0000000 ) == 0xC0000000 ) { int min = 1; /* Don't include NT_STATUS_SUCCESS */ int max = NT_STATUS_CODES.length - 1; while( max >= min ) { int mid = (min + max) / 2; if( errcode > NT_STATUS_CODES[mid] ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 5.5K bytes - Viewed (0) -
api/maven-api-cli/src/main/java/org/apache/maven/api/cli/InvokerRequest.java
* @return an unmodifiable map of user properties */ @Nonnull Map<String, String> userProperties(); /** * Returns a map of system properties for the Maven execution. * These include both Java system properties and Maven-specific system properties. * * @return an unmodifiable map of system properties */ @Nonnull Map<String, String> systemProperties(); /**
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Thu Oct 17 08:06:47 UTC 2024 - 5.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/user/AdminUserAction.java
RenderDataUtil.register(data, "userItems", userService.getUserList(userPager)); // page navi // restore from pager copyBeanToBean(userPager, form, op -> op.include("id")); } private void registerForms(final RenderData data) { RenderDataUtil.register(data, "roleItems", roleService.getAvailableRoleList());
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 15.9K bytes - Viewed (0) -
.teamcity/src/main/kotlin/model/PerformanceTestBucketProvider.kt
if (scenarios.isEmpty()) { throw IllegalArgumentException("Scenarios list must not be empty for $testProject") } val csvLines = scenarios.map { "${it.className};${it.scenario}" } val action = "include" val fileNamePostfix = "$testProject-performance-scenarios.csv" val performanceTestSplitDirectoryName = "performance-test-splits" val unixScript = """ mkdir -p $performanceTestSplitDirectoryName
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Mon Feb 19 11:22:56 UTC 2024 - 15.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/badword/AdminBadwordAction.java
RenderDataUtil.register(data, "badWordItems", badWordService.getBadWordList(badWordPager)); // page navi // restore from pager copyBeanToBean(badWordPager, form, op -> op.include("id")); } // =================================================================================== // Edit Execute
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 16.2K bytes - Viewed (0) -
compat/maven-model/pom.xml
</plugin> <plugin> <groupId>com.github.siom79.japicmp</groupId> <artifactId>japicmp-maven-plugin</artifactId> <configuration> <parameter> <excludes> <exclude>org.apache.maven.model.*#setOtherLocation(java.lang.Object,org.apache.maven.model.InputLocation):METHOD_REMOVED</exclude>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/FileConfigService.java
setupListCondition(cb, fileConfigPager); }); // update pager BeanUtil.copyBeanToBean(fileConfigList, fileConfigPager, option -> option.include(Constants.PAGER_CONVERSION_RULE)); fileConfigPager.setPageNumberList(fileConfigList.pageRange(op -> { op.rangeSize(fessConfig.getPagingPageRangeSizeAsInteger()); }).createPageNumberList());
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 4.5K bytes - Viewed (0) -
internal/config/certsinfo.go
) // Extra ASN1 OIDs that we may need to handle var ( oidEmailAddress = []int{1, 2, 840, 113549, 1, 9, 1} ) // printName prints the fields of a distinguished name, which include such // things as its common name and locality. func printName(names []pkix.AttributeTypeAndValue, buf *strings.Builder) []string { values := []string{} for _, name := range names { oid := name.Type
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Nov 16 17:28:29 UTC 2021 - 3.1K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/features/CollectionSize.java
* com.google.common.collect.testing.FeatureSpecificTestSuiteBuilder#withFeatures(Feature...)}), * this annotation specifies each of the different sizes for which a test suite should be built. (In * a typical case, the features should include {@link CollectionSize#ANY}.) These semantics are thus * a little different from those of other Collection-related features such as {@link * CollectionFeature} or {@link SetFeature}. *
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 3.4K bytes - Viewed (0) -
build-logic/cleanup/src/main/kotlin/gradlebuild/cleanup/Cleanup.kt
*/ fun FileSystemOperations.removeDaemonLogFiles(dir: Directory) { if (dir.asFile.isDirectory) { val daemonLogFiles = dir.asFileTree.matching { include("**/*.log") } delete { delete(daemonLogFiles) } }
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Fri Jun 28 08:29:28 UTC 2024 - 4.4K bytes - Viewed (0)