Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of about 10,000 for aN (0.05 sec)

  1. tensorflow/compiler/mlir/lite/transforms/passes.h

    std::unique_ptr<OperationPass<func::FuncOp>> CreateLegalizeTFPass();
    
    // Creates an instance of the TensorFlow Lite dialect Optimize pass.
    std::unique_ptr<OperationPass<func::FuncOp>> CreateOptimizePass(
        bool enable_canonicalization, bool disable_fuse_mul_and_fc = false);
    std::unique_ptr<OperationPass<func::FuncOp>> CreateOptimizePass();
    
    // Creates an instance of the Tensorflow Lite batch matmul Optimize pass.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 07 21:29:34 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/caching/CachingDisabledReasonCategory.java

        /**
         * One of the work's inputs is not cacheable.
         *
         * Reasons for non-cacheable inputs:
         * <ul>
         *     <li>some type used as an input is loaded via an unknown classloader,</li>
         *     <li>a Java lambda was used as an input,</li>
         *     <li>an input is not tracked.</li>
         * </ul>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  3. guava/src/com/google/common/graph/Network.java

     * do not need to mutate a network (e.g. if you write a method than runs a read-only algorithm on
     * the network), you should use the non-mutating {@link Network} interface, or an {@link
     * ImmutableNetwork}.
     *
     * <p>You can create an immutable copy of an existing {@code Network} using {@link
     * ImmutableNetwork#copyOf(Network)}:
     *
     * <pre>{@code
     * ImmutableNetwork<Integer, MyEdge> immutableGraph = ImmutableNetwork.copyOf(network);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  4. src/go/scanner/errors.go

    	}
    	return e.Msg
    }
    
    // ErrorList is a list of *Errors.
    // The zero value for an ErrorList is an empty ErrorList ready to use.
    type ErrorList []*Error
    
    // Add adds an [Error] with given position and error message to an [ErrorList].
    func (p *ErrorList) Add(pos token.Position, msg string) {
    	*p = append(*p, &Error{pos, msg})
    }
    
    // Reset resets an [ErrorList] to no errors.
    func (p *ErrorList) Reset() { *p = (*p)[0:0] }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 3K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/build/BuildStateRegistry.java

         */
        void finalizeIncludedBuilds();
    
        /**
         * Creates an included build. An included build is-a nested build whose projects and outputs are treated as part of the composite build.
         */
        IncludedBuildState addIncludedBuild(BuildDefinition buildDefinition);
    
        /**
         * Creates an included build. An included build is-a nested build whose projects and outputs are treated as part of the composite build.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:19 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/reflectdata/helpers.go

    }
    
    // concreteRType asserts that typ is not an interface type, and
    // returns an expression that yields the *runtime._type value
    // representing typ.
    func concreteRType(pos src.XPos, typ *types.Type) ir.Node {
    	base.AssertfAt(!typ.IsInterface(), pos, "want non-interface type, have %v", typ)
    	return TypePtrAt(pos, typ)
    }
    
    // AppendElemRType asserts that n is an "append" operation, and
    // returns an expression that yields the *runtime._type value
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 04:50:32 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  7. src/go/types/api.go

    	// compatibility.
    	go116code  Code
    	go116start token.Pos
    	go116end   token.Pos
    }
    
    // Error returns an error string formatted as follows:
    // filename:line:column: message
    func (err Error) Error() string {
    	return fmt.Sprintf("%s: %s", err.Fset.Position(err.Pos), err.Msg)
    }
    
    // An ArgumentError holds an error associated with an argument index.
    type ArgumentError struct {
    	Index int
    	Err   error
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/api.go

    func (err Error) FullError() string {
    	return fmt.Sprintf("%s: %s", err.Pos, err.Full)
    }
    
    // An ArgumentError holds an error associated with an argument index.
    type ArgumentError struct {
    	Index int
    	Err   error
    }
    
    func (e *ArgumentError) Error() string { return e.Err.Error() }
    func (e *ArgumentError) Unwrap() error { return e.Err }
    
    // An Importer resolves import paths to Packages.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:48:53 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/ifreq_linux.go

    // Helpers for dealing with ifreq since it contains a union and thus requires a
    // lot of unsafe.Pointer casts to use properly.
    
    // An Ifreq is a type-safe wrapper around the raw ifreq struct. An Ifreq
    // contains an interface name and a union of arbitrary data which can be
    // accessed using the Ifreq's methods. To create an Ifreq, use the NewIfreq
    // function.
    //
    // Use the Name method to access the stored interface name. The union data
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  10. src/unsafe/unsafe.go

    //
    // Converting a Pointer to a uintptr produces the memory address of the value
    // pointed at, as an integer. The usual use for such a uintptr is to print it.
    //
    // Conversion of a uintptr back to Pointer is not valid in general.
    //
    // A uintptr is an integer, not a reference.
    // Converting a Pointer to a uintptr creates an integer value
    // with no pointer semantics.
    // Even if a uintptr holds the address of some object,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 19:45:20 UTC 2024
    - 12.1K bytes
    - Viewed (0)
Back to top