Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for typemap (0.16 sec)

  1. src/cmd/compile/internal/ssa/rewriteMIPS.go

    		v0.AuxInt = int32ToAuxInt(0)
    		v1 := b.NewValue0(v.Pos, OpMIPSMOVBstore, types.TypeMem)
    		v1.AuxInt = int32ToAuxInt(2)
    		v2 := b.NewValue0(v.Pos, OpMIPSMOVBstore, types.TypeMem)
    		v2.AuxInt = int32ToAuxInt(1)
    		v3 := b.NewValue0(v.Pos, OpMIPSMOVBstore, types.TypeMem)
    		v3.AuxInt = int32ToAuxInt(0)
    		v3.AddArg3(ptr, v0, mem)
    		v2.AddArg3(ptr, v0, v3)
    		v1.AddArg3(ptr, v0, v2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 14:43:03 UTC 2023
    - 176.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewriteLOONG64.go

    		v0.AuxInt = int64ToAuxInt(0)
    		v1 := b.NewValue0(v.Pos, OpLOONG64MOVBstore, types.TypeMem)
    		v1.AuxInt = int32ToAuxInt(2)
    		v2 := b.NewValue0(v.Pos, OpLOONG64MOVBstore, types.TypeMem)
    		v2.AuxInt = int32ToAuxInt(1)
    		v3 := b.NewValue0(v.Pos, OpLOONG64MOVBstore, types.TypeMem)
    		v3.AuxInt = int32ToAuxInt(0)
    		v3.AddArg3(ptr, v0, mem)
    		v2.AddArg3(ptr, v0, v3)
    		v1.AddArg3(ptr, v0, v2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:26:25 UTC 2023
    - 195.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewriteRISCV64.go

    		v0.AuxInt = int64ToAuxInt(0)
    		v1 := b.NewValue0(v.Pos, OpRISCV64MOVBstore, types.TypeMem)
    		v1.AuxInt = int32ToAuxInt(2)
    		v2 := b.NewValue0(v.Pos, OpRISCV64MOVBstore, types.TypeMem)
    		v2.AuxInt = int32ToAuxInt(1)
    		v3 := b.NewValue0(v.Pos, OpRISCV64MOVBstore, types.TypeMem)
    		v3.AddArg3(ptr, v0, mem)
    		v2.AddArg3(ptr, v0, v3)
    		v1.AddArg3(ptr, v0, v2)
    		v.AddArg3(ptr, v0, v1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 205.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

                    // this.super(p0 .. pn)
                    _ALOAD(0);
                    for (int typeVar = addNameParameter ? 1 : 0, stackVar = addNameParameter ? 2 : 1; typeVar < paramTypes.size(); ++typeVar) {
                        Type argType = paramTypes.get(typeVar);
                        _ILOAD_OF(argType, stackVar);
                        stackVar += argType.getSize();
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewriteMIPS64.go

    		v0.AuxInt = int64ToAuxInt(0)
    		v1 := b.NewValue0(v.Pos, OpMIPS64MOVBstore, types.TypeMem)
    		v1.AuxInt = int32ToAuxInt(2)
    		v2 := b.NewValue0(v.Pos, OpMIPS64MOVBstore, types.TypeMem)
    		v2.AuxInt = int32ToAuxInt(1)
    		v3 := b.NewValue0(v.Pos, OpMIPS64MOVBstore, types.TypeMem)
    		v3.AuxInt = int32ToAuxInt(0)
    		v3.AddArg3(ptr, v0, mem)
    		v2.AddArg3(ptr, v0, v3)
    		v1.AddArg3(ptr, v0, v2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 03:59:48 UTC 2023
    - 211.6K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewriteWasm.go

    		v0.AuxInt = int64ToAuxInt(0)
    		v1 := b.NewValue0(v.Pos, OpWasmI64Store, types.TypeMem)
    		v1.AuxInt = int64ToAuxInt(16)
    		v2 := b.NewValue0(v.Pos, OpWasmI64Store, types.TypeMem)
    		v2.AuxInt = int64ToAuxInt(8)
    		v3 := b.NewValue0(v.Pos, OpWasmI64Store, types.TypeMem)
    		v3.AddArg3(destptr, v0, mem)
    		v2.AddArg3(destptr, v0, v3)
    		v1.AddArg3(destptr, v0, v2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 03:56:57 UTC 2023
    - 108.6K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/Maps.java

       *
       * @return a new, empty {@code TreeMap}
       */
      @SuppressWarnings("rawtypes") // https://github.com/google/guava/issues/989
      public static <K extends Comparable, V extends @Nullable Object> TreeMap<K, V> newTreeMap() {
        return new TreeMap<>();
      }
    
      /**
       * Creates a <i>mutable</i> {@code TreeMap} instance with the same mappings as the specified map
       * and using the same ordering as the specified map.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/Maps.java

       *
       * @return a new, empty {@code TreeMap}
       */
      @SuppressWarnings("rawtypes") // https://github.com/google/guava/issues/989
      public static <K extends Comparable, V extends @Nullable Object> TreeMap<K, V> newTreeMap() {
        return new TreeMap<>();
      }
    
      /**
       * Creates a <i>mutable</i> {@code TreeMap} instance with the same mappings as the specified map
       * and using the same ordering as the specified map.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top