Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 145 for biases (0.17 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. pkg/spiffe/spiffe.go

    	uri, err := genSpiffeURI(td, ns, serviceAccount)
    	if err != nil {
    		spiffeLog.Debug(err.Error())
    	}
    	return uri
    }
    
    // ExpandWithTrustDomains expands a given spiffe identities, plus a list of trust domain aliases.
    // We ensure the returned list does not contain duplicates; the original input is always retained.
    // For example,
    // ExpandWithTrustDomains({"spiffe://td1/ns/def/sa/def"}, {"td1", "td2"}) returns
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/copylock/copylock.go

    	"golang.org/x/tools/go/analysis/passes/inspect"
    	"golang.org/x/tools/go/analysis/passes/internal/analysisutil"
    	"golang.org/x/tools/go/ast/astutil"
    	"golang.org/x/tools/go/ast/inspector"
    	"golang.org/x/tools/internal/aliases"
    	"golang.org/x/tools/internal/typeparams"
    )
    
    const Doc = `check for locks erroneously passed by value
    
    Inadvertently copying a value containing a lock, such as sync.Mutex or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  9. src/mdo/reader-stax.vm

    #set( $aliases = { } )
    #set( $flats = { } )
    #foreach( $class in $model.allClasses )
      #foreach ( $field in $class.getFields($version) )
        #set ( $fieldTagName = $Helper.xmlFieldMetadata( $field ).tagName )
        #if ( ! $fieldTagName )
          #set ( $fieldTagName = $field.name )
        #end
        #if ( $field.alias )
          #set ( $dummy = $aliases.put( $field.alias, $fieldTagName ) )
        #end
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  10. pkg/kube/inject/inject.go

    	RawTemplates RawTemplates `json:"templates"`
    
    	// Aliases defines a translation of a name to inject template. For example, `sidecar: [proxy,init]` could allow
    	// referencing two templates, "proxy" and "init" by a single name, "sidecar".
    	// Expansion is not recursive.
    	Aliases map[string][]string `json:"aliases"`
    
    	// NeverInjectSelector: Refuses the injection on pods whose labels match this selector.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 28.8K bytes
    - Viewed (0)
Back to top