Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for namedStr (0.14 sec)

  1. staging/src/k8s.io/apimachinery/pkg/conversion/queryparams/convert_test.go

    	Str       string            `json:"str"`
    	Integer   int               `json:"integer,omitempty"`
    	Slice     []string          `json:"slice,omitempty"`
    	Boolean   bool              `json:"boolean,omitempty"`
    	NamedStr  namedString       `json:"namedStr,omitempty"`
    	NamedBool namedBool         `json:"namedBool,omitempty"`
    	Foobar    bar               `json:"foobar,omitempty"`
    	Testmap   map[string]string `json:"testmap,omitempty"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 03 07:01:02 UTC 2018
    - 6.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/passes/lift_quantizable_spots_as_functions_simple.td

        (ResultList $res),
        (NamedAttributeList
          (NamedAttr<"window_strides"> (DefaultOrNullAttr $window_strides)),
          (NamedAttr<"padding"> (DefaultOrNullAttr $padding)),
          (NamedAttr<"lhs_dilation"> (DefaultOrNullAttr $lhs_dilation)),
          (NamedAttr<"rhs_dilation"> (DefaultOrNullAttr $rhs_dilation)),
          (NamedAttr<"window_reversal"> (DefaultOrNullAttr $window_reversal)),
          (NamedAttr<"dimension_numbers"> $dimension_numbers),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 23:21:42 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/passes/lift_quantizable_spots_as_functions_drq.td

        (ArgumentList $input, $filter),
        (ResultList $res),
        (NamedAttributeList
          (NamedAttr<"strides"> $strides),
          (NamedAttr<"use_cudnn_on_gpu"> $use_cudnn_on_gpu),
          (NamedAttr<"padding"> $padding),
          (NamedAttr<"explicit_paddings"> $explicit_paddings),
          (NamedAttr<"dilations"> $dilations))),
      [(IsNotInLiftedFunc $res), (IsConstTensor $filter)], [], (addBenefit 1)>;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Dec 10 05:52:02 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/strip_tf_attributes.cc

            attrs,
            [](NamedAttribute namedAttr) { return ShouldStripAttr(namedAttr); }));
        for (auto namedAttr : stripAttrs) {
          func.removeArgAttr(i, namedAttr.getName());
        }
      }
    
      for (int i = 0; i < func.getNumResults(); ++i) {
        auto stripAttrs = llvm::to_vector<4>(llvm::make_filter_range(
            func.getResultAttrs(i),
            [](NamedAttribute namedAttr) { return ShouldStripAttr(namedAttr); }));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 19 08:06:04 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/strip_saved_module_metadata.cc

    };
    
    bool ShouldStripAttr(NamedAttribute &namedAttr) {
      auto name = namedAttr.getName().strref();
      return name.starts_with("tf_saved_model.");
    }
    
    void StripModule(Operation *module) {
      auto stripAttrs = llvm::to_vector<4>(llvm::make_filter_range(
          module->getAttrs(),
          [](NamedAttribute namedAttr) { return ShouldStripAttr(namedAttr); }));
      for (auto namedAttr : stripAttrs) {
        module->removeAttr(namedAttr.getName());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 19 08:06:04 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/common/lift_as_function_call.td

    // Creates a list of NamedAttributes. An example usage would be:
    // (NamedAttributeList (NamedAttr<"transpose_a"> $transpose_a))
    def NamedAttributeList : NativeCodeCall<"llvm::SmallVector<NamedAttribute>{$0...}">;
    
    // Creates a NamedAttribute given its name and value. Essentially creates
    // a pair: {attribute_name, attribute_value}.
    class NamedAttr<string attr_name> :
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 25 00:32:20 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. cmd/os_unix.go

    			typ = fi.Mode() & os.ModeType
    		}
    
    		var nameStr string
    		if typ.IsRegular() {
    			nameStr = string(name)
    		} else if typ.IsDir() {
    			// Use temp buffer to append a slash to avoid string concat.
    			tmp = tmp[:len(name)+1]
    			copy(tmp, name)
    			tmp[len(tmp)-1] = '/' // SlashSeparator
    			nameStr = string(tmp)
    		}
    
    		count--
    		entries = append(entries, nameStr)
    	}
    
    	return
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  8. analysis/analysis-api/testData/components/compilerFacility/firPluginPrototypeMultiModule/composableFunctionMultiModules2.ir.txt

                CONST String type=kotlin.String value="!"
        FUN name:show visibility:public modality:FINAL <> (str:kotlin.String) returnType:kotlin.Unit
          VALUE_PARAMETER name:str index:0 type:kotlin.String
          BLOCK_BODY
        FUN name:test visibility:public modality:FINAL <> () returnType:kotlin.Int
          BLOCK_BODY
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Feb 26 21:57:23 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-type-util.h.pump

    #   if GTEST_HAS_CXXABI_H_
      using abi::__cxa_demangle;
    #   endif  // GTEST_HAS_CXXABI_H_
      char* const readable_name = __cxa_demangle(name, 0, 0, &status);
      const std::string name_str(status == 0 ? readable_name : name);
      free(readable_name);
      return name_str;
    #  else
      return name;
    #  endif  // GTEST_HAS_CXXABI_H_ || __HP_aCC
    
    # else
    
      return "<type>";
    
    # endif  // GTEST_HAS_RTTI
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-type-util.h.pump

    #   if GTEST_HAS_CXXABI_H_
      using abi::__cxa_demangle;
    #   endif  // GTEST_HAS_CXXABI_H_
      char* const readable_name = __cxa_demangle(name, 0, 0, &status);
      const std::string name_str(status == 0 ? readable_name : name);
      free(readable_name);
      return name_str;
    #  else
      return name;
    #  endif  // GTEST_HAS_CXXABI_H_ || __HP_aCC
    
    # else
    
      return "<type>";
    
    # endif  // GTEST_HAS_RTTI
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.1K bytes
    - Viewed (0)
Back to top