Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 150 for other_2 (0.2 sec)

  1. src/cmd/compile/internal/ssa/rewrite.go

    	case OpArg: // note: but not ArgIntReg
    		// amd64 always loads args from the stack unsigned.
    		// most other architectures load them sign/zero extended based on the type.
    		return x.Type.Size() == 4 && (x.Type.IsUnsigned() || x.Block.Func.Config.arch == "amd64")
    	case OpPhi, OpSelect0, OpSelect1:
    		// Phis can use each-other as an arguments, instead of tracking visited values,
    		// just limit recursion depth.
    		if depth <= 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  2. src/go/printer/testdata/parser.go

    package parser
    
    import (
    	"fmt"
    	"go/ast"
    	"go/scanner"
    	"go/token"
    )
    
    // The mode parameter to the Parse* functions is a set of flags (or 0).
    // They control the amount of source code parsed and other optional
    // parser functionality.
    const (
    	PackageClauseOnly uint = 1 << iota // parsing stops after package clause
    	ImportsOnly                        // parsing stops after import declarations
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  3. pkg/controller/daemon/daemon_controller.go

    			dsc.enqueueDaemonSet(ds)
    		}
    	}
    }
    
    // shouldIgnoreNodeUpdate returns true if Node labels and taints have not changed, otherwise returns false.
    // If other calling functions need to use other properties of Node, shouldIgnoreNodeUpdate needs to be updated.
    func shouldIgnoreNodeUpdate(oldNode, curNode v1.Node) bool {
    	return apiequality.Semantic.DeepEqual(oldNode.Labels, curNode.Labels) &&
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/deadness_analysis.cc

    // the same root frame are placed adjacent to each other.  This grouping enables
    // processing the graph per root frame at a time and guarantees that when a root
    // frame is being processed, nodes in the downstream frames have not yet been
    // processed.  This property is important because we need to process an entire
    // frame to know whether the optimistic mode converges or not.  In other words,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/regalloc.go

    					if countRegs(mask) == 1 && mask&^s.used != 0 {
    						args[i.idx] = s.allocValToReg(v.Args[i.idx], mask, true, v.Pos)
    						// If the input is in other registers that will be clobbered by v,
    						// or the input is dead, free the registers. This may make room
    						// for other inputs.
    						oldregs := s.values[v.Args[i.idx].ID].regs
    						if oldregs&^regspec.clobbers == 0 || !s.liveAfterCurrentInstruction(v.Args[i.idx]) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  6. src/runtime/mgcpacer.go

    	// sweepDistMinTrigger is the minimum trigger to ensure a minimum
    	// sweep distance.
    	//
    	// This bound is also special because it applies to both the trigger
    	// *and* the goal (all other trigger bounds must be based *on* the goal).
    	//
    	// It is computed ahead of time, at commit time. The theory is that,
    	// absent a sudden change to a parameter like gcPercent, the trigger
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    ### `-tf-optimize`
    
    _Optimize TensorFlow module_
    
    ### `-tf-order-by-dialect`
    
    _Reorders ops so ops of the same dialect are next to each other._
    
    Performs a reordering of ops so that
      (a) ops of the same dialect are next to each other
      (b) order within a dialect is preserved
    .
    For example, this would transform
      %a = "x.f"()
      %b = "y.f"(%a)
      %c = "x.f"(%a)
    to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  8. src/crypto/x509/x509.go

    	return "x509: invalid signature: parent certificate cannot sign this kind of certificate"
    }
    
    func (c *Certificate) Equal(other *Certificate) bool {
    	if c == nil || other == nil {
    		return c == other
    	}
    	return bytes.Equal(c.Raw, other.Raw)
    }
    
    func (c *Certificate) hasSANExtension() bool {
    	return oidInExtensions(oidExtensionSubjectAltName, c.Extensions)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  9. cmd/erasure-object.go

    	if !dstOpts.NoAuditLog {
    		auditObjectErasureSet(ctx, dstObject, &er)
    	}
    
    	// This call shouldn't be used for anything other than metadata updates or adding self referential versions.
    	if !srcInfo.metadataOnly {
    		return oi, NotImplemented{}
    	}
    
    	if !dstOpts.NoLock {
    		lk := er.NewNSLock(dstBucket, dstObject)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  10. src/go/types/expr.go

    	// mayConvert reports whether the operands x and y may
    	// possibly have matching types after converting one
    	// untyped operand to the type of the other.
    	// If mayConvert returns true, we try to convert the
    	// operands to each other's types, and if that fails
    	// we report a conversion failure.
    	// If mayConvert returns false, we continue without an
    	// attempt at conversion, and if the operand types are
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
Back to top