Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 55 for ct (0.03 sec)

  1. src/image/gif/writer.go

    	} else {
    		ct, err := encodeColorTable(e.localColorTable[:], pm.Palette, paddedSize)
    		if err != nil {
    			if e.err == nil {
    				e.err = err
    			}
    			return
    		}
    		// This frame's palette is not the very same slice as the global
    		// palette, but it might be a copy, possibly with one value turned into
    		// transparency by DecodeAll.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:38:09 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  2. src/runtime/type.go

    		at := (*arraytype)(unsafe.Pointer(t))
    		av := (*arraytype)(unsafe.Pointer(v))
    		return typesEqual(at.Elem, av.Elem, seen) && at.Len == av.Len
    	case abi.Chan:
    		ct := (*chantype)(unsafe.Pointer(t))
    		cv := (*chantype)(unsafe.Pointer(v))
    		return ct.Dir == cv.Dir && typesEqual(ct.Elem, cv.Elem, seen)
    	case abi.Func:
    		ft := (*functype)(unsafe.Pointer(t))
    		fv := (*functype)(unsafe.Pointer(v))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  3. pkg/proxy/nftables/proxier.go

    	{nodePortEndpointsCheckChain, filterInputChain, "ct state new"},
    	{serviceEndpointsCheckChain, filterInputChain, "ct state new"},
    	{serviceEndpointsCheckChain, filterForwardChain, "ct state new"},
    	{serviceEndpointsCheckChain, filterOutputChain, "ct state new"},
    
    	{firewallCheckChain, filterPreroutingChain, "ct state new"},
    	{firewallCheckChain, filterOutputChain, "ct state new"},
    
    	{servicesChain, natOutputChain, ""},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  4. src/crypto/internal/hpke/hpke_test.go

    					}
    					if !bytes.Equal(computedNonce, expectedNonce) {
    						t.Errorf("unexpected nonce: got %x, want %x", computedNonce, expectedNonce)
    					}
    
    					expectedCiphertext := mustDecodeHex(t, enc["ct"])
    					ciphertext, err := context.Seal(mustDecodeHex(t, enc["aad"]), mustDecodeHex(t, enc["pt"]))
    					if err != nil {
    						t.Fatal(err)
    					}
    					if !bytes.Equal(ciphertext, expectedCiphertext) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:33 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/binutils/binutils.go

    	// paths collect paths per tool; Key "" contains the default.
    	paths := make(map[string][]string)
    	for _, t := range strings.Split(config, ",") {
    		name, path := "", t
    		if ct := strings.SplitN(t, ":", 2); len(ct) == 2 {
    			name, path = ct[0], ct[1]
    		}
    		paths[name] = append(paths[name], path)
    	}
    
    	defaultPath := paths[""]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    		return nil
    	}
    	base := ct.Base.Copy(fn, skip)
    	if base == nil {
    		return fn(ct)
    	}
    	ct = &ComplexType{Base: base}
    	if r := fn(ct); r != nil {
    		return r
    	}
    	return ct
    }
    
    func (ct *ComplexType) GoString() string {
    	return ct.goString(0, "")
    }
    
    func (ct *ComplexType) goString(indent int, field string) string {
    	return fmt.Sprintf("%*s%sComplexType:\n%s", indent, "", field,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  7. src/net/http/request.go

    	if r.Body == nil {
    		err = errors.New("missing form body")
    		return
    	}
    	ct := r.Header.Get("Content-Type")
    	// RFC 7231, section 3.1.1.5 - empty type
    	//   MAY be treated as application/octet-stream
    	if ct == "" {
    		ct = "application/octet-stream"
    	}
    	ct, _, err = mime.ParseMediaType(ct)
    	switch {
    	case ct == "application/x-www-form-urlencoded":
    		var reader io.Reader = r.Body
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  8. src/net/http/fs_test.go

    			}
    		}
    		if len(rt.ranges) > 1 {
    			typ, params, err := mime.ParseMediaType(ct)
    			if err != nil {
    				t.Errorf("range=%q content-type = %q; %v", rt.r, ct, err)
    				continue
    			}
    			if typ != "multipart/byteranges" {
    				t.Errorf("range=%q content-type = %q; want multipart/byteranges", rt.r, typ)
    				continue
    			}
    			if params["boundary"] == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  9. pkg/proxy/nftables/proxier_test.go

    		add rule ip kube-proxy filter-prerouting ct state new jump firewall-check
    		add rule ip kube-proxy filter-forward ct state new jump service-endpoints-check
    		add rule ip kube-proxy filter-forward ct state new jump cluster-ips-check
    		add rule ip kube-proxy filter-input ct state new jump nodeport-endpoints-check
    		add rule ip kube-proxy filter-input ct state new jump service-endpoints-check
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/staticinit/sched.go

    // truncating its value as needed, like a conversion of a variable.
    // If the conversion is too difficult, truncate returns nil, false.
    func truncate(c ir.Node, t *types.Type) (ir.Node, bool) {
    	ct := c.Type()
    	cv := c.Val()
    	if ct.Kind() != t.Kind() {
    		switch {
    		default:
    			// Note: float -> float/integer and complex -> complex are valid but subtle.
    			// For example a float32(float64 1e300) evaluates to +Inf at runtime
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 17:16:14 UTC 2024
    - 30.7K bytes
    - Viewed (0)
Back to top