- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 963 for usrc (0.04 sec)
-
.github/workflows/check-markdown-links.yml
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Mon Oct 14 07:50:42 UTC 2024 - 920 bytes - Viewed (0) -
cni/deployments/kubernetes/Dockerfile.install-cni
ARG TARGETARCH COPY ${TARGETARCH:-amd64}/istio-cni /opt/cni/bin/istio-cni COPY ${TARGETARCH:-amd64}/install-cni /usr/local/bin/install-cni ENV PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/opt/cni/bin WORKDIR /opt/cni/bin
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Jun 26 22:17:14 UTC 2024 - 1002 bytes - Viewed (0) -
.bazelrc
test:rbe_base --test_env=USER=anon # TODO(kanglan): Check if we want to merge rbe_linux into rbe_linux_cpu. build:rbe_linux --config=rbe_base build:rbe_linux --action_env=PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/go/bin" # Non-rbe settings we should include because we do not run configure build:rbe_linux --config=avx_linux # TODO(gunan): Check why we need this specified in rbe, but not in other builds.
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Mon Oct 28 22:02:31 UTC 2024 - 51.3K bytes - Viewed (0) -
docs/pt/docs/environment-variables.md
Por exemplo, a variável de ambiente `PATH` poderia ter esta aparência: //// tab | Linux, macOS ```plaintext /usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin ``` Isso significa que o sistema deve procurar programas nos diretórios: * `/usr/local/bin` * `/usr/bin` * `/bin` * `/usr/sbin` * `/sbin` //// //// tab | Windows ```plaintext
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Sep 10 10:36:42 UTC 2024 - 8.4K bytes - Viewed (0) -
src/test/java/org/codelibs/core/beans/util/BeanUtilTest.java
*/ @Test public void testCopyBeanToBean() throws Exception { final SrcBean src = new SrcBean(); src.aaa = "aaa"; src.bbb = "bbb"; src.ccc = "ccc"; src.eee = "1"; final DestBean dest = new DestBean(); BeanUtil.copyBeanToBean(src, dest); assertThat(dest.bbb, is(nullValue())); assertThat(dest.ccc, is("ccc"));
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 34.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/http/NtlmSsp.java
byte[] src = Base64.decode(msg.substring(5)); if (src[8] == 1) { Type1Message type1 = new Type1Message(src); Type2Message type2 = new Type2Message(type1, challenge, null); msg = Base64.encode(type2.toByteArray()); resp.setHeader( "WWW-Authenticate", "NTLM " + msg ); } else if (src[8] == 3) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 4.4K bytes - Viewed (0) -
src/main/webapp/WEB-INF/orig/view/login/index.jsp
<input type="hidden" id="contextPath" value="${contextPath}" /> <script type="text/javascript" src="${fe:url('/js/admin/jquery-3.7.1.min.js')}"></script> <script type="text/javascript" src="${fe:url('/js/admin/popper.min.js')}"></script> <script type="text/javascript" src="${fe:url('/js/admin/bootstrap.min.js')}"></script> <script type="text/javascript" src="${fe:url('/js/login.js')}"></script> </body>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 26 01:07:52 UTC 2024 - 3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/util/Hexdump.java
} public static String toHexString( byte[] src, int srcIndex, int size ) { char[] c = new char[size]; size = ( size % 2 == 0 ) ? size / 2 : size / 2 + 1; for( int i = 0, j = 0; i < size; i++ ) { c[j++] = HEX_DIGITS[(src[i] >> 4 ) & 0x0F]; if( j == c.length ) { break; } c[j++] = HEX_DIGITS[src[i] & 0x0F]; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 5.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/FessBaseAction.java
} protected static void copyBeanToBean(final Object src, final Object dest, final Consumer<CopyOptions> option) { BeanUtil.copyBeanToBean(src, dest, option); } protected static void copyMapToBean(final Map<String, ? extends Object> src, final Object dest, final Consumer<CopyOptions> option) { BeanUtil.copyMapToBean(src, dest, option); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 9.3K bytes - Viewed (0) -
src/main/java/jcifs/ntlmssp/NtlmMessage.java
} static int readULong ( byte[] src, int index ) { return ( src[ index ] & 0xff ) | ( ( src[ index + 1 ] & 0xff ) << 8 ) | ( ( src[ index + 2 ] & 0xff ) << 16 ) | ( ( src[ index + 3 ] & 0xff ) << 24 ); } static int readUShort ( byte[] src, int index ) { return ( src[ index ] & 0xff ) | ( ( src[ index + 1 ] & 0xff ) << 8 ); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 5.1K bytes - Viewed (0)