- Sort Score
- Result 10 results
- Languages All
Results 2021 - 2030 of 2,360 for created (0.06 sec)
-
src/test/java/org/codelibs/core/beans/impl/PropertyDescImplTest.java
} /** * @throws Exception */ @Test public void testPackagePrivateBean() throws Exception { final MogeBean moge = MogeBeanFactory.create("moge"); final BeanDesc beanDesc = new BeanDescImpl(moge.getClass()); final PropertyDesc propDesc = beanDesc.getPropertyDesc("name"); assertThat(propDesc, is(notNullValue()));
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 11.1K bytes - Viewed (0) -
src/test/java/jcifs/tests/FileAttributesTest.java
f.setCreateTime(time); long newTime = f.createTime(); if ( newTime == orig ) { Assume.assumeTrue("Create time was not changed", false); } assertEquals(time, newTime); } catch ( SmbUnsupportedOperationException e ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:09:03 UTC 2023 - 12.3K bytes - Viewed (0) -
src/main/java/jcifs/SmbConstants.java
static final int O_RDONLY = 0x01; static final int O_WRONLY = 0x02; static final int O_RDWR = 0x03; static final int O_APPEND = 0x04; // Open Function Encoding // create if the file does not exist static final int O_CREAT = 0x0010; // fail if the file exists static final int O_EXCL = 0x0020; // truncate if the file exists static final int O_TRUNC = 0x0040;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 8.9K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/MetadataGraph.java
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 13.1K bytes - Viewed (0) -
docs/hotfixes.md
## Backporting a fix Developer is advised to clone the MinIO source and checkout the MinIO release tag customer is currently on. ``` λ git checkout RELEASE.2021-04-22T15-44-28Z ``` Create a branch and proceed to push the branch **upstream** > (upstream here points to ******@****.***:minio/minio.git) ``` λ git branch -m RELEASE.2021-04-22T15-44-28Z.hotfix
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed Feb 14 21:36:02 UTC 2024 - 5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/allcommon/EsAbstractConditionQuery.java
@Override public ColumnRealName toColumnRealName(String columnDbName) { return ColumnRealName.create(xgetAliasName(), toColumnSqlName(columnDbName)); } @Override public ColumnRealName toColumnRealName(ColumnInfo columnInfo) { return ColumnRealName.create(xgetAliasName(), columnInfo.getColumnSqlName()); } @Override
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 21.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/user/allcommon/EsAbstractConditionQuery.java
@Override public ColumnRealName toColumnRealName(String columnDbName) { return ColumnRealName.create(xgetAliasName(), toColumnSqlName(columnDbName)); } @Override public ColumnRealName toColumnRealName(ColumnInfo columnInfo) { return ColumnRealName.create(xgetAliasName(), columnInfo.getColumnSqlName()); } @Override
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 21.1K bytes - Viewed (0) -
guava-tests/test/com/google/common/io/SourceSinkFactories.java
} return builder.toString(); } } private static class UrlByteSourceFactory extends FileByteSourceFactory { @SuppressWarnings("CheckReturnValue") // only using super.createSource to create a file @Override public ByteSource createSource(byte[] bytes) throws IOException { super.createSource(bytes); return Resources.asByteSource(getFile().toURI().toURL()); } }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:26:48 UTC 2024 - 17.7K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/hash/AbstractStreamingHasherTest.java
assertThrows(IndexOutOfBoundsException.class, () -> sink.putBytes(new byte[8], 0, 16)); assertThrows(IndexOutOfBoundsException.class, () -> sink.putBytes(new byte[8], 0, -1)); } /** * This test creates a long random sequence of inputs, then a lot of differently configured sinks * process it; all should produce the same answer, the only difference should be the number of
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jul 23 14:22:54 UTC 2024 - 8.5K bytes - Viewed (0) -
ci/devinfra/docker/windows/Dockerfile
# This Dockerfile creates an image that has: # - the correct MTU setting for networking from inside the container to work. # - Visual Studio 2022 Build Tools # - MSVC 14.39 # - LLVM/Clang 18.1.4 # - MSYS2 + curl, git, patch, vim, unzip, zip # - Python 3.12.3 # - Bazelisk 1.19.0 # - JDK 21 (Azul Zulu) FROM mcr.microsoft.com/windows/servercore:ltsc2019 SHELL ["powershell.exe", "-ExecutionPolicy", "Bypass", "-Command", \
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Tue Aug 20 13:57:04 UTC 2024 - 7.3K bytes - Viewed (0)