Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 295 for append1 (0.41 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/CollectionPropertySpec.groovy

            ["1"]       | _             | _             | "append missing, then add"                        | { it.append(notDefined()) ; it.add("1") }
            ["1"]       | ["0"]         | _             | "add missing to non-empty value, then append"     | { it.add(notDefined()) ; it.append("1") }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    		actions = appendIf(actions, action{"LIST", resourcePath, resourceParams, namer, false}, isLister)
    		actions = appendIf(actions, action{"POST", resourcePath, resourceParams, namer, false}, isCreater)
    		actions = appendIf(actions, action{"DELETECOLLECTION", resourcePath, resourceParams, namer, false}, isCollectionDeleter)
    		// DEPRECATED in 1.11
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    	b := byte(i)
    	if i >= 100 {
    		buf = append(buf, b/100+'0')
    	}
    	if i >= 10 {
    		buf = append(buf, b/10%10+'0')
    	}
    	return append(buf, b%10+'0')
    }
    
    func printByteSlice(b []byte) string {
    	if len(b) == 0 {
    		return ""
    	}
    	buf := make([]byte, 0, 5*len(b))
    	buf = printUint8Bytes(buf, uint8(b[0]))
    	for _, n := range b[1:] {
    		buf = append(buf, ',', ' ')
    		buf = printUint8Bytes(buf, uint8(n))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
  4. pkg/apis/batch/validation/validation.go

    			allErrs = append(allErrs, field.Invalid(fldPath.Child("successPolicy"), *spec.SuccessPolicy, "requires indexed completion mode"))
    		} else {
    			allErrs = append(allErrs, validateSuccessPolicy(spec, fldPath.Child("successPolicy"))...)
    		}
    	}
    
    	allErrs = append(allErrs, validatePodReplacementPolicy(spec, fldPath.Child("podReplacementPolicy"))...)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 16:43:24 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  5. src/time/format.go

    		buf = appendInt(buf, int(month), 0)
    	}
    	buf = append(buf, ", "...)
    	buf = appendInt(buf, day, 0)
    	buf = append(buf, ", "...)
    	buf = appendInt(buf, hour, 0)
    	buf = append(buf, ", "...)
    	buf = appendInt(buf, minute, 0)
    	buf = append(buf, ", "...)
    	buf = appendInt(buf, second, 0)
    	buf = append(buf, ", "...)
    	buf = appendInt(buf, t.Nanosecond(), 0)
    	buf = append(buf, ", "...)
    	switch loc := t.Location(); loc {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/dwarf.go

    		r := &unitSyms[i]
    		lineSec.syms = append(lineSec.syms, markReachable(r.linesyms)...)
    		infoSec.syms = append(infoSec.syms, markReachable(r.infosyms)...)
    		locSec.syms = append(locSec.syms, markReachable(r.locsyms)...)
    		rangesSec.syms = append(rangesSec.syms, markReachable(r.rangessyms)...)
    	}
    	dwarfp = append(dwarfp, lineSec)
    	dwarfp = append(dwarfp, frameSec)
    	gdbScriptSec := d.writegdbscript()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  7. src/crypto/tls/conn.go

    			if hc.version == VersionTLS13 {
    				additionalData = record[:recordHeaderLen]
    			} else {
    				additionalData = append(hc.scratchBuf[:0], hc.seq[:]...)
    				additionalData = append(additionalData, record[:3]...)
    				n := len(payload) - c.Overhead()
    				additionalData = append(additionalData, byte(n>>8), byte(n))
    			}
    
    			var err error
    			plaintext, err = c.Open(payload[:0], nonce, payload, additionalData)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  8. src/crypto/tls/handshake_messages.go

    				}
    				m.pskIdentities = append(m.pskIdentities, psk)
    			}
    			var binders cryptobyte.String
    			if !extData.ReadUint16LengthPrefixed(&binders) || binders.Empty() {
    				return false
    			}
    			for !binders.Empty() {
    				var binder []byte
    				if !readUint8LengthPrefixed(&binders, &binder) ||
    					len(binder) == 0 {
    					return false
    				}
    				m.pskBinders = append(m.pskBinders, binder)
    			}
    		default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    	CELErrors    field.ErrorList
    }
    
    // AppendErrors appends all errors in the provided list with the errors of this list.
    func (o *OpenAPISchemaErrorList) AppendErrors(list *OpenAPISchemaErrorList) {
    	if o == nil || list == nil {
    		return
    	}
    	o.SchemaErrors = append(o.SchemaErrors, list.SchemaErrors...)
    	o.CELErrors = append(o.CELErrors, list.CELErrors...)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/riscv/obj.go

    		prologue = ctxt.StartUnsafePoint(prologue, newprog)
    
    		// Actually save LR.
    		prologue = obj.Appendp(prologue, newprog)
    		prologue.As = AMOV
    		prologue.From = obj.Addr{Type: obj.TYPE_REG, Reg: REG_LR}
    		prologue.To = obj.Addr{Type: obj.TYPE_MEM, Reg: REG_SP, Offset: -stacksize}
    
    		// Insert stack adjustment.
    		prologue = obj.Appendp(prologue, newprog)
    		prologue.As = AADDI
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
Back to top