Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 57 for Option (0.12 sec)

  1. cluster/gce/gci/configure-helper.sh

    # $2 is the firewall action (LOG or REJECT).
    # $3 is the prefix for log output.
    # $4 is "!" to optionally invert the uid range.
    function gce-metadata-fw-helper {
      local -r command="$1"
      local action="$2"
      local -r prefix="$3"
      local -r invert="${4:-}"
    
      # Expand rule action to include relevant option flags.
      case "${action}" in
        LOG)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  2. cmd/admin-handlers.go

    }
    
    type serviceResult struct {
    	Action  madmin.ServiceAction `json:"action"`
    	DryRun  bool                 `json:"dryRun"`
    	Results []servicePeerResult  `json:"results,omitempty"`
    }
    
    // ServiceV2Handler - POST /minio/admin/v3/service?action={action}&type=2
    // ----------
    // Supports following actions:
    // - restart (restarts all the MinIO instances in a setup)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  3. pkg/scheduler/schedule_one_test.go

    	var wg sync.WaitGroup
    	wg.Add(2 * len(pods))
    	bindings := make(map[string]string)
    	client.PrependReactor("create", "pods", func(action clienttesting.Action) (bool, runtime.Object, error) {
    		if action.GetSubresource() != "binding" {
    			return false, nil, nil
    		}
    		binding := action.(clienttesting.CreateAction).GetObject().(*v1.Binding)
    		bindings[binding.Name] = binding.Target.Name
    		wg.Done()
    		return true, binding, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  4. cmd/object-handlers.go

    				return
    			}
    			event := evalActionFromLifecycle(ctx, *lc, rcfg, replcfg, objInfo)
    			if event.Action.Delete() {
    				// apply whatever the expiry rule is.
    				applyExpiryRule(event, lcEventSrc_s3GetObject, objInfo)
    				if !event.Action.DeleteRestored() {
    					// If the ILM action is not on restored object return error.
    					writeErrorResponse(ctx, w, errorCodes.ToAPIErr(ErrNoSuchKey), r.URL)
    					return
    				}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (AtomicOr(64|32|8)Variant      ...) => (LoweredAtomicOr(64|32|8)Variant      ...)
    
    // Write barrier.
    (WB ...) => (LoweredWB ...)
    
    // Publication barrier (0xe is ST option)
    (PubBarrier mem) => (DMB [0xe] mem)
    
    (PanicBounds [kind] x y mem) && boundsABI(kind) == 0 => (LoweredPanicBoundsA [kind] x y mem)
    (PanicBounds [kind] x y mem) && boundsABI(kind) == 1 => (LoweredPanicBoundsB [kind] x y mem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      const auto& graphdef = saved_model->meta_graph_def().graph_def();
      PopulateTfVersions(module.get(), graphdef.versions());
    
      GraphConstructorOptions options;
      options.allow_internal_ops = true;
      options.add_default_attributes = import_options.add_default_attributes;
      Graph graph(OpRegistry::Global());
    
      GraphDef preprocessed_graphdef(graphdef);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/arm64/asm7.go

    func (c *ctxt7) opldrr(p *obj.Prog, a obj.As, extension bool) uint32 {
    	OptionS := uint32(0x1a)
    	if extension {
    		OptionS = uint32(0) // option value and S value have been encoded into p.From.Offset.
    	}
    	switch a {
    	case AMOVD:
    		return OptionS<<10 | 0x3<<21 | 0x1f<<27
    	case AMOVW:
    		return OptionS<<10 | 0x5<<21 | 0x17<<27
    	case AMOVWU:
    		return OptionS<<10 | 0x3<<21 | 0x17<<27
    	case AMOVH:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  8. cmd/metrics-v2.go

    		for i := range globalScannerMetrics.actions {
    			action := lifecycle.Action(i)
    			v := globalScannerMetrics.lifetimeActions(action)
    			if v == 0 {
    				continue
    			}
    			metrics = append(metrics, MetricV2{
    				Description: MetricDescription{
    					Namespace: nodeMetricNamespace,
    					Subsystem: ilmSubsystem,
    					Name:      MetricName("action_count_" + toSnake(action.String())),
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  9. pkg/scheduler/internal/queue/scheduling_queue_test.go

    				fakeClock.Step(time.Second)
    			}
    
    			for _, action := range test.actions {
    				switch {
    				case action.podPopped != nil:
    					popPod(t, logger, q, action.podPopped)
    				case action.eventHappens != nil:
    					q.MoveAllToActiveOrBackoffQueue(logger, *action.eventHappens, nil, nil, nil)
    				case action.podEnqueued != nil:
    					err := q.AddUnschedulableIfNotPresent(logger, action.podEnqueued, q.SchedulingCycle())
    					if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  10. doc/go1.17_spec.html

    Term        = production_name | token [ "…" token ] | Group | Option | Repetition .
    Group       = "(" Expression ")" .
    Option      = "[" Expression "]" .
    Repetition  = "{" Expression "}" .
    </pre>
    
    <p>
    Productions are expressions constructed from terms and the following
    operators, in increasing precedence:
    </p>
    <pre class="grammar">
    |   alternation
    ()  grouping
    []  option (0 or 1 times)
    {}  repetition (0 to n times)
    </pre>
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
Back to top