Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,752 for Appendp (0.2 sec)

  1. pkg/test/framework/components/echo/echotest/filters.go

    	for _, filter := range filters {
    		t.destinations = filter(t.destinations)
    	}
    	return t
    }
    
    func (t *T) ToMatch(m match.Matcher) *T {
    	return t.To(FilterMatch(m))
    }
    
    // ConditionallyTo appends the given filters which are executed per test. Destination filters may need
    // to change behavior based on the client. For example, naked services can't be reached cross-network, so
    // the client matters.
    // Example:
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 29 23:48:45 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/walk/switch.go

    		}
    
    		if c.typ.Type().IsInterface() {
    			interfaceCases = append(interfaceCases, c)
    		} else {
    			concreteCases = append(concreteCases, c)
    		}
    	}
    	flush()
    
    	sw.Compiled.Append(defaultGoto) // if none of the cases matched
    
    	// Now generate all the case bodies
    	for i, ncase := range sw.Cases {
    		sw.Compiled.Append(ir.NewLabelStmt(ncase.Pos(), labels[i]))
    		if caseVar := ncase.Var; caseVar != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:01 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  3. 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)
  4. src/cmd/compile/internal/walk/order.go

    		ir.DumpList(s, fn.Body)
    	}
    	ir.SetPos(fn) // Set reasonable position for instrumenting code. See issue 53688.
    	orderBlock(&fn.Body, map[string][]*ir.Name{})
    }
    
    // append typechecks stmt and appends it to out.
    func (o *orderState) append(stmt ir.Node) {
    	o.out = append(o.out, typecheck.Stmt(stmt))
    }
    
    // newTemp allocates a new temporary with the given type,
    // pushes it onto the temp stack, and returns it.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:33 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  5. src/log/slog/value.go

    	// groups are immutable.
    	return len(v.group()) == 0
    }
    
    // append appends a text representation of v to dst.
    // v is formatted as with fmt.Sprint.
    func (v Value) append(dst []byte) []byte {
    	switch v.Kind() {
    	case KindString:
    		return append(dst, v.str()...)
    	case KindInt64:
    		return strconv.AppendInt(dst, int64(v.num), 10)
    	case KindUint64:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:12:08 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. 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)
  7. src/cmd/compile/internal/ssa/sccp.go

    					}
    					t.defUse[arg] = append(t.defUse[arg], val)
    				}
    			}
    		}
    		for _, ctl := range block.ControlValues() {
    			// for control values that can become constants, find their use blocks
    			if possibleConst(ctl) {
    				t.defBlock[ctl] = append(t.defBlock[ctl], block)
    			}
    		}
    	}
    }
    
    // addUses finds all uses of value and appends them into work list for further process
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:54:50 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/crypto/sha3/sha3_s390x.go

    	// aren't updating the state.
    	switch s.function {
    	case sha3_224, sha3_256, sha3_384, sha3_512:
    		klmd(s.function, &a, nil, s.buf)
    		return append(b, a[:s.outputLen]...)
    	case shake_128, shake_256:
    		d := make([]byte, s.outputLen, 64)
    		klmd(s.function, &a, d, s.buf)
    		return append(b, d[:s.outputLen]...)
    	default:
    		panic("sha3: unknown function")
    	}
    }
    
    // Reset resets the Hash to its initial state.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/cfg/builder.go

    		Stmt:  stmt,
    	}
    	block.Succs = block.succs2[:0]
    	g.Blocks = append(g.Blocks, block)
    	return block
    }
    
    func (b *builder) add(n ast.Node) {
    	b.current.Nodes = append(b.current.Nodes, n)
    }
    
    // jump adds an edge from the current block to the target block,
    // and sets b.current to nil.
    func (b *builder) jump(target *Block) {
    	b.current.Succs = append(b.current.Succs, target)
    	b.current = nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/httproute.go

    	}
    
    	return domains, allAltHosts
    }
    
    // appendDomainPort appends `domain` and `domain:port` to `domains`. The `domain:port` variant is skipped
    // if port is unset.
    func appendDomainPort(domains []string, domain string, port int) []string {
    	if port == portNoAppendPortSuffix {
    		return append(domains, util.IPv6Compliant(domain))
    	}
    	return append(domains, util.IPv6Compliant(domain), util.DomainName(domain, port))
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 32.7K bytes
    - Viewed (0)
Back to top