Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,788 for Function1 (0.24 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/tests/tests.go

    			tSign, argOk := t.(*types.Signature)
    			// Argument should be a function
    			if !argOk {
    				pass.ReportRangef(expr, "argument to Fuzz must be a function")
    				return false
    			}
    			// ff Argument function should not return
    			if tSign.Results().Len() != 0 {
    				pass.ReportRangef(expr, "fuzz target must not return any value")
    			}
    			// ff Argument function should have 1 or more argument
    			if tSign.Params().Len() == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  2. guava-testlib/test/com/google/common/testing/anotherpackage/ForwardingWrapperTesterTest.java

    import static com.google.common.truth.Truth.assertThat;
    import static org.junit.Assert.assertThrows;
    
    import com.google.common.base.Equivalence;
    import com.google.common.base.Function;
    import com.google.common.base.Functions;
    import com.google.common.base.Joiner;
    import com.google.common.base.Predicate;
    import com.google.common.collect.Ordering;
    import com.google.common.primitives.UnsignedInteger;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  3. src/log/slog/doc.go

    # Wrapping output methods
    
    The logger functions use reflection over the call stack to find the file name
    and line number of the logging call within the application. This can produce
    incorrect source information for functions that wrap slog. For instance, if you
    define this function in file mylog.go:
    
    	func Infof(logger *slog.Logger, format string, args ...any) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 15 14:35:48 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssagen/abi.go

    	typecheck.Stmts(fn.Body)
    
    	// Restore previous context.
    	base.Pos = savepos
    	ir.CurFunc = savedcurfn
    }
    
    // CreateWasmImportWrapper creates a wrapper for imported WASM functions to
    // adapt them to the Go calling convention. The body for this function is
    // generated in cmd/internal/obj/wasm/wasmobj.go
    func CreateWasmImportWrapper(fn *ir.Func) bool {
    	if fn.WasmImport == nil {
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/doc.go

    understood as alternative or non-standard type systems. For example,
    vet's printf checker infers whether a function has the "printf wrapper"
    type, and it applies stricter checks to calls of such functions. In
    addition, it records which functions are printf wrappers for use by
    later analysis passes to identify other printf wrappers by induction.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/python/py_function_lib.py

    ) -> None:
      """Runs the representative dataset through a function for calibration.
    
      NOTE: This is intended to be run in graph mode (TF1).
    
      The function is identified by the SignatureDef.
    
      Args:
        sess: The Session object to run the function in.
        signature_def: A SignatureDef that identifies a function by specifying the
          inputs and outputs.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 05:32:11 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/ImmutableTable.java

       * generated by applying the specified functions. If multiple inputs are mapped to the same row
       * and column pair, they will be combined with the specified merging function in encounter order.
       *
       * <p>The returned {@code Collector} will throw a {@code NullPointerException} at collection time
       * if the row, column, value, or merging functions return null on any input.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  8. src/runtime/callers_test.go

    	m := make(map[string]int, len(pcs))
    	frames := runtime.CallersFrames(pcs)
    	for {
    		frame, more := frames.Next()
    		if frame.Function != "" {
    			m[frame.Function] = frame.Line
    		}
    		if !more {
    			break
    		}
    	}
    
    	var seen []string
    	for k := range m {
    		seen = append(seen, k)
    	}
    	t.Logf("functions seen: %s", strings.Join(seen, " "))
    
    	var f3Line int
    	if pan {
    		f3Line = 24
    	} else {
    		f3Line = 27
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 21:36:31 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  9. src/runtime/panic.go

    // exits in order to run the appropriate defer calls. A cheaper way (which we call
    // open-coded defers) is used for functions in which no defer statements occur in
    // loops. In that case, we simply store the defer function/arg information into
    // specific stack slots at the point of each defer statement, as well as setting a
    // bit in a bitmask. At each function exit, we add inline code to directly make
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  10. src/text/template/funcs.go

    // unwrap them.
    //
    // When template execution invokes a function with an argument list, that list
    // must be assignable to the function's parameter types. Functions meant to
    // apply to arguments of arbitrary type can use parameters of type interface{} or
    // of type [reflect.Value]. Similarly, functions meant to return a result of arbitrary
    // type can return interface{} or [reflect.Value].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 20.9K bytes
    - Viewed (0)
Back to top