Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for Types$ (0.26 sec)

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

    	v_2 := v.Args[2]
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (ADCSflags x y (Select1 <types.TypeFlags> (ADDSconstflags [-1] (ADCzerocarry <typ.UInt64> c))))
    	// result: (ADCSflags x y c)
    	for {
    		x := v_0
    		y := v_1
    		if v_2.Op != OpSelect1 || v_2.Type != types.TypeFlags {
    			break
    		}
    		v_2_0 := v_2.Args[0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 608.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewriteAMD64.go

    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (AtomicStore32 ptr val mem)
    	// result: (Select1 (XCHGL <types.NewTuple(typ.UInt32,types.TypeMem)> val ptr mem))
    	for {
    		ptr := v_0
    		val := v_1
    		mem := v_2
    		v.reset(OpSelect1)
    		v0 := b.NewValue0(v.Pos, OpAMD64XCHGL, types.NewTuple(typ.UInt32, types.TypeMem))
    		v0.AddArg3(val, ptr, mem)
    		v.AddArg(v0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 712.7K bytes
    - Viewed (0)
  3. tests/integration/pilot/testdata/gateway-api-crd.yaml

                                        Type identifies the type of filter to apply. As with other API fields,
                                        types are classified into three conformance levels:
    
    
                                        - Core: Filter types and their corresponding configuration defined by
                                          "Support: Core" in this package, e.g. "RequestHeaderModifier". All
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 02:01:51 UTC 2024
    - 912.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewritegeneric.go

    		v.AuxInt = int64ToAuxInt(int64(c))
    		v.Aux = typeToAux(types.Types[types.TUINT8])
    		v.AddArg2(sptr, mem)
    		return true
    	}
    	// match: (SelectN [0] call:(StaticCall {sym} sptr (Const32 [c]) mem))
    	// cond: isInlinableMemclr(config, int64(c)) && isSameCall(sym, "runtime.memclrNoHeapPointers") && call.Uses == 1 && clobber(call)
    	// result: (Zero {types.Types[types.TUINT8]} [int64(c)] sptr mem)
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 18:24:47 UTC 2024
    - 812.2K bytes
    - Viewed (0)
  5. RELEASE.md

        * `tf.types.experimental.TraceType` now allows custom tf.function inputs to declare Tensor decomposition and type casting support.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__apps__v1_openapi.json

                "description": "fsGroupChangePolicy defines behavior of changing ownership and permission of the volume before being exposed inside Pod. This field will only apply to volume types which support fsGroup based ownership(and permissions). It will have no effect on ephemeral volume types such as: secret, configmaps and emptydir. Valid values are \"OnRootMismatch\" and \"Always\". If not specified, \"Always\" is used. Note that this field cannot be set when spec.os.name is windows.",...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 810.7K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__resource.k8s.io__v1alpha2_openapi.json

                "type": "string"
              },
              "metadata": {
                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 12:18:45 UTC 2024
    - 656.6K bytes
    - Viewed (0)
  8. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.internal.build.event.types.AbstractOperationResult> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (AbstractOperationResult.java:0)
    Class <org.gradle.internal.build.event.types.AbstractProgressEvent> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (AbstractProgressEvent.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 967.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    def TF_InvertOp : TF_Op<"Invert", [Pure, TF_Involution, TF_SameOperandsAndResultTypeResolveRef]> {
      let summary = [{
    Invert (flip) each bit of supported types; for example, type `uint8` value 01010101 becomes 10101010.
      }];
    
      let description = [{
    Flip each bit of supported types.  For example, type `int8` (decimal 2) binary 00000010 becomes (decimal -3) binary 11111101.
    This operation is performed on each element of the tensor argument `x`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.19.md

    - Fixed a bug that prevents kubectl to validate CRDs with schema using x-kubernetes-preserve-unknown-fields on object fields.
      Fix kubectl SchemaError on CRDs with schema using x-kubernetes-preserve-unknown-fields on array types. ([#96562](https://github.com/kubernetes/kubernetes/pull/96562), [@gautierdelorme](https://github.com/gautierdelorme)) [SIG API Machinery and Testing]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 05 05:42:32 UTC 2022
    - 489.7K bytes
    - Viewed (0)
Back to top