Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 377 for randPod (0.16 sec)

  1. maven-core/src/main/java/org/apache/maven/classrealm/DefaultClassRealmManager.java

            this.providedArtifacts = exports.getExportedArtifacts();
        }
    
        private ClassRealm newRealm(String id) {
            synchronized (world) {
                String realmId = id;
    
                Random random = new Random();
    
                while (true) {
                    try {
                        ClassRealm classRealm = world.newRealm(realmId, null);
    
                        logger.debug("Created new class realm {}", realmId);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:53:42 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  2. src/hash/maphash/smhasher_test.go

    		b[n+1] = byte(v >> 8)
    		b[n+2] = byte(v >> 16)
    		b[n+3] = byte(v >> 24)
    		genPerm(h, b, s, n+4)
    	}
    }
    
    type key interface {
    	clear()              // set bits all to 0
    	random(r *rand.Rand) // set key to something random
    	bits() int           // how many bits key has
    	flipBit(i int)       // flip bit i of the key
    	hash() uint64        // hash the key
    	name() string        // for error reporting
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:41:38 UTC 2024
    - 11K bytes
    - Viewed (0)
  3. .github/actions/notify-translations/app/main.py

            )
        contents = settings.github_event_path.read_text()
        github_event = PartialGitHubEvent.parse_raw(contents)
    
        # Avoid race conditions with multiple labels
        sleep_time = random.random() * 10  # random number between 0 and 10 seconds
        logging.info(
            f"Sleeping for {sleep_time} seconds to avoid "
            "race conditions and multiple comments"
        )
        time.sleep(sleep_time)
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Sep 27 23:01:46 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/filesystem/modular_filesystem_registration.cc

      if (ops->random_access_file_ops != nullptr)
        TF_RETURN_IF_ERROR(CheckABI(ops->random_access_file_ops_abi,
                                    TF_RANDOM_ACCESS_FILE_OPS_ABI,
                                    "random access file"));
    
      if (ops->writable_file_ops != nullptr)
        TF_RETURN_IF_ERROR(CheckABI(ops->writable_file_ops_abi,
                                    TF_WRITABLE_FILE_OPS_ABI, "writable file"));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 07 22:08:43 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  5. docs/security/README.md

    #### Randomness
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Feb 12 00:51:25 UTC 2022
    - 13.8K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/smb1/NtlmPasswordAuthentication.java

    public final class NtlmPasswordAuthentication implements Principal, Serializable {
    
        private static final int LM_COMPATIBILITY =
                Config.getInt("jcifs.smb1.smb.lmCompatibility", 3);
    
        private static final Random RANDOM = new Random();
    
        private static LogStream log = LogStream.getInstance();
    
        // KGS!@#$%
        private static final byte[] S8 = {
            (byte)0x4b, (byte)0x47, (byte)0x53, (byte)0x21,
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 22.5K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/ntlmssp/Type3Message.java

                byte[] clientChallenge = new byte[8];
                RANDOM.nextBytes(clientChallenge);
                setLMResponse(getLMv2Response(type2, domain, user, password, clientChallenge));
    
                byte[] clientChallenge2 = new byte[8];
                RANDOM.nextBytes(clientChallenge2);
                setNTResponse(getNTLMv2Response(type2, responseKeyNT, clientChallenge2));
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 22.9K bytes
    - Viewed (0)
  8. src/index/suffixarray/sais.go

    //			<scan +freq> (15)
    //		<scan -sa, random text, random bucket> (16)
    //	induceL_I_B
    //		bucketMin_I_B
    //			freq_I_B
    //				<scan +text, often optimized away> (17)
    //			<scan +freq> (18)
    //		<scan +sa, random text, random bucket> (19)
    //	induceS_I_B
    //		bucketMax_I_B
    //			freq_I_B
    //				<scan +text, often optimized away> (20)
    //			<scan +freq> (21)
    //		<scan -sa, random text, random bucket> (22)
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  9. pkg/wasm/imagefetcher_test.go

    		ref := fmt.Sprintf("%s/test/valid/oci_artifact", u.Host)
    
    		// Create the image with custom media types.
    		wasmLayer, err := random.Layer(1000, "application/vnd.module.wasm.content.layer.v1+wasm")
    		if err != nil {
    			t.Fatal(err)
    		}
    		configLayer, err := random.Layer(1000, "application/vnd.module.wasm.config.v1+json")
    		if err != nil {
    			t.Fatal(err)
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Feb 05 04:15:17 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  10. src/crypto/tls/handshake_client_tls13.go

    		acceptConfirmation := hs.suite.expandLabel(
    			hs.suite.extract(hs.echContext.innerHello.random, nil),
    			"ech accept confirmation",
    			confTranscript.Sum(nil),
    			8,
    		)
    		if subtle.ConstantTimeCompare(acceptConfirmation, hs.serverHello.random[len(hs.serverHello.random)-8:]) == 1 {
    			hs.hello = hs.echContext.innerHello
    			c.serverName = c.config.ServerName
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 27.9K bytes
    - Viewed (0)
Back to top