Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 198 for biases (0.32 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. 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)
  4. 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)
  5. 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)
  6. src/cmd/vendor/github.com/google/pprof/internal/driver/fetch.go

    		sources = append(sources, profileSource{
    			addr:   src,
    			source: s,
    		})
    	}
    
    	bases := make([]profileSource, 0, len(s.Base))
    	for _, src := range s.Base {
    		bases = append(bases, profileSource{
    			addr:   src,
    			source: s,
    		})
    	}
    
    	p, pbase, m, mbase, save, err := grabSourcesAndBases(sources, bases, o.Fetch, o.Obj, o.UI, o.HTTPTransport)
    	if err != nil {
    		return nil, err
    	}
    
    	if pbase != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 19K bytes
    - Viewed (0)
  7. pilot/pkg/xds/workload.go

    		// TODO(@hzxuzhonghu): calculate removed with aliases in `AddressInformation`
    		aliases := addr.Aliases()
    		removed.DeleteAll(aliases...)
    		n := addr.ResourceName()
    		have.Insert(n)
    		haveAliases.InsertAll(aliases...)
    		switch w.TypeUrl {
    		case v3.WorkloadType:
    			if addr.GetWorkload() != nil {
    				resources = append(resources, &discovery.Resource{
    					Name:     n,
    					Aliases:  aliases,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 14:14:30 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  8. analysis/analysis-api-standalone/analysis-api-fir-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/declarations/KotlinStandaloneFirDirectInheritorsProvider.kt

            includeLocalInheritors: Boolean,
        ): Iterable<KtClassOrObject> {
            val classId = ktClass.getClassId() ?: return emptyList()
    
            val aliases = mutableSetOf(classId.shortClassName)
            calculateAliases(classId.shortClassName, aliases)
    
            val possibleInheritors = aliases.flatMap { standaloneDeclarationProviderFactory.getDirectInheritorCandidates(it) }
    
            if (possibleInheritors.isEmpty()) {
                return emptyList()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 6K bytes
    - Viewed (0)
  9. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/scopes/KtScope.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.7K bytes
    - Viewed (0)
  10. cmd/kube-controller-manager/app/core.go

    	defaultNodeMaskCIDRIPv6 = 64
    )
    
    func newServiceLBControllerDescriptor() *ControllerDescriptor {
    	return &ControllerDescriptor{
    		name:                      cpnames.ServiceLBController,
    		aliases:                   []string{"service"},
    		initFunc:                  startServiceLBController,
    		isCloudProviderController: true,
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 39K bytes
    - Viewed (0)
Back to top