Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 569 for biases (0.12 sec)

  1. src/cmd/go/internal/base/base.go

    // Copyright 2017 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package base defines shared basic pieces of the go command,
    // in particular logging and the Command structure.
    package base
    
    import (
    	"context"
    	"flag"
    	"fmt"
    	"log"
    	"os"
    	"os/exec"
    	"reflect"
    	"strings"
    	"sync"
    
    	"cmd/go/internal/cfg"
    	"cmd/go/internal/str"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  2. docker/Dockerfile.base

    John Howard <******@****.***> 1715194251 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 18:50:51 UTC 2024
    - 1000 bytes
    - Viewed (0)
  3. pkg/ctrlz/assets/templates/layouts/base.html

    zirain <******@****.***> 1684861711 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  4. tests/integration/base.yaml

    John Howard <******@****.***> 1717194202 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 22:23:22 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/artifacts/VersionCatalog.java

         * <p>
         * Note: Returned aliases are normalized: '-', '_' and '.' have been replaced with '.'
         * </p>
         * @return the list of bundle aliases
         *
         * @since 7.1
         */
        List<String> getBundleAliases();
    
        /**
         * Returns the list of version aliases defined in this version catalog.
         * <p>
         * Note: Returned aliases are normalized: '-', '_' and '.' have been replaced with '.'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 25 20:59:29 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top