Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 60 for typemap (0.17 sec)

  1. pkg/xds/server.go

    				id, request.ResponseNonce)
    		}
    		log.Debugf("ADS:%s: REQ %s Expired nonce received %s, sent %s", stype,
    			id, request.ResponseNonce, previousInfo.NonceSent)
    		ExpiredNonce.With(typeTag.Value(model.GetMetricType(request.TypeUrl))).Increment()
    		return false, emptyResourceDelta
    	}
    
    	// If it comes here, that means nonce match.
    	var previousResources []string
    	var alwaysRespond bool
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  2. src/runtime/trace.go

    	// There are 2 of each: one for gen%2, one for 1-gen%2.
    	stackTab  [2]traceStackTable  // maps stack traces to unique ids
    	stringTab [2]traceStringTable // maps strings to unique ids
    	typeTab   [2]traceTypeTable   // maps type pointers to unique ids
    
    	// cpuLogRead accepts CPU profile samples from the signal handler where
    	// they're generated. There are two profBufs here: one for gen%2, one for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/TreeRangeMap.java

    import java.util.Set;
    import java.util.function.BiFunction;
    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * An implementation of {@code RangeMap} based on a {@code TreeMap}, supporting all optional
     * operations.
     *
     * <p>Like all {@code RangeMap} implementations, this supports neither null keys nor null values.
     *
     * @author Louis Wasserman
     * @since 14.0
     */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 04 14:31:50 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/value.go

    	// with respect to their source position.
    	return v.Op == OpVarDef || v.Op == OpVarLive || v.Op == OpPhi ||
    		(v.Op == OpFwdRef || v.Op == OpCopy) && v.Type == types.TypeMem
    }
    
    // removeable reports whether the value v can be removed from the SSA graph entirely
    // if its use count drops to 0.
    func (v *Value) removeable() bool {
    	if v.Type.IsVoid() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:40:22 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/op.go

    func (a *AuxCall) LateExpansionResultType() *types.Type {
    	var tys []*types.Type
    	for i := int64(0); i < a.NResults(); i++ {
    		tys = append(tys, a.TypeOfResult(i))
    	}
    	tys = append(tys, types.TypeMem)
    	return types.NewResults(tys)
    }
    
    // NArgs returns the number of arguments (including receiver, if there is one).
    func (a *AuxCall) NArgs() int64 {
    	return int64(len(a.abiInfo.InParams()))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 15:29:10 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewritePPC64.go

    		v.reset(OpPPC64MOVDstorezero)
    		v.AuxInt = int32ToAuxInt(24)
    		v0 := b.NewValue0(v.Pos, OpPPC64MOVDstorezero, types.TypeMem)
    		v0.AuxInt = int32ToAuxInt(16)
    		v1 := b.NewValue0(v.Pos, OpPPC64MOVDstorezero, types.TypeMem)
    		v1.AuxInt = int32ToAuxInt(8)
    		v2 := b.NewValue0(v.Pos, OpPPC64MOVDstorezero, types.TypeMem)
    		v2.AuxInt = int32ToAuxInt(0)
    		v2.AddArg2(destptr, mem)
    		v1.AddArg2(destptr, v2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  7. okhttp/api/okhttp.api

    	public final fun url ()Lokhttp3/HttpUrl;
    }
    
    public abstract interface class okhttp3/AsyncDns {
    	public static final field Companion Lokhttp3/AsyncDns$Companion;
    	public static final field TYPE_A I
    	public static final field TYPE_AAAA I
    	public abstract fun query (Ljava/lang/String;Lokhttp3/AsyncDns$Callback;)V
    }
    
    public abstract interface class okhttp3/AsyncDns$Callback {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 13:41:01 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  8. pkg/scheduler/schedule_one_test.go

    		return &reverseNumericMapPlugin{}, nil
    	}
    }
    
    type trueMapPlugin struct{}
    
    func (pl *trueMapPlugin) Name() string {
    	return "TrueMap"
    }
    
    func (pl *trueMapPlugin) Score(_ context.Context, _ *framework.CycleState, _ *v1.Pod, _ string) (int64, *framework.Status) {
    	return 1, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  9. fastapi/applications.py

    from enum import Enum
    from typing import (
        Any,
        Awaitable,
        Callable,
        Coroutine,
        Dict,
        List,
        Optional,
        Sequence,
        Type,
        TypeVar,
        Union,
    )
    
    from fastapi import routing
    from fastapi.datastructures import Default, DefaultPlaceholder
    from fastapi.exception_handlers import (
        http_exception_handler,
        request_validation_exception_handler,
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 00:48:03 UTC 2024
    - 172.2K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Sets.java

       * There is no need to use this method on a {@link Map} implementation that already has a
       * corresponding {@link Set} implementation (such as {@link java.util.HashMap} or {@link
       * java.util.TreeMap}).
       *
       * <p>Each method invocation on the set returned by this method results in exactly one method
       * invocation on the backing map or its {@code keySet} view, with one exception. The {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
Back to top