Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for symname (0.27 sec)

  1. src/cmd/link/internal/ld/data.go

    // addgostring adds str, as a Go string value, to s. symname is the name of the
    // symbol used to define the string data and must be unique per linked object.
    func addgostring(ctxt *Link, ldr *loader.Loader, s *loader.SymbolBuilder, symname, str string) {
    	sdata := ldr.CreateSymForUpdate(symname, 0)
    	if sdata.Type() != sym.Sxxx {
    		ctxt.Errorf(s.Sym(), "duplicate symname in addgostring: %s", symname)
    	}
    	sdata.SetLocal(true)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  2. maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptorBuilder.java

            pluginDescriptor.setArtifactId(extractArtifactId(c));
            pluginDescriptor.setVersion(extractVersion(c));
            pluginDescriptor.setGoalPrefix(extractGoalPrefix(c));
    
            pluginDescriptor.setName(extractName(c));
            pluginDescriptor.setDescription(extractDescription(c));
    
            pluginDescriptor.setIsolatedRealm(extractIsolatedRealm(c));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/FirUtils.kt

    fun FirAnnotationContainer.getJvmNameFromAnnotation(session: FirSession, target: AnnotationUseSiteTarget? = null): String? {
        val annotationCalls = getAnnotationsByClassId(JvmStandardClassIds.Annotations.JvmName, session)
        return annotationCalls.firstNotNullOfOrNull { call ->
            call.getStringArgument(StandardNames.NAME, session)
                ?.takeIf { target == null || call.useSiteTarget == target }
        }
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:43 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

          For example, this would transform
    
          "tf_saved_model.global_tensor"() { sym_name = "v" ... }
          func @f(%arg0 {tf_saved_model.bound_input = @v}) {
            %1 = "tf.ReadVariableOp"(%arg0)
            ...
          }
    
          to
    
          func @f(%arg0 {tf_saved_model.bound_input = @v}) {
            %0 = "tf.VarHandleOp"(sym_name = "v")
            %1 = "tf.ReadVariableOp"(%0)
            ...
          }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      // We should have at least one entry function.
      if (entry_func_count == 0) return false;
    
      if (entry_func_count == 1) {
        // Update the entry func to main when the entry func is only & one.
        entry_func.setName(StringAttr::get(module.getContext(), "main"));
      }
      return true;
    }
    
    std::optional<std::string> Translator::Translate(
        ModuleOp module, const toco::TocoFlags& toco_flags,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
Back to top