Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for go_functions (0.26 sec)

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

    				// the relocation phase.
    				// Therefore, all packages are merged under a fake .FILE
    				// "go_functions".
    				// TODO(aix); remove once ld has been fixed or the triggering
    				// relocation has been found and fixed.
    				if currSymSrcFile.name == "" {
    					currSymSrcFile.name = ldr.SymPkg(x)
    					f.writeSymbolNewFile(ctxt, "go_functions", uint64(ldr.SymValue(x)), xfile.getXCOFFscnum(ldr.SymSect(x)))
    				}
    			}
    
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  2. tensorflow/c/c_api.h

                                                    const TF_Function* grad,
                                                    TF_Status* status);
    
    // Returns the number of TF_Functions registered in `g`.
    TF_CAPI_EXPORT extern int TF_GraphNumFunctions(TF_Graph* g);
    
    // Fills in `funcs` with the TF_Function* registered in `g`.
    // `funcs` must point to an array of TF_Function* of length at least
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

                    // Collect constructors
                    findAvailableConstructors(scope, name).mapTo(this) { AvailableSymbol(it, importKind) }
    
                    // Collect functions
                    scope.getFunctions(name).mapTo(this) { AvailableSymbol(it, importKind) }
                }
            }
        }
    
        fun findPropertiesInScopes(scopes: List<FirScope>, name: Name): List<AvailableSymbol<FirVariableSymbol<*>>> {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
Back to top