Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 60 for retract (0.19 sec)

  1. src/cmd/link/internal/ppc64/asm.go

    	// Masks to match opcodes
    	MASK_PLD_PFX  = 0xfff70000
    	MASK_PLD_SFX  = 0xfc1f0000 // Also checks RA = 0 if check value is OP_PLD_SFX.
    	MASK_PLD_RT   = 0x03e00000 // Extract RT from the pld suffix.
    	MASK_OP_LD    = 0xfc000003
    	MASK_OP_ADDIS = 0xfc000000
    )
    
    // Generate a stub to call between TOC and NOTOC functions. See genpltstub for more details about calling stubs.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  2. src/runtime/traceback.go

    	// Check and remove package qualifier.
    	n := len("runtime.")
    	if len(name) <= n || name[:n] != "runtime." {
    		return false
    	}
    	name = name[n:]
    	rcvr := ""
    
    	// Extract receiver type, if any.
    	// For example, runtime.(*Func).Entry
    	i := len(name) - 1
    	for i >= 0 && name[i] != '.' {
    		i--
    	}
    	if i >= 0 {
    		rcvr = name[:i]
    		name = name[i+1:]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  3. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

        // The expressions help a lot, but we need a clean to pick up a directory of POMs, automatically load
        // them into a resolver, create the expression to extract the data to validate the Model, and the URI
        // to validate the properties. We also need a way to navigate from the Tex specification documents to
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 93.2K bytes
    - Viewed (0)
  4. src/runtime/mbitmap.go

    	// gcmarkBits will be 8-byte aligned, so we don't have to
    	// worry about edge cases, irrelevant bits will simply be zero.
    	for i := uintptr(0); i < bytes; i += 8 {
    		// Extract 64 bits from the byte pointer and get a OnesCount.
    		// Note that the unsafe cast here doesn't preserve endianness,
    		// but that's OK. We only care about how many bits are 1, not
    		// about the order we discover them in.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  5. pkg/proxy/ipvs/proxier.go

    	serviceNoLocalEndpointsExternal sets.Set[string]
    	// lbNoNodeAccessIPPortProtocolEntries represents the set of loadBalancers IP + Port + Protocol that should not be accessible from K8s nodes
    	// We cannot directly restrict LB access from node using LoadBalancerSourceRanges, we need to install
    	// additional iptables rules.
    	// (ref: https://github.com/kubernetes/kubernetes/issues/119656)
    	lbNoNodeAccessIPPortProtocolEntries []*utilipset.Entry
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/conversion.go

    		if !f {
    			continue
    		}
    		if classInfo.disableRouteGeneration {
    			// We found it, but don't want to handle this class
    			continue
    		}
    
    		servers := []*istio.Server{}
    
    		// Extract the addresses. A gateway will bind to a specific Service
    		gatewayServices, err := extractGatewayServices(r.GatewayResources, kgw, obj, classInfo)
    		if len(gatewayServices) == 0 && err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

        DefaultValuedOptionalAttr<BoolAttr, "true">:$use_inter_op_parallelism
      );
    
      let results = (outs
        Variadic<TF_Tensor>:$components
      );
    }
    
    // Manually defined to restrict result type to `I1Tensor`.
    def TF_ToBoolOp : TF_Op<"ToBool", [DeclareOpInterfaceMethods<InferTypeOpInterface>, Pure]> {
      let summary = "Converts a tensor to a scalar predicate.";
    
      let description = [{
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modget/get.go

    	}
    	if modOnly != nil {
    		mod = modOnly.Mod
    	}
    	return pkgMods, mod, err
    }
    
    // checkAllowedOr is like modload.CheckAllowed, but it always allows the requested
    // and current versions (even if they are retracted or otherwise excluded).
    func (r *resolver) checkAllowedOr(requested string, selected func(string) string) modload.AllowedFunc {
    	return func(ctx context.Context, m module.Version) error {
    		if m.Version == requested {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

      //   1. SC forward pass ("forward_ops")
      //   2. TC forward/backward pass ("core_tput_ops")
      //   3. SC backward pass ("backward_ops")
      //   4. Loop counter updates ("non_tpu_ops")
      //
      // Next, extract the original conditional function which we'll use to
      // kick off the pre-loop pipelining steps.
      // are just the operands passed to the original WhileOp.
      func::FuncOp orig_cond_func = orig_while_op.cond_function();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    [[config_cache:not_yet_implemented:accessing_top_level_at_execution]]
    === Accessing top-level methods and variables of a build script at execution time
    
    A common approach to reuse logic and data in a build script is to extract repeating bits into top-level methods and variables.
    However, calling such methods at execution time is not currently supported if the configuration cache is enabled.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
Back to top