Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 34 for biases (0.16 sec)

  1. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

            ModuleNode module = currentClass.getModule();
            if (module == null) {
                return false;
            }
            String name = type.getName();
    
            // check module node imports aliases
            // the while loop enables a check for inner classes which are not fully imported,
            // but visible as the surrounding class is imported and the inner class is public/protected static
            String pname;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  2. src/runtime/mgcscavenge.go

    func (s *scavengeIndex) grow(base, limit uintptr, sysStat *sysMemStat) uintptr {
    	// Update minHeapIdx. Note that even if there's no mapping work to do,
    	// we may still have a new, lower minimum heap address.
    	minHeapIdx := s.minHeapIdx.Load()
    	if baseIdx := uintptr(chunkIndex(base)); minHeapIdx == 0 || baseIdx < minHeapIdx {
    		s.minHeapIdx.Store(baseIdx)
    	}
    	return s.sysGrow(base, limit, sysStat)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    ### `-tf-region-control-flow-to-functional`
    
    _Transforms region-based control flow operations to their functional counterparts_
    
    This pass transforms region-based control flow operations in the TensorFlow
    dialect to their functional counterparts, i.e., `tf.IfRegion` is transformed to
    `tf.If` and `tf.WhileRegion` is transformed to `tf.While`.
    
    For example, this region-based operation
    
    ```mlir
        %0 = "tf.IfRegion"(%arg0) ( {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

    The lower bound `minval` is included in the range, while the upper bound
    `maxval` is excluded.
    
    The random integers are slightly biased unless `maxval - minval` is an exact
    power of two.  The bias is small for values of `maxval - minval` significantly
    smaller than the range of the output (either `2^32` or `2^64`).
      }];
    
      let arguments = (ins
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  5. src/runtime/mprof.go

    //
    // The profile for contention on sync.Mutex blames the caller of Unlock for the
    // amount of contention experienced by the callers of Lock which had to wait.
    // When there are several critical sections, this allows identifying which of
    // them is responsible.
    //
    // Matching that behavior for runtime-internal locks will require identifying
    // which Ms are blocked on the mutex. The semaphore-based implementation is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  6. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // TODO can this import the real mesh config API?
      google.protobuf.Value meshConfig = 36;
    
      // Configuration for the base component.
      BaseConfig base = 37;
    
      // Configuration for istiod-remote.
      IstiodRemoteConfig istiodRemote = 38;
    
      // Specifies the aliases for the Istio control plane revision. A MutatingWebhookConfiguration
      // is created for each alias.
      repeated string revisionTags = 39;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/syntax/parser.go

    func (p *parser) clearPragma() {
    	if p.pragma != nil {
    		p.pragh(p.pos(), p.scanner.blank, "", p.pragma)
    		p.pragma = nil
    	}
    }
    
    // updateBase sets the current position base to a new line base at pos.
    // The base's filename, line, and column values are extracted from text
    // which is positioned at (tline, tcol) (only needed for error messages).
    func (p *parser) updateBase(pos Pos, tline, tcol uint, text string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    			Name:                     "svc5",
    			Namespace:                "nsA",
    			Labels:                   nil,
    			ExportTo:                 nil,
    			LabelSelectors:           nil,
    			Aliases:                  nil,
    			ClusterExternalAddresses: nil,
    			ClusterExternalPorts:     nil,
    			K8sAttributes: model.K8sAttributes{
    				Type:         string(corev1.ServiceTypeExternalName),
    				ExternalName: "foo.co",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  9. cluster/gce/windows/k8s-node-setup.psm1

    # Get gateway ip string (the first address) based on pod cidr.
    # For Windows nodes the pod gateway IP address is the first address in the pod
    # CIDR for the host.
    function Get_Gateway_From_CIDR([string] $cidr) {
      $network=Get_NetworkDecimal_From_CIDR($cidr)
      $gateway=ConvertTo_DottedDecimalIP($network+1)
      return $gateway
    }
    
    # Get endpoint gateway ip string (the second address) based on pod cidr.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  10. src/go/parser/parser.go

    		},
    	}
    }
    
    func (p *parser) parsePointerType() *ast.StarExpr {
    	if p.trace {
    		defer un(trace(p, "PointerType"))
    	}
    
    	star := p.expect(token.MUL)
    	base := p.parseType()
    
    	return &ast.StarExpr{Star: star, X: base}
    }
    
    func (p *parser) parseDotsType() *ast.Ellipsis {
    	if p.trace {
    		defer un(trace(p, "DotsType"))
    	}
    
    	pos := p.expect(token.ELLIPSIS)
    	elt := p.parseType()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
Back to top