Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 188 for biases (0.11 sec)

  1. src/cmd/vendor/golang.org/x/tools/internal/analysisinternal/analysis.go

    		end = start + token.Pos(width)
    	}
    	return end
    }
    
    func ZeroValue(f *ast.File, pkg *types.Package, typ types.Type) ast.Expr {
    	// TODO(adonovan): think about generics, and also generic aliases.
    	under := aliases.Unalias(typ)
    	// Don't call Underlying unconditionally: although it removes
    	// Named and Alias, it also removes TypeParam.
    	if n, ok := under.(*types.Named); ok {
    		under = n.Underlying()
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/arch/arch.go

    	for i, s := range obj.Anames {
    		instructions[s] = obj.As(i)
    	}
    	for i, s := range x86.Anames {
    		if obj.As(i) >= obj.A_ARCHSPECIFIC {
    			instructions[s] = obj.As(i) + obj.ABaseAMD64
    		}
    	}
    	// Annoying aliases.
    	instructions["JA"] = x86.AJHI   /* alternate */
    	instructions["JAE"] = x86.AJCC  /* alternate */
    	instructions["JB"] = x86.AJCS   /* alternate */
    	instructions["JBE"] = x86.AJLS  /* alternate */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 21 06:51:28 UTC 2023
    - 21.3K bytes
    - Viewed (0)
  3. maven-model-builder/src/test/java/org/apache/maven/model/interpolation/AbstractModelInterpolatorTest.java

            cal.setTimeZone(MavenBuildTimestamp.DEFAULT_BUILD_TIME_ZONE);
            cal.set(Calendar.HOUR, 12);
            cal.set(Calendar.AM_PM, Calendar.AM);
    
            // just to make sure all the bases are covered...
            cal.set(Calendar.HOUR_OF_DAY, 0);
            cal.set(Calendar.MINUTE, 16);
            cal.set(Calendar.SECOND, 0);
            cal.set(Calendar.YEAR, 1976);
            cal.set(Calendar.MONTH, Calendar.NOVEMBER);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/maintenance/AdminMaintenanceAction.java

        //
        private static final Logger logger = LogManager.getLogger(AdminMaintenanceAction.class);
    
        private static final String[] CAT_NAMES =
                { "aliases", "allocation", "count", "fielddata", "health", "indices", "master", "nodeattrs", "nodes", "pending_tasks",
                        "plugins", "recovery", "repositories", "thread_pool", "shards", "segments", "snapshots", "templates" };
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 14K bytes
    - Viewed (0)
  5. pkg/config/mesh/mesh_test.go

    			t.Fatalf("Changed before and after. Expected %v, got %v", orig, after)
    		}
    	})
    }
    
    func TestProxyConfigMerge(t *testing.T) {
    	cases := []struct {
    		name    string
    		base    string
    		overlay string
    		result  string
    	}{
    		{
    			name: "disabled then enabled",
    			base: `
    proxyHeaders:
      requestId:
        disabled: true`,
    			overlay: `
    proxyHeaders:
      requestId:
        disabled: false`,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/analysis/resource_alias_analysis.cc

        Value resource) const {
      assert(!IsUnknownResource(resource) && "Unknown resource was queried");
      llvm::SmallSetVector<Value, 8> aliases;
      for (int64_t id : GetResourceUniqueIds(resource)) {
        const llvm::SmallSetVector<Value, 8>& resources_aliasing_id =
            GetUniqueIdResources(id);
        aliases.insert(resources_aliasing_id.begin(), resources_aliasing_id.end());
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/tf_tfl_translate.cc

      // TODO(antiagainst): We are pulling in multiple transformations as follows.
      // Each transformation has its own set of command-line options; options of one
      // transformation can essentially be aliases to another. For example, the
      // -tfl-annotate-inputs has -tfl-input-arrays, -tfl-input-data-types, and
      // -tfl-input-shapes, which are the same as -graphdef-to-mlir transformation's
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 14K bytes
    - Viewed (0)
  8. istioctl/pkg/tag/tag.go

    func buildDeleteTagConfirmation(tag string, taggedNamespaces []string) string {
    	var sb strings.Builder
    	base := fmt.Sprintf("Caution, found %d namespace(s) still injected by tag %q:", len(taggedNamespaces), tag)
    	sb.WriteString(base)
    	for _, ns := range taggedNamespaces {
    		sb.WriteString(" " + ns)
    	}
    	sb.WriteString("\nProceed with operation? [y/N]")
    
    	return sb.String()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types/fmt.go

    		// suffix embedded directly in their Name. Trim this off for
    		// non-fmtTypeID modes.
    		sym := t.Sym()
    		if mode != fmtTypeID {
    			base, _ := SplitVargenSuffix(sym.Name)
    			if len(base) < len(sym.Name) {
    				sym = &Sym{Pkg: sym.Pkg, Name: base}
    			}
    		}
    		sconv2(b, sym, verb, mode)
    		return
    	}
    
    	if int(t.Kind()) < len(BasicTypeNames) && BasicTypeNames[t.Kind()] != "" {
    		var name string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 15:41:17 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/cmd/phases/workflow/runner.go

    }
    
    // NewRunner return a new runner for composable kubeadm workflows.
    func NewRunner() *Runner {
    	return &Runner{
    		Phases: []Phase{},
    	}
    }
    
    // AppendPhase adds the given phase to the ordered sequence of phases managed by the runner.
    func (e *Runner) AppendPhase(t Phase) {
    	e.Phases = append(e.Phases, t)
    }
    
    // computePhaseRunFlags return a map defining which phase should be run and which not.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 21 05:35:15 UTC 2022
    - 16K bytes
    - Viewed (0)
Back to top