Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 88 for mybytes (0.29 sec)

  1. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/TransformReplacer.java

         * If some versioned directories of the JAR haven't been processed, then these directories must contain presiding (overriding) resource with the same name but with
         * {@code NOT_TRANSFORMED.asBytes()} as body.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  2. pkg/test/csrctrl/signer/ca_provider.go

    	keyPEM, kerr := p.currentKeyContent()
    	if kerr != nil {
    		return nil, kerr
    	}
    	currCA := p.caValue.Load().(*authority.CertificateAuthority)
    	if bytes.Equal(currCA.RawCert, certPEM) && bytes.Equal(currCA.RawKey, keyPEM) {
    		return currCA, nil
    	}
    
    	// the bytes weren't equal, so we have to set and then load
    	if err := p.setCA(); err != nil {
    		return currCA, err
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 27 08:14:39 UTC 2021
    - 4.4K bytes
    - Viewed (0)
  3. pkg/volume/util/fsquota/quota_linux.go

    		}
    		// When enforcing quotas are enabled, we'll condition this
    		// on their being disabled also.
    		fsbytes := ibytes
    		if fsbytes > 0 {
    			fsbytes = -1
    		}
    		if err = setQuotaOnDir(path, id, fsbytes); err == nil {
    			quotaPodMap[id] = internalPodUid
    			quotaSizeMap[id] = ibytes
    			podQuotaMap[internalPodUid] = id
    			dirQuotaMap[path] = id
    			dirPodMap[path] = internalPodUid
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 07 08:07:51 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  4. src/crypto/sha1/sha1block_arm64.s

    	HASHUPDATEPARITY
    
    	VADD	V18.S4, V6.S4, V16.S4
    	HASHUPDATEPARITY
    
    	VADD	V18.S4, V7.S4, V16.S4
    	HASHUPDATEPARITY
    
    	SUB	$64, R3, R3                                  // message length - 64bytes, then compare with 64bytes
    	VADD	V2.S4, V0.S4, V0.S4
    	VADD	V1.S4, V20.S4, V20.S4
    	CBNZ	R3, blockloop
    
    sha1ret:
    
    	VST1.P	[V0.S4], 16(R0)                               // store hash value H(dcba)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/ClasspathElementTransformForAgent.java

                if (hasUnsupportedVersionInJar()) {
                    // Every Java version starting from lowestUnsupportedVersion should see this jar as unsupported.
                    builder.put(JarUtil.toVersionedPath(lowestUnsupportedVersionInJar, MarkerResource.RESOURCE_NAME), MarkerResource.NOT_TRANSFORMED.asBytes());
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:14:01 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  6. src/crypto/des/block.go

    		out[i] = left | right
    		last = out[i]
    	}
    	return
    }
    
    // creates 16 56-bit subkeys from the original key.
    func (c *desCipher) generateSubkeys(keyBytes []byte) {
    	feistelBoxOnce.Do(initFeistelBox)
    
    	// apply PC1 permutation to key
    	key := byteorder.BeUint64(keyBytes)
    	permutedKey := permuteBlock(key, permutedChoice1[:])
    
    	// rotate halves of permuted key according to the rotation schedule
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  7. src/crypto/tls/key_schedule_test.go

    			c := cipherSuitesTLS13[0]
    			if got := c.extract(tt.args.newSecret, tt.args.currentSecret); !bytes.Equal(got, tt.want) {
    				t.Errorf("cipherSuiteTLS13.extract() = % x, want % x", got, tt.want)
    			}
    		})
    	}
    }
    
    func TestKyberDecapsulate(t *testing.T) {
    	// From https://pq-crystals.org/kyber/data/kyber-submission-nist-round3.zip
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 14:56:25 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/util/DES.java

        };
    
    
     /// Squash bytes down to ints.
        public static void squashBytesToInts( byte[] inBytes, int inOff, int[] outInts,
                                               int outOff, int intLen ) {
    
            for ( int i = 0; i < intLen; ++i )
                outInts[outOff + i] =
                    ( ( inBytes[inOff + i * 4    ] & 0xff ) << 24 ) |
                    ( ( inBytes[inOff + i * 4 + 1] & 0xff ) << 16 ) |
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 21.4K bytes
    - Viewed (0)
  9. releasenotes/notes/istiod-config-size-bytes.yaml

    Brian Avery <******@****.***> 1620951743 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 14 00:22:23 UTC 2021
    - 208 bytes
    - Viewed (0)
  10. src/internal/fuzz/mutator.go

    // mutate performs several mutations on the provided values.
    func (m *mutator) mutate(vals []any, maxBytes int) {
    	// TODO(katiehockman): pull some of these functions into helper methods and
    	// test that each case is working as expected.
    	// TODO(katiehockman): perform more types of mutations for []byte.
    
    	// maxPerVal will represent the maximum number of bytes that each value be
    	// allowed after mutating, giving an equal amount of capacity to each line.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 20:01:34 UTC 2023
    - 6.6K bytes
    - Viewed (0)
Back to top