Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for 1_8000 (0.15 sec)

  1. pilot/pkg/networking/core/gateway_test.go

    												Number: 80,
    											},
    										},
    									},
    								},
    							},
    						},
    					},
    				},
    			},
    			[]string{"10.0.0.1_8000", "10.0.0.2_8000", "10.0.0.3_8000"},
    		},
    		{
    			"gateway with HTTPS/GRPC servers with bind",
    			&pilot_model.Proxy{},
    			[]config.Config{
    				{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	S_IFBLK  = 0x6000
    	S_IFREG  = 0x8000
    	S_IFLNK  = 0xa000
    	S_IFSOCK = 0xc000
    	S_ISUID  = 0x800
    	S_ISGID  = 0x400
    	S_ISVTX  = 0x200
    	S_IRUSR  = 0x100
    	S_IWRITE = 0x80
    	S_IWUSR  = 0x80
    	S_IXUSR  = 0x40
    )
    
    const (
    	FILE_TYPE_CHAR    = 0x0002
    	FILE_TYPE_DISK    = 0x0001
    	FILE_TYPE_PIPE    = 0x0003
    	FILE_TYPE_REMOTE  = 0x8000
    	FILE_TYPE_UNKNOWN = 0x0000
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  3. istioctl/pkg/authz/testdata/configdump.yaml

         }
        },
        {
         "name": "0.0.0.0_8000",
         "active_state": {
          "version_info": "2023-06-20T09:07:41Z/3",
          "listener": {
           "@type": "type.googleapis.com/envoy.config.listener.v3.Listener",
           "name": "0.0.0.0_8000",
           "address": {
            "socket_address": {
             "address": "0.0.0.0",
             "port_value": 8000
            }
           },
           "filter_chains": [
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 21 14:20:23 UTC 2023
    - 206.7K bytes
    - Viewed (1)
  4. src/hash/crc32/crc32_table_ppc64le.s

    DATA ·IEEEConst+1432(SB)/8,$0x00000001c4d8348c
    
    	/* x^169024 mod p(x), x^168960 mod p(x) */
    DATA ·IEEEConst+1440(SB)/8,$0x000000007af40044
    DATA ·IEEEConst+1448(SB)/8,$0x0000000057a40336
    
    	/* x^168000 mod p(x), x^167936 mod p(x) */
    DATA ·IEEEConst+1456(SB)/8,$0x0000000016178744
    DATA ·IEEEConst+1464(SB)/8,$0x0000000085544940
    
    	/* x^166976 mod p(x), x^166912 mod p(x) */
    DATA ·IEEEConst+1472(SB)/8,$0x000000014c177458
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 19 20:44:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  5. pkg/kubelet/eviction/helpers_test.go

    		low:    newPodInodeStats(low, resource.MustParse("50000"), resource.MustParse("100000"), resource.MustParse("50000")),     // 200000
    		medium: newPodInodeStats(medium, resource.MustParse("100000"), resource.MustParse("150000"), resource.MustParse("50000")), // 300000
    		high:   newPodInodeStats(high, resource.MustParse("200000"), resource.MustParse("150000"), resource.MustParse("50000")),   // 400000
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
  6. cmd/bucket-replication.go

    		lrgworkers:      make([]chan ReplicationWorkerOperation, 0, LargeWorkerCount),
    		mrfReplicaCh:    make(chan ReplicationWorkerOperation, 100000),
    		mrfWorkerKillCh: make(chan struct{}, failedWorkers),
    		resyncer:        newresyncer(),
    		mrfSaveCh:       make(chan MRFReplicateEntry, 100000),
    		mrfStopCh:       make(chan struct{}, 1),
    		ctx:             ctx,
    		objLayer:        o,
    		priority:        priority,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/data.go

    		// GOT section is present, compute it as suggested by the ELFv2 ABI. Otherwise,
    		// choose a similar offset from the start of the data segment.
    		tocAddr := int64(Segdata.Vaddr) + 0x8000
    		if gotAddr := ldr.SymValue(ctxt.GOT); gotAddr != 0 {
    			tocAddr = gotAddr + 0x8000
    		}
    		for i := range ctxt.DotTOC {
    			if i >= sym.SymVerABICount && i < sym.SymVerStatic { // these versions are not used currently
    				continue
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
  8. src/net/http/serve_test.go

    	}
    }
    
    func TestMaxBytesHandler(t *testing.T) {
    	// Not parallel: modifies the global rstAvoidanceDelay.
    	defer afterTest(t)
    
    	for _, maxSize := range []int64{100, 1_000, 1_000_000} {
    		for _, requestSize := range []int64{100, 1_000, 1_000_000} {
    			t.Run(fmt.Sprintf("max size %d request size %d", maxSize, requestSize),
    				func(t *testing.T) {
    					run(t, func(t *testing.T, mode testMode) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/ppc64/asm9.go

    	switch a {
    	case AADD:
    		return OPVCC(14, 0, 0, 0)
    	case AADDC:
    		return OPVCC(12, 0, 0, 0)
    	case AADDCCC:
    		return OPVCC(13, 0, 0, 0)
    	case AADDIS:
    		return OPVCC(15, 0, 0, 0) /* ADDIS */
    
    	case AANDCC:
    		return OPVCC(28, 0, 0, 0)
    	case AANDISCC:
    		return OPVCC(29, 0, 0, 0) /* ANDIS. */
    
    	case ABR:
    		return OPVCC(18, 0, 0, 0)
    	case ABL:
    		return OPVCC(18, 0, 0, 0) | 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  10. cmd/admin-handlers.go

    	// expected in case of read timeout
    	w.Header().Set("Connection", "close")
    
    	setEventStreamHeaders(w)
    
    	logCh := make(chan log.Info, 1000)
    	peers, _ := newPeerRestClients(globalEndpoints)
    	encodedCh := make(chan []byte, 1000+len(peers)*1000)
    	err = globalConsoleSys.Subscribe(logCh, ctx.Done(), node, limitLines, logKind, nil)
    	if err != nil {
    		writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
Back to top