Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for strPtr (0.11 sec)

  1. pkg/kubelet/apis/config/helpers_test.go

    	}
    	return paths
    }
    
    //lint:file-ignore U1000 Ignore dummy types, used by tests.
    
    // dummy helper types
    type foo struct {
    	foo int
    }
    type bar struct {
    	str    string
    	strptr *string
    
    	ints      []int
    	stringMap map[string]string
    
    	foo    foo
    	fooptr *foo
    
    	bars   []foo
    	barMap map[string]foo
    
    	skipRecurseStruct  foo
    	skipRecursePointer *foo
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/composite_lowering_patterns.td

              (variadic $inputs),
              ConstantStrAttr<StrAttr, "aten.gelu.default">, $attrs, $_, $_),
            (TFL_GeluOp $inputs, ConstBoolAttrFalse),
            [(IsStrCompositeAttribute<"approximate", "none"> $attrs)]>;
    
    def LegalizeCompositeApproximateAtenGELU : Pat<
            (MHLO_CompositeOp:$composite
              (variadic $inputs),
              ConstantStrAttr<StrAttr, "aten.gelu.default">, $attrs, $_, $_),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 18:45:51 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

        DefaultValuedOptionalAttr<I64ArrayAttr, "{}">:$allowed_batch_sizes,
        DefaultValuedOptionalAttr<StrAttr, "\"\"">:$container,
        DefaultValuedOptionalAttr<StrAttr, "\"\"">:$shared_name,
        DefaultValuedOptionalAttr<StrAttr, "\"\"">:$batching_queue,
        DefaultValuedOptionalAttr<I64Attr, "0">:$low_priority_max_batch_size,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.td

          (TF_TensorScatterAddOp
           (TF_FillOp $shape, (TF_ConstOp (GetScalarOfType<0> $updates))),
           $indices, $updates)>;
    
    def LowerScatterNdOpDefaultBadIndicesPolicy :
      Pat<(TF_ScatterNdOp $indices,
           TensorOf<[AnyInteger, AnyFloat, AnyComplex]>:$updates, $shape, ConstantStrAttr<StrAttr, "DEFAULT">),
          (TF_TensorScatterAddOp
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 13:30:42 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/transforms/legalize_patterns.td

    def LegalizeScatterNd : Pat<
      (TF_ScatterNdOp $indices, $updates, $shape, ConstantStrAttr<StrAttr, "">),
      (TFL_ScatterNdOp (CreateTFCastToInt32Op $indices), $updates,
        (CreateTFCastToInt32Op $shape))>;
    
    def LegalizeScatterNdDefaultBadindicesPolicy : Pat<
      (TF_ScatterNdOp $indices, $updates, $shape, ConstantStrAttr<StrAttr, "DEFAULT">),
      (TFL_ScatterNdOp (CreateTFCastToInt32Op $indices), $updates,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 13:30:42 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  6. src/time/format.go

    			value = value[1+i:]
    		}
    		if rangeErrString != "" {
    			return Time{}, newParseError(alayout, avalue, stdstr, value, ": "+rangeErrString+" out of range")
    		}
    		if err != nil {
    			return Time{}, newParseError(alayout, avalue, stdstr, hold, "")
    		}
    	}
    	if pmSet && hour < 12 {
    		hour += 12
    	} else if amSet && hour == 12 {
    		hour = 0
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        container: the container this variable is placed in.
        shared_name: the name by which this variable is referred to.
      }];
    
      let arguments = (ins
        DefaultValuedStrAttr<StrAttr, "">:$container,
        DefaultValuedStrAttr<StrAttr, "">:$shared_name
      );
    
      let results = (outs TFL_ResourceTensor:$resource_handle);
    
      let hasOptions = 1;
    }
    
    def TFL_AssignVariableOp : TFL_Op<"assign_variable", []> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.31.md

    ### API Change
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.30.md

    ## Changelog since v1.30.1
    
    ## Changes by Kind
    
    ### API Change
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
Back to top