Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 43 for Se (0.02 sec)

  1. tests/integration/security/sds_ingress/util/test_certs.go

    MTIyMDEyMzRaFw0zMDA4MTAyMDEyMzRaMFQxCzAJBgNVBAYTAlVTMQ8wDQYDVQQI
    DAZEZW5pYWwxDjAMBgNVBAcMBUV0aGVyMQwwCgYDVQQKDANEaXMxFjAUBgNVBAMM
    DSouZXhhbXBsZS5jb20wggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDC
    se+/CHI6gNhoj2pW/iawYaZT+FavNBwKq9y8+jQKp8ZSQvF0+44KWWTu258I/xxK
    agJpXITOieCuLOHxsw2iMCgHz8US3cuAm3trvVG5se4ksEzBKXEqUtr4x7j25zUr
    6r3JNQ1S51zIthc85ZchZFkS82T7uEgpYF5mDEbP7jlfZ/KVL/oquH1IJOjCufIU
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 05 22:01:21 UTC 2023
    - 25.9K bytes
    - Viewed (0)
  2. pilot/pkg/xds/xds_test.go

    			Equals(true, "{.useOriginalDst}").
    			CheckOrFail(t)
    	})
    
    	t.Run("mongo", func(t *testing.T) {
    		s := xds.NewFakeDiscoveryServer(t, xds.FakeOptions{
    			ConfigString: mustReadFile(t, "tests/testdata/config/se-example.yaml"),
    		})
    		proxy := s.SetupProxy(&model.Proxy{
    			IPAddresses: []string{"10.2.0.1"},
    			ID:          "app3.testns",
    		})
    		structpath.ForProto(xdstest.ToDiscoveryResponse(s.Listeners(proxy))).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  3. src/cmd/doc/pkg.go

    			// Or a type embedded in a constraint.
    			// Nothing else is allowed.
    			ty := field.Type
    			if se, ok := field.Type.(*ast.StarExpr); !isInterface && ok {
    				// The form *ident or *pkg.ident is only valid on
    				// embedded types in structs.
    				ty = se.X
    			}
    			constraint := false
    			switch ident := ty.(type) {
    			case *ast.Ident:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 08 20:15:52 UTC 2024
    - 32K bytes
    - Viewed (0)
  4. tests/integration/telemetry/api/stats_test.go

    			t.ConfigIstio().File(apps.Namespace.Name(), filepath.Join(base, "istio-mtls-gateway.yaml")).ApplyOrFail(t)
    			t.ConfigIstio().File(apps.Namespace.Name(), filepath.Join(base, "istio-mtls-vs.yaml")).ApplyOrFail(t)
    
    			// The main SE is available only to app namespace, make one the egress can access.
    			t.ConfigIstio().Eval(ist.Settings().SystemNamespace, map[string]any{
    				"Namespace": apps.External.Namespace.Name(),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  5. src/net/http/cookiejar/jar.go

    	}
    	if o != nil {
    		jar.psList = o.PublicSuffixList
    	}
    	return jar, nil
    }
    
    // entry is the internal representation of a cookie.
    //
    // This struct type is not used outside of this package per se, but the exported
    // fields are those of RFC 6265.
    type entry struct {
    	Name       string
    	Value      string
    	Quoted     bool
    	Domain     string
    	Path       string
    	SameSite   string
    	Secure     bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15K bytes
    - Viewed (0)
  6. pilot/pkg/xds/eds_test.go

    	s := xdsfake.NewFakeDiscoveryServer(t, xdsfake.FakeOptions{
    		ConfigString: mustReadFile(t, "tests/testdata/config/destination-rule-all.yaml") +
    			mustReadFile(t, "tests/testdata/config/static-weighted-se.yaml"),
    	})
    	ads := s.Connect(nil, nil, watchAll)
    	t.Run("Full Push", func(t *testing.T) {
    		s.Discovery.Push(&model.PushRequest{Full: true})
    		if _, err := ads.Wait(time.Second*5, watchAll...); err != nil {
    			t.Fatal(err)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 20:58:47 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  7. src/image/jpeg/scan.go

    		return FormatError("total sampling factors too large")
    	}
    
    	// zigStart and zigEnd are the spectral selection bounds.
    	// ah and al are the successive approximation high and low values.
    	// The spec calls these values Ss, Se, Ah and Al.
    	//
    	// For progressive JPEGs, these are the two more-or-less independent
    	// aspects of progression. Spectral selection progression is when not
    	// all of a block's 64 DCT coefficients are transmitted in one pass.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 00:46:29 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  8. pilot/pkg/xds/mesh_network_test.go

    					}
    					configObjects := `
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: subset-se
      namespace: test
    spec:
      host: "*"
      subsets:
      - name: v1
        labels:
          version: v1
      - name: v2
        labels:
          version: v2
      - name: v3
        labels:
          version: v3
    `
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  9. src/crypto/ecdsa/ecdsa.go

    	// under standard cryptographic assumptions (see [Larsson] for examples).
    	//
    	// [Coron]: https://cs.nyu.edu/~dodis/ps/merkle.pdf
    	// [Larsson]: https://web.archive.org/web/20040719170906/https://www.nada.kth.se/kurser/kth/2D1441/semteo03/lecturenotes/assump.pdf
    
    	// Get 256 bits of entropy from rand.
    	entropy := make([]byte, 32)
    	if _, err := io.ReadFull(rand, entropy); err != nil {
    		return nil, err
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  10. src/image/jpeg/reader.go

    	sosMarker  = 0xda // Start Of Scan.
    	dqtMarker  = 0xdb // Define Quantization Table.
    	driMarker  = 0xdd // Define Restart Interval.
    	comMarker  = 0xfe // COMment.
    	// "APPlication specific" markers aren't part of the JPEG spec per se,
    	// but in practice, their use is described at
    	// https://www.sno.phy.queensu.ca/~phil/exiftool/TagNames/JPEG.html
    	app0Marker  = 0xe0
    	app14Marker = 0xee
    	app15Marker = 0xef
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 22.5K bytes
    - Viewed (0)
Back to top