Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 57 for lM (2.42 sec)

  1. src/cmd/vendor/golang.org/x/text/cases/info.go

    //    Rule: Never break between consecutive runes of this category.
    //
    // 2) Mid:
    //    MidLetter, MidNumLet, Single_Quote.
    //    (Cf. case-ignorable: MidLetter, MidNumLet, Single_Quote or cat is Mn,
    //    Me, Cf, Lm or Sk).
    //    Rule: Don't break between Letter and Mid, but break between two Mids.
    //
    // 3) Break:
    //    Any other category: NewLine, MidNum, CR, LF, Double_Quote, Katakana, and
    //    Other.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. ci/official/containers/linux_arm64/devel.usertools/aarch64_clang.bazelrc

    build --python_path="/usr/local/bin/python3"
    
    # Build TensorFlow v2
    build --define=tf_api_version=2 --action_env=TF2_BEHAVIOR=1
    
    # Use lld as the linker
    build --linkopt="-fuse-ld=lld"
    build --linkopt="-lm"
    build --linkopt="-Wl,--undefined-version"
    
    # Prevent double-compilation of some TF code, ref. b/183279666 (internal)
    # > TF's gen_api_init_files has a genrule to run the core TensorFlow code
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Nov 21 12:25:39 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  3. cmd/object-api-datatypes.go

    	UserDefined map[string]string
    
    	// ChecksumAlgorithm if set
    	ChecksumAlgorithm string
    }
    
    // Lookup - returns if uploadID is valid
    func (lm ListMultipartsInfo) Lookup(uploadID string) bool {
    	for _, upload := range lm.Uploads {
    		if upload.UploadID == uploadID {
    			return true
    		}
    	}
    	return false
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  4. src/crypto/tls/testdata/Server-TLSv13-Ed25519

    00000010  80 aa dd 14 1d 2a 73 e2  20 e3 55 14 f8 5b c8 b6  |.....*s. .U..[..|
    00000020  55 98 73 17 03 03 00 13  e6 93 11 04 c5 32 15 7d  |U.s..........2.}|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:14:50 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/NtlmUtil.java

            byte[] passwordBytes = Strings.getOEMBytes(password, tc.getConfig());
            int passwordLength = passwordBytes.length;
    
            // Only encrypt the first 14 bytes of the password for Pre 0.12 NT LM
            if ( passwordLength > 14 ) {
                passwordLength = 14;
            }
            System.arraycopy(passwordBytes, 0, p14, 0, passwordLength);
            NtlmUtil.E(p14, NtlmUtil.S8, p21);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 12:07:20 UTC 2020
    - 9.7K bytes
    - Viewed (0)
  6. src/go/internal/gccgoimporter/testdata/unicode.gox

    var L <type 1>;
    var Lao <type 1>;
    var Latin <type 1>;
    var Lepcha <type 1>;
    var Letter <type 1>;
    var Limbu <type 1>;
    var Linear_A <type 1>;
    var Linear_B <type 1>;
    var Lisu <type 1>;
    var Ll <type 1>;
    var Lm <type 1>;
    var Lo <type 1>;
    var Logical_Order_Exception <type 1>;
    var Lower <type 1>;
    const LowerCase = 1 ;
    var Lt <type 1>;
    var Lu <type 1>;
    var Lycian <type 1>;
    var Lydian <type 1>;
    var M <type 1>;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 30 21:33:51 UTC 2021
    - 7.3K bytes
    - Viewed (0)
  7. src/crypto/tls/testdata/Client-TLSv13-ExportKeyingMaterial

    00000140  1f ef 41 72 98 69 7c d6  8d f9 76 d4 4d af b0 71  |..Ar.i|...v.M..q|
    00000150  2e f7 f8 b5 73 45 05 52  fa 25 46 02 28 0d d9 7a  |....sE.R.%F.(..z|
    00000160  60 13 b9 6c 6d fb f3 be  e3 04 74 76 72 d6 a4 91  |`..lm.....tvr...|
    00000170  d1 2c 0d 1e fa 23 ef c7  80 ff 1e aa 1b af 50 58  |.,...#........PX|
    00000180  77 ea 49 d9 22 4d ed bc  bf a6 0a 41 8e e7 5b 31  |w.I."M.....A..[1|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  8. pilot/pkg/autoregistration/controller.go

    }
    
    func mergeLabels(labels ...map[string]string) map[string]string {
    	if len(labels) == 0 {
    		return map[string]string{}
    	}
    	out := make(map[string]string, len(labels)*len(labels[0]))
    	for _, lm := range labels {
    		for k, v := range lm {
    			out[k] = v
    		}
    	}
    	return out
    }
    
    var workloadGroupIsController = true
    
    func workloadEntryFromGroup(name string, proxy *model.Proxy, groupCfg *config.Config) *config.Config {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 00:00:36 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  9. src/crypto/tls/testdata/Client-TLSv10-ClientCert-ECDSA-ECDSA

    000002a0  f9 60 00 8b 30 81 88 02  42 01 b2 fb f8 5f d0 14  |.`..0...B...._..|
    000002b0  9d 3c 55 0f 16 50 6f d5  0c 4c 3e 73 2e a9 23 5f  |.<U..Po..L>s..#_|
    000002c0  e8 9c 02 5d 4c 6d b0 c1  9e 0d ac 59 36 6c d5 c2  |...]Lm.....Y6l..|
    000002d0  4c 94 94 94 6f a4 df 26  1a 54 f5 74 b8 49 75 49  |L...o..&.T.t.IuI|
    000002e0  9c aa cd 91 24 f3 52 88  6a 1e 80 02 42 01 81 a2  |....$.R.j...B...|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  10. .bazelrc

    build:rbe_linux --config=avx_linux
    # TODO(gunan): Check why we need this specified in rbe, but not in other builds.
    build:rbe_linux --linkopt=-lrt
    build:rbe_linux --host_linkopt=-lrt
    build:rbe_linux --linkopt=-lm
    build:rbe_linux --host_linkopt=-lm
    
    build:rbe_linux_cpu --config=rbe_linux
    # Linux cpu and cuda builds share the same toolchain now.
    build:rbe_linux_cpu --host_crosstool_top="@sigbuild-r2.17-clang_config_cuda//crosstool:toolchain"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
Back to top