Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for tenc (0.15 sec)

  1. cmd/admin-handlers.go

    	results, err := globalSiteReplicationSys.Netperf(ctx, duration)
    	if err != nil {
    		writeErrorResponseJSON(ctx, w, errorCodes.ToAPIErr(toAPIErrorCode(ctx, err)), r.URL)
    		return
    	}
    	enc := json.NewEncoder(w)
    	if err := enc.Encode(results); err != nil {
    		return
    	}
    }
    
    // ClientDevNullExtraTime - return extratime for last devnull
    // [POST] /minio/admin/v3/speedtest/client/devnull/extratime
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  2. cmd/object-handlers_test.go

    		{"enc-nothing", []int64{0}, mapCopy(metaWithSSEC)},
    		{"enc-small-0", []int64{11}, mapCopy(metaWithSSEC)},
    		{"enc-small-1", []int64{509}, mapCopy(metaWithSSEC)},
    		{"enc-small-2", []int64{5 * oneMiB}, mapCopy(metaWithSSEC)},
    		// cases 12-15: multipart part objects with encryption
    		{"enc-mp-0", []int64{5 * oneMiB, 1}, mapCopy(metaWithSSEC)},
    		{"enc-mp-1", []int64{5*oneMiB + 1, 1}, mapCopy(metaWithSSEC)},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  3. cmd/metrics-v2.go

    		w.Header().Set("Content-Type", string(contentType))
    
    		enc := expfmt.NewEncoder(w, contentType)
    		for _, mf := range mfs {
    			if err := enc.Encode(mf); err != nil {
    				// client may disconnect for any reasons
    				// we do not have to log this.
    				return
    			}
    		}
    		if closer, ok := enc.(expfmt.Closer); ok {
    			closer.Close()
    		}
    	})
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/arm64/asm7.go

    // pre/post-indexed store.
    // and the 12-bit and 9-bit are distinguished in olsr12u and oslr9s.
    func (c *ctxt7) opstr(p *obj.Prog, a obj.As) uint32 {
    	enc := c.opldr(p, a)
    	switch p.As {
    	case AFMOVQ:
    		enc = enc &^ (1 << 22)
    	default:
    		enc = LD2STR(enc)
    	}
    	return enc
    }
    
    // load(immediate)
    // scaled 12-bit unsigned immediate offset.
    // unscaled 9-bit signed immediate offset.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  5. cmd/bucket-replication.go

    	if oi1.ContentType != oi2.ContentType {
    		return replicateMetadata
    	}
    
    	if oi1.ContentEncoding != "" {
    		enc, ok := oi2.Metadata[xhttp.ContentEncoding]
    		if !ok {
    			enc, ok = oi2.Metadata[strings.ToLower(xhttp.ContentEncoding)]
    			if !ok {
    				return replicateMetadata
    			}
    		}
    		if strings.Join(enc, ",") != oi1.ContentEncoding {
    			return replicateMetadata
    		}
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  6. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"telephone":                            "\u260e\ufe0f",
    	"telephone_receiver":                   "\U0001f4de",
    	"telescope":                            "\U0001f52d",
    	"tennis":                               "\U0001f3be",
    	"tent":                                 "\u26fa",
    	"test_tube":                            "\U0001f9ea",
    	"thailand":                             "\U0001f1f9\U0001f1ed",
    	"thermometer":                          "\U0001f321\ufe0f",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  7. src/crypto/sha512/sha512_test.go

    	},
    	{
    		"6c7bd0f3a6544ea698006c2ea583a85f80ea2913590a186db8bb2f1b",
    		"I wouldn't marry him with a ten foot pole.",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 03 21:17:08 UTC 2023
    - 105.6K bytes
    - Viewed (0)
  8. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    rio.br
    riobranco.br
    riopreto.br
    salvador.br
    sampa.br
    santamaria.br
    santoandre.br
    saobernardo.br
    saogonca.br
    seg.br
    sjc.br
    slg.br
    slz.br
    sorocaba.br
    srv.br
    taxi.br
    tc.br
    tec.br
    teo.br
    the.br
    tmp.br
    trd.br
    tur.br
    tv.br
    udi.br
    vet.br
    vix.br
    vlog.br
    wiki.br
    zlg.br
    
    // bs : http://www.nic.bs/rules.html
    bs
    com.bs
    net.bs
    org.bs
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/cache/LocalCache.java

         * traverse. When nodes would otherwise be changed, new nodes are created to replace them. This
         * works well for hash tables since the bin lists tend to be short. (The average length is less
         * than two.)
         *
         * Read operations can thus proceed without locking, but rely on selected uses of volatiles to
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  10. guava/src/com/google/common/cache/LocalCache.java

         * traverse. When nodes would otherwise be changed, new nodes are created to replace them. This
         * works well for hash tables since the bin lists tend to be short. (The average length is less
         * than two.)
         *
         * Read operations can thus proceed without locking, but rely on selected uses of volatiles to
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
Back to top