Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 27 of 27 for callableId (0.14 sec)

  1. src/cmd/vendor/golang.org/x/telemetry/package-lock.json

            "node": ">= 0.4"
          },
          "funding": {
            "url": "https://github.com/sponsors/ljharb"
          }
        },
        "node_modules/is-callable": {
          "version": "1.2.7",
          "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz",
          "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==",
          "dev": true,
          "engines": {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 156K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/cache/LocalCache.java

    import java.util.AbstractSet;
    import java.util.Collection;
    import java.util.Iterator;
    import java.util.Map;
    import java.util.NoSuchElementException;
    import java.util.Queue;
    import java.util.Set;
    import java.util.concurrent.Callable;
    import java.util.concurrent.ConcurrentLinkedQueue;
    import java.util.concurrent.ConcurrentMap;
    import java.util.concurrent.ExecutionException;
    import java.util.concurrent.TimeUnit;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  3. guava/src/com/google/common/cache/LocalCache.java

    import java.util.AbstractSet;
    import java.util.Collection;
    import java.util.Iterator;
    import java.util.Map;
    import java.util.NoSuchElementException;
    import java.util.Queue;
    import java.util.Set;
    import java.util.concurrent.Callable;
    import java.util.concurrent.ConcurrentLinkedQueue;
    import java.util.concurrent.ConcurrentMap;
    import java.util.concurrent.ExecutionException;
    import java.util.concurrent.TimeUnit;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  4. src/cmd/go/alldocs.go

    //		into a C archive file. The only callable symbols will be those
    //		functions exported using a cgo //export comment. Requires
    //		exactly one main package to be listed.
    //
    //	-buildmode=c-shared
    //		Build the listed main package, plus all packages it imports,
    //		into a C shared library. The only callable symbols will
    //		be those functions exported using a cgo //export comment.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

      // Analysis Hooks
      //===--------------------------------------------------------------------===//
    
      // Allow all call operations to be inlined.
      bool isLegalToInline(Operation* call, Operation* callable,
                           bool wouldBeCloned) const final {
        return true;
      }
      bool isLegalToInline(Operation* op, Region* dest, bool wouldBeCloned,
                           IRMapping&) const final {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  6. doc/go1.17_spec.html

    </pre>
    
    
    <h3 id="Method_expressions">Method expressions</h3>
    
    <p>
    If <code>M</code> is in the <a href="#Method_sets">method set</a> of type <code>T</code>,
    <code>T.M</code> is a function that is callable as a regular function
    with the same arguments as <code>M</code> prefixed by an additional
    argument that is the receiver of the method.
    </p>
    
    <pre class="ebnf">
    MethodExpr    = ReceiverType "." MethodName .
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  7. src/reflect/value.go

    	}
    	if safe && v.flag&flagRO != 0 {
    		// Do not allow access to unexported values via Interface,
    		// because they might be pointers that should not be
    		// writable or methods or function that should not be callable.
    		panic("reflect.Value.Interface: cannot return value obtained from unexported field or method")
    	}
    	if v.flag&flagMethod != 0 {
    		v = makeMethodValue("Interface", v)
    	}
    
    	if v.kind() == Interface {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
Back to top