Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 613 for rend (0.06 sec)

  1. pkg/api/testing/unstructured_test.go

    	internalObj, err := legacyscheme.Scheme.New(internalVersion.WithKind(kind))
    	if err != nil {
    		t.Fatalf("Couldn't create internal object %v: %v", kind, err)
    	}
    	seed := rand.Int63()
    	fuzzer.FuzzerFor(FuzzerFuncs, rand.NewSource(seed), legacyscheme.Codecs).
    		// We are explicitly overwriting custom fuzzing functions, to ensure
    		// that InitContainers and their statuses are not generated. This is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/platform/internal/ReadelfBinaryInfoTest.groovy

    import org.gradle.nativeplatform.fixtures.binaryinfo.ReadelfBinaryInfo
    
    import spock.lang.Specification
    import spock.lang.Unroll
    
    class ReadelfBinaryInfoTest extends Specification {
        def "read list of files from readelf"() {
            when:
            def input = """
    Symbol table '.symtab' contains 53 entries:
       Num:    Value          Size Type    Bind   Vis      Ndx Name
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 23:09:11 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  3. src/crypto/tls/handshake_client.go

    			continue
    		}
    		hello.cipherSuites = append(hello.cipherSuites, suiteId)
    	}
    
    	_, err := io.ReadFull(config.rand(), hello.random)
    	if err != nil {
    		return nil, nil, nil, errors.New("tls: short read from Rand: " + err.Error())
    	}
    
    	// A random session ID is used to detect when the server accepted a ticket
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  4. src/crypto/x509/name_constraints_test.go

    	},
    }
    
    func makeConstraintsCACert(constraints constraintsSpec, name string, key *ecdsa.PrivateKey, parent *Certificate, parentKey *ecdsa.PrivateKey) (*Certificate, error) {
    	var serialBytes [16]byte
    	rand.Read(serialBytes[:])
    
    	template := &Certificate{
    		SerialNumber: new(big.Int).SetBytes(serialBytes[:]),
    		Subject: pkix.Name{
    			CommonName: name,
    		},
    		NotBefore:             time.Unix(1000, 0),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 22:40:21 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  5. cmd/object-api-utils.go

    	if oi.Size == 0 || len(oi.Parts) == 0 {
    		return nil
    	}
    
    	var start int64
    	end := int64(-1)
    	for i := 0; i < len(oi.Parts) && i < partNumber; i++ {
    		start = end + 1
    		end = start + oi.Parts[i].ActualSize - 1
    	}
    
    	return &HTTPRangeSpec{Start: start, End: end}
    }
    
    // Returns the compressed offset which should be skipped.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  6. src/hash/crc32/crc32_test.go

    		500, 501, 502, 503, 504, 505, 512, 513, 1000, 1024, 2000,
    		4030, 4031, 4032, 4033, 4036, 4040, 4048, 4096, 5000, 10000}
    	for _, length := range lengths {
    		p := make([]byte, length)
    		_, _ = rand.Read(p)
    		crcInit := uint32(rand.Int63())
    		crc1 := crcFunc1(crcInit, p)
    		crc2 := crcFunc2(crcInit, p)
    		if crc1 != crc2 {
    			t.Errorf("mismatch: 0x%x vs 0x%x (buffer length %d)", crc1, crc2, length)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  7. cmd/batch-rotate.go

    	}
    
    	globalBatchJobsMetrics.save(job.ID, ri)
    	lastObject := ri.Object
    
    	delay := job.KeyRotate.Flags.Retry.Delay
    	if delay == 0 {
    		delay = batchKeyRotateJobDefaultRetryDelay
    	}
    
    	rnd := rand.New(rand.NewSource(time.Now().UnixNano()))
    
    	selectObj := func(info FileInfo) (ok bool) {
    		if r.Flags.Filter.OlderThan > 0 && time.Since(info.ModTime) < r.Flags.Filter.OlderThan {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  8. src/net/http/response_test.go

    		buf.WriteString("\r\n")
    
    		chunk := bytes.Repeat([]byte{'x'}, 1000)
    		for i := 0; i < 1000; i++ {
    			if test.compressed {
    				// Otherwise this compresses too well.
    				_, err := io.ReadFull(rand.Reader, chunk)
    				checkErr(err, "rand.Reader ReadFull")
    			}
    			wr.Write(chunk)
    		}
    		if test.compressed {
    			err := wr.(*gzip.Writer).Close()
    			checkErr(err, "compressor close")
    		}
    		if test.chunked {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 19:01:29 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  9. src/debug/pe/file.go

    			!read(&oh32.MajorOperatingSystemVersion) ||
    			!read(&oh32.MinorOperatingSystemVersion) ||
    			!read(&oh32.MajorImageVersion) ||
    			!read(&oh32.MinorImageVersion) ||
    			!read(&oh32.MajorSubsystemVersion) ||
    			!read(&oh32.MinorSubsystemVersion) ||
    			!read(&oh32.Win32VersionValue) ||
    			!read(&oh32.SizeOfImage) ||
    			!read(&oh32.SizeOfHeaders) ||
    			!read(&oh32.CheckSum) ||
    			!read(&oh32.Subsystem) ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  10. cmd/bucket-metadata.go

    	if err != nil {
    		return
    	}
    
    	outbuf := bytes.NewBuffer(nil)
    	objectKey := crypto.GenerateKey(key.Plaintext, rand.Reader)
    	sealedKey := objectKey.Seal(key.Plaintext, crypto.GenerateIV(rand.Reader), crypto.S3.String(), bucket, "")
    	crypto.S3.CreateMetadata(metadata, key.KeyID, key.Ciphertext, sealedKey)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 16.7K bytes
    - Viewed (0)
Back to top