Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for sfprintf (0.14 sec)

  1. src/net/http/h2_bundle.go

    		if f.StreamID == 0 {
    			buf.WriteString(" (conn)")
    		}
    		fmt.Fprintf(&buf, " incr=%v", f.Increment)
    	case *http2PingFrame:
    		fmt.Fprintf(&buf, " ping=%q", f.Data[:])
    	case *http2GoAwayFrame:
    		fmt.Fprintf(&buf, " LastStreamID=%v ErrCode=%v Debug=%q",
    			f.LastStreamID, f.ErrCode, f.debugData)
    	case *http2RSTStreamFrame:
    		fmt.Fprintf(&buf, " ErrCode=%v", f.ErrCode)
    	}
    	return buf.String()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  2. pkg/proxy/iptables/proxier_test.go

    	lineStr := ""
    	if line != 0 {
    		lineStr = fmt.Sprintf(" (from line %d)", line)
    	}
    	for _, tc := range testCases {
    		t.Run(tc.name, func(t *testing.T) {
    			protocol := strings.ToLower(string(tc.protocol))
    			if protocol == "" {
    				protocol = "tcp"
    			}
    			matches, output, masq := tracePacket(t, ipt, tc.sourceIP, protocol, tc.destIP, fmt.Sprintf("%d", tc.destPort), nodeIPs)
    			var errors []string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  3. pkg/apis/core/validation/validation.go

    	if !found {
    		allErrs = append(allErrs, field.Required(fldPath.Child("labels").Key(key),
    			fmt.Sprintf("must be '%s'", expectedValue)))
    		return allErrs
    	}
    	if actualValue != expectedValue {
    		allErrs = append(allErrs, field.Invalid(fldPath.Child("labels").Key(key), meta.Labels,
    			fmt.Sprintf("must be '%s'", expectedValue)))
    	}
    	return allErrs
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssagen/ssa.go

    		for _, a := range archs {
    			if b, ok := intrinsics[intrinsicKey{a, pkg2, fn2}]; ok {
    				intrinsics[intrinsicKey{a, pkg, fn}] = b
    				aliased = true
    			}
    		}
    		if !aliased {
    			panic(fmt.Sprintf("attempted to alias undefined intrinsic: %s.%s", pkg, fn))
    		}
    	}
    
    	/******** runtime ********/
    	if !base.Flag.Cfg.Instrumenting {
    		add("runtime", "slicebytetostringtmp",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  5. pkg/registry/core/service/storage/storage_test.go

    	al, err := ipallocator.NewInMemory(cidr)
    	if err != nil {
    		panic(fmt.Sprintf("error creating IP allocator: %v", err))
    	}
    	return al
    }
    
    func makePortAllocator(ports machineryutilnet.PortRange) portallocator.Interface {
    	al, err := portallocator.NewInMemory(ports)
    	if err != nil {
    		panic(fmt.Sprintf("error creating port allocator: %v", err))
    	}
    	return al
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  6. doc/go_spec.html

    </p>
    
    <pre>
    type TimeZone int
    
    const (
    	EST TimeZone = -(5 + iota)
    	CST
    	MST
    	PST
    )
    
    func (tz TimeZone) String() string {
    	return fmt.Sprintf("GMT%+dh", tz)
    }
    </pre>
    
    <p>
    If the type definition specifies <a href="#Type_parameter_declarations">type parameters</a>,
    the type name denotes a <i>generic type</i>.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
Back to top