Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,330 for Appendp (0.21 sec)

  1. src/fmt/format.go

    	buf := *f.buf
    	if f.sharp {
    		// Add leading 0x or 0X.
    		buf = append(buf, '0', digits[16])
    	}
    	var c byte
    	for i := 0; i < length; i++ {
    		if f.space && i > 0 {
    			// Separate elements with a space.
    			buf = append(buf, ' ')
    			if f.sharp {
    				// Add leading 0x or 0X for each element.
    				buf = append(buf, '0', digits[16])
    			}
    		}
    		if b != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/MultipartBody.kt

         */
        internal fun StringBuilder.appendQuotedString(key: String) {
          append('"')
          for (i in 0 until key.length) {
            when (val ch = key[i]) {
              '\n' -> append("%0A")
              '\r' -> append("%0D")
              '"' -> append("%22")
              else -> append(ch)
            }
          }
          append('"')
        }
      }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. src/cmd/vet/vet_test.go

    				matched = true
    			} else {
    				out = append(out, errmsg)
    			}
    		}
    		if !matched {
    			errs = append(errs, fmt.Errorf("%s:%d: no match for %#q in:\n\t%s", we.file, we.lineNum, we.reStr, strings.Join(out[n:], "\n\t")))
    			continue
    		}
    	}
    
    	if len(out) > 0 {
    		errs = append(errs, fmt.Errorf("Unmatched Errors:"))
    		for _, errLine := range out {
    			errs = append(errs, fmt.Errorf("%s", errLine))
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 01:02:40 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  4. src/strconv/ftoa.go

    	}
    
    	// sign, 0x, leading digit
    	if neg {
    		dst = append(dst, '-')
    	}
    	dst = append(dst, '0', fmt, '0'+byte((mant>>60)&1))
    
    	// .fraction
    	mant <<= 4 // remove leading 0 or 1
    	if prec < 0 && mant != 0 {
    		dst = append(dst, '.')
    		for mant != 0 {
    			dst = append(dst, hex[(mant>>60)&15])
    			mant <<= 4
    		}
    	} else if prec > 0 {
    		dst = append(dst, '.')
    		for i := 0; i < prec; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/memory/discovery.go

    	}
    	instance.Service = svc
    	sd.ip2instance[instance.Endpoint.Address] = append(sd.ip2instance[instance.Endpoint.Address], instance)
    
    	key := fmt.Sprintf("%s:%d", service, instance.ServicePort.Port)
    	instanceList := sd.instancesByPortNum[key]
    	sd.instancesByPortNum[key] = append(instanceList, instance)
    
    	key = fmt.Sprintf("%s:%s", service, instance.ServicePort.Name)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 23:10:01 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/testsanitizers/cc_test.go

    	}
    
    	if testing.Verbose() {
    		c.goFlags = append(c.goFlags, "-x")
    	}
    
    	switch sanitizer {
    	case "memory":
    		c.goFlags = append(c.goFlags, "-msan")
    
    	case "thread":
    		c.goFlags = append(c.goFlags, "--installsuffix=tsan")
    		compiler, _ := compilerVersion()
    		if compiler.name == "gcc" {
    			c.cFlags = append(c.cFlags, "-fPIC")
    			c.ldFlags = append(c.ldFlags, "-fPIC", "-static-libtsan")
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 09 20:00:56 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/upgrade/plan.go

    	beforeVersion := up.Before.DNSVersion
    	afterVersion := up.After.DNSVersion
    
    	if beforeVersion != "" || afterVersion != "" {
    		components = append(components, newComponentUpgradePlan(name, beforeVersion, afterVersion, ""))
    	}
    	return components
    }
    
    // appendKubeadmComponent appends kubeadm component to the list of components
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  8. src/internal/bisect/bisect.go

    	for {
    		f, more := frames.Next()
    		buf = append(buf, prefix...)
    		buf = append(buf, f.Function...)
    		buf = append(buf, "()\n"...)
    		buf = append(buf, prefix...)
    		buf = append(buf, '\t')
    		buf = appendFileLine(buf, f.File, f.Line)
    		buf = append(buf, '\n')
    		if !more {
    			break
    		}
    	}
    	buf = append(buf, prefix...)
    	buf = append(buf, '\n')
    	_, err := w.Write(buf)
    	return err
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 17:28:43 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  9. internal/grid/types.go

    // Value returns the underlying value.
    // Regular append mechanics should be observed.
    // If no value has been set yet, a new array is created.
    func (j *Array[T]) Value() []T {
    	if j.val == nil {
    		j.val = j.p.newA(10)
    	}
    	return j.val
    }
    
    // Append a value to the underlying array.
    // The returned Array is always the same as the one called.
    func (j *Array[T]) Append(v ...T) *Array[T] {
    	if j.val == nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 01 23:42:09 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_conversions/dot_general.cc

      llvm::SmallVector<int64_t, 4> sizes;
    };
    
    // Appends all elements in `range` to `values`.
    template <typename ValueT, typename Range>
    void Append(llvm::SmallVectorImpl<ValueT>& values, Range&& range) {
      values.insert(values.end(), range.begin(), range.end());
    }
    
    // Appends all elements in `range` to `values`.
    template <typename ValueT, typename Range, typename... RangeTs>
    void Append(llvm::SmallVectorImpl<ValueT>& values, Range&& range,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.2K bytes
    - Viewed (0)
Back to top