Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 90 for san1 (0.04 sec)

  1. src/encoding/gob/encoder_test.go

    	}
    }
    
    // Issue 24075
    func TestMarshalFloatMap(t *testing.T) {
    	nan1 := math.NaN()
    	nan2 := math.Float64frombits(math.Float64bits(nan1) ^ 1) // A different NaN in the same class.
    
    	in := map[float64]string{
    		nan1: "a",
    		nan1: "b",
    		nan2: "c",
    	}
    
    	var b bytes.Buffer
    	enc := NewEncoder(&b)
    	if err := enc.Encode(in); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  2. src/go/build/deps_test.go

    	CRYPTO, FMT, math/big
    	< crypto/internal/boring/bbig
    	< crypto/rand
    	< crypto/internal/mlkem768
    	< crypto/ed25519
    	< encoding/asn1
    	< golang.org/x/crypto/cryptobyte/asn1
    	< golang.org/x/crypto/cryptobyte
    	< crypto/internal/bigmod
    	< crypto/dsa, crypto/elliptic, crypto/rsa
    	< crypto/ecdsa
    	< CRYPTO-MATH;
    
    	CGO, net !< CRYPTO-MATH;
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 16:41:13 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  3. src/main/java/jcifs/pac/kerberos/KerberosEncData.java

    import javax.crypto.SecretKey;
    import javax.crypto.spec.IvParameterSpec;
    import javax.crypto.spec.SecretKeySpec;
    import javax.security.auth.kerberos.KerberosKey;
    
    import org.bouncycastle.asn1.*;
    
    import jcifs.pac.ASN1Util;
    import jcifs.pac.PACDecodingException;
    import jcifs.util.Encdec;
    
    
    @SuppressWarnings ( "javadoc" )
    public class KerberosEncData {
    
        private String userRealm;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Oct 02 12:02:06 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  4. api/go1.10.txt

    pkg debug/macho, type RpathCmd struct, Len uint32
    pkg debug/macho, type RpathCmd struct, Path uint32
    pkg debug/macho, type Section struct, Relocs []Reloc
    pkg encoding/asn1, const TagNumericString = 18
    pkg encoding/asn1, const TagNumericString ideal-int
    pkg encoding/asn1, func MarshalWithParams(interface{}, string) ([]uint8, error)
    pkg encoding/csv, type ParseError struct, StartLine int
    pkg encoding/hex, func NewDecoder(io.Reader) io.Reader
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 06 05:00:01 UTC 2018
    - 30.1K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/util/pkiutil/pki_helpers_test.go

    				}
    
    				if !found {
    					t.Errorf("altNames does not contain IPAddress %s", IPAddress)
    				}
    			}
    		})
    	}
    }
    
    func TestAppendSANsToAltNames(t *testing.T) {
    	var tests = []struct {
    		sans     []string
    		expected int
    	}{
    		{[]string{}, 0},
    		{[]string{"abc"}, 1},
    		{[]string{"*.abc"}, 1},
    		{[]string{"**.abc"}, 0},
    		{[]string{"a.*.bc"}, 0},
    		{[]string{"a.*.bc", "abc.def"}, 1},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 31 21:49:21 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  6. src/runtime/malloc_test.go

    	"testing"
    	"time"
    	"unsafe"
    )
    
    var testMemStatsCount int
    
    func TestMemStats(t *testing.T) {
    	testMemStatsCount++
    
    	// Make sure there's at least one forced GC.
    	GC()
    
    	// Test that MemStats has sane values.
    	st := new(MemStats)
    	ReadMemStats(st)
    
    	nz := func(x any) error {
    		if x != reflect.Zero(reflect.TypeOf(x)).Interface() {
    			return nil
    		}
    		return fmt.Errorf("zero value")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:29 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  7. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/DerReader.kt

     * [Lets Encrypt's ASN.1 and DER][asn1_and_der] guide.
     *
     * [x690]: https://www.itu.int/rec/T-REC-X.690
     * [asn1_and_der]: https://letsencrypt.org/docs/a-warm-welcome-to-asn1-and-der/
     */
    internal class DerReader(source: Source) {
      private val countingSource: CountingSource = CountingSource(source)
      private val source: BufferedSource = countingSource.buffer()
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/controller/network_test.go

    			return nil
    		}, retry.Timeout(time.Second*5))
    	}
    
    	pc := clienttest.NewWriter[*corev1.Pod](t, s.client)
    	sc := clienttest.NewWriter[*corev1.Service](t, s.client)
    	pod1 := generatePod("127.0.0.1", "pod1", testNS, "sa1", "node1", map[string]string{"app": "a"}, nil)
    	pc.CreateOrUpdateStatus(pod1)
    	fx.WaitOrFail(t, "xds")
    
    	pod2 := generatePod("127.0.0.2", "pod2", testNS, "sa2", "node1", map[string]string{"app": "a"}, nil)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  9. src/crypto/tls/tls.go

    			break
    		}
    		skippedBlockTypes = append(skippedBlockTypes, keyDERBlock.Type)
    	}
    
    	// We don't need to parse the public key for TLS, but we so do anyway
    	// to check that it looks sane and matches the private key.
    	x509Cert, err := x509.ParseCertificate(cert.Certificate[0])
    	if err != nil {
    		return fail(err)
    	}
    
    	if x509keypairleaf.Value() != "0" {
    		cert.Leaf = x509Cert
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  10. src/cmd/trace/tasks.go

    	"asMillisecond": asMillisecond,
    	"trimSpace":     strings.TrimSpace,
    }).Parse(`
    <!DOCTYPE html>
    <title>Tasks: {{.Name}}</title>
    <style>` + traceviewer.CommonStyle + `
    body {
      font-family: sans-serif;
    }
    table#req-status td.family {
      padding-right: 2em;
    }
    table#req-status td.active {
      padding-right: 1em;
    }
    table#req-status td.empty {
      color: #aaa;
    }
    table#reqs {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.8K bytes
    - Viewed (0)
Back to top