- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 46 for CL (0.04 sec)
-
lib/time/update.bash
# # That will prepare the files and create the commit. # # To review such a commit (as the reviewer), use: # # git codereview change NNNNNN # CL number # cd lib/time # ./update.bash # # If it prints "No updates needed.", then the generated files # in the CL match the update.bash in the CL. # Versions to use. CODE=2024b DATA=2024b set -e cd $(dirname $0) rm -rf work mkdir work
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Mon Sep 23 14:25:08 UTC 2024 - 1.8K bytes - Viewed (0) -
src/cmd/asm/internal/asm/testdata/amd64enc.s
SHLB $7, R11 // 41c0e307 SHLW CL, DX, (BX) // 660fa513 SHLW CL, R11, (BX) // 66440fa51b SHLW CL, DX, (R11) // 66410fa513 SHLW CL, R11, (R11) // 66450fa51b SHLW CL, DX, DX // 660fa5d2 SHLW CL, R11, DX // 66440fa5da SHLW CL, DX, R11 // 66410fa5d3
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Fri Oct 08 21:38:44 UTC 2021 - 581.9K bytes - Viewed (1) -
src/main/java/org/codelibs/core/lang/ClassLoaderUtil.java
} /** * クラスローダ<code>other</code>がクラスローダ<code>cl</code>の祖先なら<code>true</code> * を返します。 * * @param cl * クラスローダ * @param other * クラスローダ * @return クラスローダ<code>other</code>がクラスローダ<code>cl</code>の祖先なら * <code>true</code> */ protected static boolean isAncestor(final ClassLoader cl, final ClassLoader other) {
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 8.2K bytes - Viewed (0) -
.bazelrc
build:avx_win --copt=/arch:AVX # Use Clang-cl compiler on Windows build:win_clang --copt=/clang:-Weverything build:win_clang --extra_toolchains=@local_config_cc//:cc-toolchain-x64_windows-clang-cl build:win_clang --extra_execution_platforms=//tensorflow/tools/toolchains/win:x64_windows-clang-cl build:win_clang --host_platform=//tensorflow/tools/toolchains/win:x64_windows-clang-cl build:win_clang --compiler=clang-cl build:win_clang --linkopt=/FORCE:MULTIPLE
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Mon Oct 28 22:02:31 UTC 2024 - 51.3K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/model/SimpleClassMetaDataRepository.java
public void put(String fullyQualifiedClassName, T metaData) { classes.put(fullyQualifiedClassName, metaData); } @Override public void each(Closure cl) { for (Map.Entry<String, T> entry : classes.entrySet()) { cl.call(new Object[]{entry.getKey(), entry.getValue()}); } } public void each(Action<? super T> action) { for (T t : classes.values()) {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 4K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/model/ClassMetaDataRepository.java
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 989 bytes - Viewed (0) -
misc/chrome/gophertool/popup.html
<head> <script src="gopher.js"></script> <script src="popup.js"></script> </head> <body style='margin: 0.5em; font-family: sans;'> <small><a href="#" url="https://golang.org/issue">issue</a>, <a href="#" url="https://golang.org/cl">codereview</a>, <a href="#" url="https://golang.org/change">commit</a>, or <a href="#" url="https://golang.org/pkg/">pkg</a> id/name:</small>
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Fri Mar 05 02:35:21 UTC 2021 - 830 bytes - Viewed (0) -
src/cmd/asm/internal/asm/testdata/386enc.s
// license that can be found in the LICENSE file. #include "../../../../../runtime/textflag.h" TEXT asmtest(SB),DUPOK|NOSPLIT,$0 // Instructions that were encoded with BYTE sequences. // Included to simplify validation of CL that fixed that. MOVQ (AX), M0 // 0f6f00 MOVQ M0, 8(SP) // 0f7f442408 MOVQ 8(SP), M0 // 0f6f442408 MOVQ M0, (AX) // 0f7f00 MOVQ M0, (BX) // 0f7f03
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Tue Apr 11 18:32:50 UTC 2023 - 1.2K bytes - Viewed (0) -
istioctl/pkg/writer/envoy/configdump/listener.go
return "" } a, ok := r.GetAction().(*route.Route_Route) if !ok { return "" } cl, ok := a.Route.ClusterSpecifier.(*route.RouteAction_Cluster) if !ok { return "" } if strings.Contains(cl.Cluster, "Cluster") { return cl.Cluster } return fmt.Sprintf("Cluster: %s", cl.Cluster) } func describeDomains(vh *route.VirtualHost) string {
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Nov 29 12:37:14 UTC 2023 - 18.1K bytes - Viewed (0) -
ci/devinfra/docker/windows/Dockerfile
# MSVC compilers installed, and a particular one should be used. # To find exact versions available: # - Navigate to the relevant folder, e.g. # C:\Program Files\Microsoft Visual Studio\2022 # - Search for the `cl.exe` file: `gci -r -fi cl.exe` # - The version will be part of the found path, e.g. # 2022\Community\VC\Tools\MSVC\14.39.33519\bin\Hostx64\x64 # ENV BAZEL_VC_FULL_VERSION 14.39.33519 # Install Bazelisk. RUN md C:\tools\bazel
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Tue Aug 20 13:57:04 UTC 2024 - 7.3K bytes - Viewed (0)