Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,788 for Function1 (0.12 sec)

  1. src/cmd/cgo/doc.go

    C.sizeof_struct_stat.
    
    A C function may be declared in the Go file with a parameter type of
    the special name _GoString_. This function may be called with an
    ordinary Go string value. The string length, and a pointer to the
    string contents, may be accessed by calling the C functions
    
    	size_t _GoStringLen(_GoString_ s);
    	const char *_GoStringPtr(_GoString_ s);
    
    These functions are only available in the preamble, not in other C
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/initorder.go

    				d.pred.add(n)
    			}
    		}
    	}
    
    	var G, funcG []*graphNode // separate non-functions and functions
    	for _, n := range M {
    		if _, ok := n.obj.(*Func); ok {
    			funcG = append(funcG, n)
    		} else {
    			G = append(G, n)
    		}
    	}
    
    	// remove function nodes and collect remaining graph nodes in G
    	// (Mutually recursive functions may introduce cycles among themselves
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 22:06:51 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  3. src/go/types/initorder.go

    				d.pred.add(n)
    			}
    		}
    	}
    
    	var G, funcG []*graphNode // separate non-functions and functions
    	for _, n := range M {
    		if _, ok := n.obj.(*Func); ok {
    			funcG = append(funcG, n)
    		} else {
    			G = append(G, n)
    		}
    	}
    
    	// remove function nodes and collect remaining graph nodes in G
    	// (Mutually recursive functions may introduce cycles among themselves
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/grappler/grappler.h

    // Struct for Optimizer. Plugin authors must provide an optimize function.
    // Creation and deletion functions are optional.
    typedef struct TP_Optimizer {
      size_t struct_size;
      void* ext;  // reserved for future use
    
      // [Optional]
      // Create function for optimizer.
      void* (*create_func)();
    
      // Optimizer function for optimizer. The first param is an optimizer created
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 03 18:08:43 UTC 2022
    - 12.5K bytes
    - Viewed (0)
  5. src/runtime/symtab.go

    	// for non-Go code or fully inlined functions.
    	Func *Func
    
    	// Function is the package path-qualified function name of
    	// this call frame. If non-empty, this string uniquely
    	// identifies a single function in the program.
    	// This may be the empty string if not known.
    	// If Func is not nil then Function == Func.Name().
    	Function string
    
    	// File and Line are the file name and line number of the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  6. android/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)
  7. tensorflow/compiler/mlir/quantization/tensorflow/passes/unfreeze_constants.cc

      std::vector<TF::ConstOp> target_const_ops{};
    
      // TODO(b/254636388): Lift the assumption that there are no intializer
      // functions and avoid converting ConstOps inside initializer functions.
      for (auto func_op : module_op.getOps<func::FuncOp>()) {
        // Do not unfreeze constants under these functions.
        if (func_op.getSymName().contains("while_body")) continue;
        if (func_op.getSymName().contains("while_cond")) continue;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 16 15:04:53 UTC 2023
    - 14K bytes
    - Viewed (0)
  8. src/testing/quick/quick.go

    		config = &defaultConfig
    	}
    
    	x, xType, ok := functionAndType(f)
    	if !ok {
    		return SetupError("f is not a function")
    	}
    	y, yType, ok := functionAndType(g)
    	if !ok {
    		return SetupError("g is not a function")
    	}
    
    	if xType != yType {
    		return SetupError("functions have different types")
    	}
    
    	arguments := make([]reflect.Value, xType.NumIn())
    	rand := config.getRand()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:47 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  9. src/go/types/call.go

    	_ = len(genericArgs) > 0 && check.verifyVersionf(args[genericArgs[0]], go1_21, "implicitly instantiated function as argument")
    
    	// tparams holds the type parameters of the callee and generic function arguments, if any:
    	// the first n type parameters belong to the callee, followed by mi type parameters for each
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  10. src/internal/profile/encode.go

    		x := new(Location)
    		pp := m.(*Profile)
    		pp.Location = append(pp.Location, x)
    		return decodeMessage(b, x)
    	},
    	// repeated Function function = 5
    	func(b *buffer, m message) error {
    		x := new(Function)
    		pp := m.(*Profile)
    		pp.Function = append(pp.Function, x)
    		return decodeMessage(b, x)
    	},
    	// repeated string string_table = 6
    	func(b *buffer, m message) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 19:52:28 UTC 2023
    - 13.6K bytes
    - Viewed (0)
Back to top