Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 515 for biases (0.39 sec)

  1. subprojects/core/src/testFixtures/groovy/org/gradle/api/internal/catalog/problems/VersionCatalogErrorMessages.groovy

            }
        }
    
        static class NameClash extends InCatalog<NameClash> {
            private List<String> aliases = []
            private String getterName
            private String kind = 'library aliases'
    
            NameClash inConflict(String... aliases) {
                Collections.addAll(this.aliases, aliases)
                this
            }
    
            NameClash getterName(String getter) {
                this.getterName = getter
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 09 14:11:31 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  2. cmd/preferredimports/preferredimports.go

    var (
    	importAliases = flag.String("import-aliases", "hack/.import-aliases", "json file with import aliases")
    	confirm       = flag.Bool("confirm", false, "update file with the preferred aliases for imports")
    	regex         = flag.String("include-path", "(test/e2e/|test/e2e_node)", "only files with paths matching this regex is touched")
    	isTerminal    = term.IsTerminal(int(os.Stdout.Fd()))
    	logPrefix     = ""
    	aliases       = map[*regexp.Regexp]string{}
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:44 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  3. cmd/kube-controller-manager/app/apps.go

    	"k8s.io/kubernetes/pkg/controller/statefulset"
    )
    
    func newDaemonSetControllerDescriptor() *ControllerDescriptor {
    	return &ControllerDescriptor{
    		name:     names.DaemonSetController,
    		aliases:  []string{"daemonset"},
    		initFunc: startDaemonSetController,
    	}
    }
    func startDaemonSetController(ctx context.Context, controllerContext ControllerContext, controllerName string) (controller.Interface, bool, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/MultipleCandidateMatcher.java

                // Because they are EXTRA attributes, we consider that a
                // candidate which does NOT provide this value is a better match
                int candidateCount = candidateAttributeSets.length;
                BitSet any = new BitSet(candidateCount);
                for (int c = 0; c < candidateCount; c++) {
                    ImmutableAttributes candidateAttributeSet = candidateAttributeSets[c];
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 19.4K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. guava-gwt/src/com/google/common/base/Base.gwt.xml

    David P. Baker <******@****.***> 1641482883 -0800
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jan 06 15:30:58 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  9. tools/docker-builder/crane.go

    					args.Files[dest] = translated
    				}
    				bases.Insert(args.Base)
    				b.Args = append(b.Args, args)
    			}
    			builds = append(builds, b)
    		}
    	}
    
    	// Warm up our base images while we are building everything. This isn't pulling them -- we actually
    	// never pull them -- but it is pulling the config file from the remote registry.
    	builder.WarmBase(ctx, a.Architectures, sets.SortedList(bases)...)
    
    	// Build all dependencies
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 01:07:39 UTC 2023
    - 6K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/catalog/LibrariesSourceGenerator.java

            boolean isProvider = classNode.isAlsoProvider();
            String interfaces = isProvider ? " implements BundleNotationSupplier" : "";
            String bundleClassName = getClassName(classNode);
            List<String> aliases = classNode.aliases
                .stream()
                .sorted()
                .collect(toList());
            writeLn("public static class " + bundleClassName + " extends BundleFactory " + interfaces + "{");
            indent(() -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 36K bytes
    - Viewed (0)
Back to top