- Sort Score
- Result 10 results
- Languages All
Results 331 - 340 of 556 for goruntime (0.09 sec)
-
guava-tests/test/com/google/common/io/FilesCreateTempDirTest.java
assertThat(isJava8()).isTrue(); } finally { System.setProperty("user.name", save); } } private static boolean isAndroid() { return System.getProperty("java.runtime.name", "").contains("Android"); } private static boolean isWindows() { return OS_NAME.value().startsWith("Windows"); } private static boolean isJava8() {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 06 17:11:11 UTC 2023 - 4.3K bytes - Viewed (0) -
src/main/resources/CLMessages.properties
ECL0101=File({0}) is not exist or not readable. ECL0102=File({0}) is not exist or not writable. ECL0103=Type({0}) is an interface not a class. ECL0104=Argument({0}) is not an array. ECL0105=Rethrew {0} as a runtime exception. ECL0106=IOException occurred, because {0} ECL0107=InvalidKeyException occurred, because {0} ECL0108=The path is null. ECL0109=Could not create a parent directory of {0}
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:58:02 UTC 2024 - 3.1K bytes - Viewed (0) -
src/cmd/asm/internal/asm/testdata/amd64.s
// This input was created by taking the instruction productions in // the old assembler's (6a's) grammar and hand-writing complete // instructions for each rule, to guarantee we cover the same space. #include "../../../../../runtime/textflag.h" TEXT foo(SB), DUPOK|NOSPLIT, $0 // LTYPE1 nonrem { outcode($1, &$2); } NEGQ R11 NEGQ 4(R11) NEGQ foo+4(SB) // LTYPE2 rimnon { outcode($1, &$2); } INT $4 DIVB R11 DIVB 4(R11)
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Tue Apr 09 18:57:21 UTC 2019 - 3.3K bytes - Viewed (0) -
compat/maven-plugin-api/src/test/java/org/apache/maven/plugin/descriptor/PluginDescriptorBuilderTest.java
MojoDescriptor md = pd.getMojos().get(0); assertEquals("jar", md.getGoal()); assertEquals("mojo-description", md.getDescription()); assertEquals("runtime", md.getDependencyResolutionRequired()); assertEquals("test", md.getDependencyCollectionRequired()); assertFalse(md.isAggregator()); assertFalse(md.isDirectInvocationOnly());
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.4K bytes - Viewed (0) -
src/cmd/asm/internal/asm/testdata/armv6.s
// Copyright 2017 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. #include "../../../../../runtime/textflag.h" TEXT foo(SB), DUPOK|NOSPLIT, $0 ADDF F0, F1, F2 // 002a31ee ADDD.EQ F3, F4, F5 // 035b340e ADDF.NE F0, F2 // 002a321e ADDD F3, F5 // 035b35ee SUBF F0, F1, F2 // 402a31ee SUBD.EQ F3, F4, F5 // 435b340e
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Oct 23 15:18:14 UTC 2024 - 4.7K bytes - Viewed (0) -
cmd/erasure.go
// along with this program. If not, see <http://www.gnu.org/licenses/>. package cmd import ( "context" "errors" "fmt" "math/rand" "os" "runtime" "sort" "sync" "time" "github.com/minio/madmin-go/v3" "github.com/minio/minio/internal/dsync" xioutil "github.com/minio/minio/internal/ioutil" "github.com/minio/pkg/v3/sync/errgroup" )
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Oct 04 22:23:33 UTC 2024 - 16.1K bytes - Viewed (0) -
cmd/global-heal.go
// along with this program. If not, see <http://www.gnu.org/licenses/>. package cmd import ( "context" "errors" "fmt" "math/rand" "runtime" "sort" "time" "github.com/dustin/go-humanize" "github.com/minio/madmin-go/v3" "github.com/minio/minio/internal/bucket/lifecycle" objectlock "github.com/minio/minio/internal/bucket/object/lock"
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sat Oct 26 09:58:27 UTC 2024 - 16.3K bytes - Viewed (0) -
guava-testlib/test/com/google/common/testing/AbstractPackageSanityTestsTest.java
* * We'd just use PackageSanityTests directly, saving us from needing this separate type, but we're * currently skipping MediumTests on Android, and we skip them by not making them present at * runtime at all. I could just make _this_ test a MediumTest, but then it wouldn't run on * Android.... The right long-term fix is probably to get MediumTests running under Android by * default and then suppress them strategically as needed.
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jun 11 21:37:55 UTC 2019 - 5.3K bytes - Viewed (0) -
src/cmd/asm/internal/asm/testdata/avx512enc/vpclmulqdq_avx512f.s
// Code generated by avx512test. DO NOT EDIT. #include "../../../../../../runtime/textflag.h" TEXT asmtest_vpclmulqdq_avx512f(SB), NOSPLIT, $0 VPCLMULQDQ $127, X22, X21, X15 // 6233550044fe7f or 6233d50044fe7f VPCLMULQDQ $127, X7, X21, X15 // 6273550044ff7f or 6273d50044ff7f VPCLMULQDQ $127, X19, X21, X15 // 6233550044fb7f or 6233d50044fb7f
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Tue May 22 14:57:15 UTC 2018 - 8.2K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/profile/activation/JdkVersionProfileActivator.java
import org.apache.maven.model.building.ModelProblemCollectorRequest; import org.apache.maven.model.profile.ProfileActivationContext; /** * Determines profile activation based on the version of the current Java runtime. * * @see Activation#getJdk() * @deprecated use {@link org.apache.maven.api.services.ModelBuilder} instead */ @Named("jdk-version") @Singleton @Deprecated(since = "4.0.0")
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6.7K bytes - Viewed (0)