Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 87 for Se (0.07 sec)

  1. 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)
  2. pilot/pkg/networking/core/cluster_tls_test.go

    				},
    				err: nil,
    			},
    		},
    		{
    			name: "tls mode SIMPLE, with SANs specified in service entries",
    			opts: &buildClusterOpts{
    				mutable:         newTestCluster(),
    				serviceAccounts: []string{"se-san.com"},
    				serviceRegistry: provider.External,
    			},
    			tls: &networking.ClientTLSSettings{
    				Mode:           networking.ClientTLSSettings_SIMPLE,
    				CaCertificates: rootCert,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 03:53:05 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  3. 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)
  4. tests/integration/pilot/common/routing.go

    		skip: skip{
    			skip:   true,
    			reason: "not currently working, as SE doesn't have a VIP",
    		},
    		globalConfig: true,
    		config: fmt.Sprintf(`apiVersion: v1
    kind: Service
    metadata:
      name: b-ext-se
    spec:
      type: ExternalName
      externalName: %s`,
    			t.Apps.External.All.Config().HostHeader()),
    		children: calls("b-ext-se"),
    	})
    
    	gatewayListenPort := 80
    	gatewayListenPortName := "http"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  5. tests/integration/ambient/baseline_test.go

        - destination:
            host: "{{.Destination}}"
    `).ApplyOrFail(t)
    
    			cfg := config.YAML(`
    {{ $to := .To }}
    apiVersion: networking.istio.io/v1beta1
    kind: ServiceEntry
    metadata:
      name: test-se
    spec:
      hosts:
      - serviceentry.istio.io # not used
      addresses:
      - 111.111.222.222
      ports:
      - number: 80
        name: http
        protocol: HTTP
      resolution: {{.Resolution}}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  6. 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)
  7. cmd/admin-handlers.go

    			partialWrite(healthInfo)
    
    			peerSysErrs := globalNotificationSys.GetSysErrors(healthCtx)
    			for _, se := range peerSysErrs {
    				anonymizeAddr(&se)
    				healthInfo.Sys.SysErrs = append(healthInfo.Sys.SysErrs, se)
    			}
    			partialWrite(healthInfo)
    		}
    	}
    
    	getAndWriteSysConfig := func() {
    		if query.Get(string(madmin.HealthDataTypeSysConfig)) == "true" {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K 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. pilot/pkg/networking/core/sidecar_simulation_test.go

      namespace: istio-system
    spec:
      mtls:
        mode: %s
    `, m)
    }
    
    func TestInbound(t *testing.T) {
    	svc := `
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: se
    spec:
      hosts:
      - foo.bar
      endpoints:
      - address: 1.1.1.1
      location: MESH_INTERNAL
      resolution: STATIC
      ports:
      - name: tcp
        number: 70
        protocol: TCP
      - name: http
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  10. 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)
Back to top