Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 515 for biases (0.17 sec)

  1. RELEASE.md

        test your code with TF 1.1; ensure it raises no errors, and then upgrade to
        TF 1.2.
    *   RNNCells' variable names have been renamed for consistency with Keras
        layers. Specifically, the previous variable names "weights" and "biases"
        have been changed to "kernel" and "bias", respectively. This may cause
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/collections/ImmutableFilteredList.java

     * to keep track of which items are filtered out of the source list.
     */
    public class ImmutableFilteredList<T> extends AbstractList<T> {
    
        private final List<T> source;
        private final BitSet filter;
    
        private ImmutableFilteredList(List<T> source, BitSet filter) {
            this.source = source;
            this.filter = filter;
        }
    
        /**
         * Creates an {@code ImmutableFilteredList} which contains all the elements of {@code source}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  3. platforms/software/plugins-version-catalog/src/main/java/org/gradle/api/plugins/catalog/internal/TomlWriter.java

            }
            writeLn();
        }
    
        private void writeLibraries(DefaultVersionCatalog model) {
            List<String> aliases = model.getLibraryAliases();
            if (aliases.isEmpty()) {
                return;
            }
            writeTableHeader("libraries");
            for (String alias : aliases) {
                DependencyModel data = model.getDependencyData(alias);
                String group = data.getGroup();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/typesinternal/recv.go

    import (
    	"go/types"
    
    	"golang.org/x/tools/internal/aliases"
    )
    
    // ReceiverNamed returns the named type (if any) associated with the
    // type of recv, which may be of the form N or *N, or aliases thereof.
    // It also reports whether a Pointer was present.
    func ReceiverNamed(recv *types.Var) (isPtr bool, named *types.Named) {
    	t := recv.Type()
    	if ptr, ok := aliases.Unalias(t).(*types.Pointer); ok {
    		isPtr = true
    		t = ptr.Elem()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/platform/internal/Architectures.java

        }
    
        public static class KnownArchitecture {
            private final String canonicalName;
            private final List<String> aliases;
    
            public KnownArchitecture(String canonicalName, String... aliases) {
                this.canonicalName = canonicalName;
                this.aliases = Arrays.asList(aliases);
            }
    
            public String getCanonicalName() {
                return canonicalName;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  6. pilot/pkg/security/trustdomain/bundle.go

    type Bundle struct {
    	// Contain the local trust domain and its aliases.
    	// The trust domain corresponds to the trust root of a system.
    	// Refer to [SPIFFE-ID](https://github.com/spiffe/spiffe/blob/master/standards/SPIFFE-ID.md#21-trust-domain)
    	// The trust domain aliases represent the aliases of `trust_domain`.
    	// For example, if we have
    	// trustDomain: td1, trustDomainAliases: ["td2", "td3"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 23 15:48:01 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/PluginDslSupport.groovy

            withPlugins([(id): null])
        }
    
        void withPluginAlias(String alias) {
            withPlugins([:], [(alias): null])
        }
    
        void withPluginAliases(List<String> aliases = []) {
            withPlugins([:], aliases.collectEntries { [it, null] })
        }
    
        void withPluginsBlockContents(String block) {
            def text = buildFile.text
            int idx = text.indexOf('allprojects')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/scopes/KtTypeScope.kt

        /**
         * Return a sequence of [KaClassifierSymbol] which current scope contain if classifier name matches [nameFilter]. The sequence includes:
         * nested classes, inner classes, nested type aliases for the class scope, and top-level classes and top-level type aliases for file scope.
         *
         * This function needs to retrieve a set of all possible names before processing the scope.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/platform/internal/ArchitecturesTest.groovy

    import spock.lang.Specification
    
    
    class ArchitecturesTest extends Specification {
        def "test 32-bit aliases"() {
            expect:
            Architectures.forInput(architecture).isI386()
            where:
            architecture << [ "x86", "i386", "ia-32", "i686" ]
        }
    
        def "test 64-bit aliases"() {
            expect:
            Architectures.forInput(architecture).isAmd64()
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/initialization/dsl/VersionCatalogBuilder.java

        /**
         * Declares a bundle of dependencies. A bundle consists of a name for the bundle,
         * and a list of aliases. The aliases must correspond to aliases defined via
         * the {@code library()} methods.
         *
         * @param alias the alias of the bundle
         * @param aliases the aliases of the dependencies included in the bundle
         * @see #library(String, String, String)
         * @see #library(String, String)
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 25 20:59:29 UTC 2022
    - 6.2K bytes
    - Viewed (0)
Back to top