- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 316 for combiner (0.08 sec)
-
guava/src/com/google/common/reflect/TypeResolver.java
// There is no contract one way or another as long as isSubtypeOf() works as expected. combined.addAll(asList(typeParam.getBounds())); if (combined.size() > 1) { // Object is implicit and only useful if it's the only bound. combined.remove(Object.class); } return super.captureAsTypeVariable(combined.toArray(new Type[0])); } }; }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Oct 10 19:45:10 UTC 2022 - 24.2K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/project/inheritance/t12/ProjectInheritanceTest.java
Plugin compilerPlugin = (Plugin) pluginMap.get("org.apache.maven.plugins:maven-compiler-plugin"); assertNotNull(compilerPlugin); Map executionMap = compilerPlugin.getExecutionsAsMap(); assertNull( executionMap.get("test"), "Plugin execution: 'test' should NOT exist in the compiler plugin specification for the child project!"); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.6K bytes - Viewed (0) -
guava/src/com/google/common/hash/Crc32cHashFunction.java
} } @Override protected void processRemaining(ByteBuffer bb) { if (finished) { return; } crc0 = combine(0, crc0); crc0 = combine(crc0, crc1); crc0 = combine(crc0, crc2); crc0 = combine(crc0, crc3); while (bb.hasRemaining()) { crc0 = (crc0 >>> 8) ^ BYTE_TABLE[(bb.get() ^ crc0) & 0xFF]; } finished = true; }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Apr 20 18:43:59 UTC 2021 - 21.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/dfs/DfsReferralDataInternal.java
*/ boolean isIntermediate (); /** * @param next * @return new referral, combining a chain of referrals */ DfsReferralDataInternal combine ( DfsReferralData next ); /** * @param dr */ void append ( DfsReferralDataInternal dr );
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2.4K bytes - Viewed (0) -
cmd/xl-storage-format-v2_string.go
// Code generated by "stringer -type VersionType,ErasureAlgo -output=xl-storage-format-v2_string.go xl-storage-format-v2.go"; DO NOT EDIT. package cmd import "strconv" func _() { // An "invalid array index" compiler error signifies that the constant values have changed. // Re-run the stringer command to generate them again. var x [1]struct{} _ = x[invalidVersionType-0] _ = x[ObjectType-1] _ = x[DeleteType-2] _ = x[LegacyType-3]
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Dec 02 19:29:16 UTC 2021 - 1.4K bytes - Viewed (0) -
docs/es/docs/how-to/graphql.md
# GraphQL Como **FastAPI** está basado en el estándar **ASGI**, es muy fácil integrar cualquier library **GraphQL** que sea compatible con ASGI. Puedes combinar *operaciones de path* regulares de la library de FastAPI con GraphQL en la misma aplicación. /// tip | Consejo **GraphQL** resuelve algunos casos de uso específicos. Tiene **ventajas** y **desventajas** cuando lo comparas con **APIs web** comunes.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 3.5K bytes - Viewed (0) -
compat/maven-compat/src/test/resources/inheritance-repo/t12/p0/pom.xml
<artifactId>p0</artifactId> <packaging>pom</packaging> <version>1.0</version> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <executions> <execution> <id>test</id> <!-- The key to this test... --> <inherited>false</inherited> <goals>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 672 bytes - Viewed (0) -
ci/official/containers/linux_arm64/devel.usertools/aarch64.bazelrc
test:nonpip_filters --test_lang_filters=py --flaky_test_attempts=3 --test_size_filters=small,medium test:nonpip --config=nonpip_filters -- //tensorflow/... -//tensorflow/compiler/tf2tensorrt/... -//tensorflow/core/tpu/... -//tensorflow/lite/... -//tensorflow/tools/toolchains/... # "pip tests" run a similar suite of tests the "nonpip" tests, but do something
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Fri Jul 12 20:16:57 UTC 2024 - 5.7K bytes - Viewed (0) -
ci/official/bisect.sh
# ci/official/wheel.sh # TFCI: The env config path, relative to the TF root dir, e.g. # ci/official/envs/an_env_config # # Note that you can combine bisect.sh with any.sh to bisect a single test: # # export TFCI=... # export TF_BISECT_SCRIPT=ci/official/any.sh # export TF_BISECT_GOOD=a_good_commit_sha # export TF_BISECT_BAD=a_failing_commit_sha
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Thu Feb 01 03:21:19 UTC 2024 - 1.8K bytes - Viewed (0) -
istioctl/pkg/admin/istiodconfig.go
if istiodReset && outputLogLevel != "" { logCmd.Println(logCmd.UsageString()) return fmt.Errorf("--level cannot be combined with --reset") } if istiodReset && stackTraceLevel != "" { logCmd.Println(logCmd.UsageString()) return fmt.Errorf("--stack-trace-level cannot be combined with --reset") } return nil }, RunE: func(logCmd *cobra.Command, args []string) error {
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Sat Apr 13 05:23:38 UTC 2024 - 13.5K bytes - Viewed (0)