Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 45 for functionNames (0.21 sec)

  1. staging/src/k8s.io/apiserver/pkg/cel/library/library_compatibility_test.go

    	libs = append(libs, authzLibraryDecls, listsLibraryDecls, regexLibraryDecls, urlLibraryDecls, quantityLibraryDecls, ipLibraryDecls, cidrLibraryDecls)
    	functionNames := sets.New[string]()
    	for _, lib := range libs {
    		for name := range lib {
    			functionNames[name] = struct{}{}
    		}
    	}
    
    	// WARN: All library changes must follow
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 12:03:04 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  2. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/klibSourceFileProvider/AbstractGetKlibSourceFileNameTest.kt

                        .map { propertyProto -> nameResolver.getName(propertyProto.name) }
    
                    val functionNames = packageFragmentProto.`package`.functionList
                        .map { functionProto -> nameResolver.getName(functionProto.name) }
    
                    val callableNames = (propertyNames + functionNames).distinct()
                    callableNames.forEach { callableName ->
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/driver/interactive.go

    // interactive starts a shell to read pprof commands.
    func interactive(p *profile.Profile, o *plugin.Options) error {
    	// Enter command processing loop.
    	o.UI.SetAutoComplete(newCompleter(functionNames(p)))
    	configure("compact_labels", "true")
    	configHelp["sample_index"] += fmt.Sprintf("Or use sample_index=name, with name in %v.\n", sampleTypes(p))
    
    	// Do not wait for the visualizer to complete, to allow multiple
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 10.6K bytes
    - Viewed (0)
  4. testing/performance/src/templates/cpp-source/lib.h

    #ifndef PROJECT_HEADER_${functionName}_H
    #define PROJECT_HEADER_${functionName}_H
    <% functionCount.times { %>
    long CPP_${functionName}_${it + 1} ();
    <% } %>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 200 bytes
    - Viewed (0)
  5. testing/performance/src/templates/cpp-source/lib.cpp

    #include "${functionName}.h"
    
    // Include functions from dependencies
    <% projectDeps.each { p ->
      sourceFiles.times { %>
    #include "${p}lib${it + 1}.h"
    <%
      }
    } %>
    
    <% functionCount.times { %>
    long CPP_${functionName}_${it + 1} () {
      long sum = 1;
      // Call functions defined in dependent projects.
      <% projectDeps.each { p ->
        sourceFiles.times {
          def functionName = "${p}lib${it + 1}"
          functionCount.times {
      %>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 521 bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/cc/saved_model_import.cc

      return function_aliases;
    }
    
    void UpdateFunctionAliases(
        absl::flat_hash_map<FunctionName, FunctionAlias>& function_aliases,
        ModuleOp module_op) {
      absl::flat_hash_set<FunctionName> existing_func_names;
      module_op->walk([&](func::FuncOp func_op) {
        FunctionName func_name = func_op.getSymName().str();
        existing_func_names.insert(func_name);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 12:49:45 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  7. testing/performance/src/templates/cpp-source/exe.cpp

    #define STDIO <stdio.h>
    #include STDIO
    <% }%>
    
    int main () {
      long sum = 1;
      <% sourceFiles.times {
        def functionName = "lib${it + 1}"
        if (projectName != 'root') {
          functionName = "${projectName}${functionName}"
        }
        functionCount.times {
      %>
      sum += CPP_${functionName}_${it + 1}();
      <%
        }
      } %>
      printf("You made %d function calls!", sum);
      return 0;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 584 bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/cc/saved_model_import_test.cc

          return %arg : tensor<1x2xf32>
        }
      )mlir");
      ASSERT_TRUE(module_op);
    
      absl::flat_hash_map<FunctionName, FunctionAlias> function_aliases;
      UpdateFunctionAliases(function_aliases, *module_op);
      EXPECT_THAT(function_aliases, IsEmpty());
    }
    
    TEST_F(UpdateFunctionAliasesTest, AliasUpdatedByMlirFunctionName) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 07 03:47:17 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  9. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/generator/tasks/CppMultiProjectGeneratorTask.groovy

                Map classArgs = projectArgs + [functionName: fName]
                def headersDir = classArgs.projectType == 'exe' ? 'headers' : 'public'
                generateWithTemplate(projectDir, "src/main/cpp/${classArgs.functionName}.cpp", 'lib.cpp', classArgs)
                generateWithTemplate(projectDir, "src/main/${headersDir}/${classArgs.functionName}.h", 'lib.h', classArgs)
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 07 13:12:26 UTC 2021
    - 4.8K bytes
    - Viewed (0)
  10. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/generator/tasks/NativeProjectGeneratorTask.groovy

            }
            testProject.sourceFiles.times { s ->
                args.moduleCount.times { m ->
                    Map classArgs = args + [componentName: "lib${m + 1}", functionName: "lib${s + 1}"]
                    generateWithTemplate(projectDir, "src/${classArgs.componentName}/c/${classArgs.functionName}.c", 'lib.c', classArgs)
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 07 13:12:26 UTC 2021
    - 1.8K bytes
    - Viewed (0)
Back to top