Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for priority (0.2 sec)

  1. cmd/bucket-replication.go

    	var workers, failedWorkers int
    	priority := "auto"
    	maxWorkers := WorkerMaxLimit
    	if opts.Priority != "" {
    		priority = opts.Priority
    	}
    	if opts.MaxWorkers > 0 {
    		maxWorkers = opts.MaxWorkers
    	}
    	switch priority {
    	case "fast":
    		workers = WorkerMaxLimit
    		failedWorkers = MRFWorkerMaxLimit
    	case "slow":
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 01:09:56 GMT 2024
    - 112.2K bytes
    - Viewed (1)
  2. cni/pkg/iptables/iptables_linux.go

    		inpodMarkRule := netlink.NewRule()
    		inpodMarkRule.Family = family
    		inpodMarkRule.Table = RouteTableInbound
    		inpodMarkRule.Mark = InpodTProxyMark
    		inpodMarkRule.Mask = InpodTProxyMask
    		inpodMarkRule.Priority = 32764
    		rules = append(rules, inpodMarkRule)
    	}
    
    	for _, rule := range rules {
    		log.Debugf("Iterating netlink rule : %+v", rule)
    		if err := f(rule); err != nil {
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Tue Apr 30 22:24:38 GMT 2024
    - 3.3K bytes
    - Viewed (0)
  3. cmd/handler-api.go

    	t.mu.RLock()
    	defer t.mu.RUnlock()
    
    	if t.replicationPriority == "" {
    		return replicationPoolOpts{
    			Priority:   "auto",
    			MaxWorkers: WorkerMaxLimit,
    		}
    	}
    
    	return replicationPoolOpts{
    		Priority:   t.replicationPriority,
    		MaxWorkers: t.replicationMaxWorkers,
    	}
    }
    
    func (t *apiConfig) getTransitionWorkers() int {
    	t.mu.RLock()
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri May 03 20:08:20 GMT 2024
    - 10K bytes
    - Viewed (0)
  4. cmd/site-replication.go

    	})
    }
    
    func getPriorityHelper(replicationConfig replication.Config) int {
    	maxPrio := 0
    	for _, rule := range replicationConfig.Rules {
    		if rule.Priority > maxPrio {
    			maxPrio = rule.Priority
    		}
    	}
    
    	// leave some gaps in priority numbers for flexibility
    	return maxPrio + 10
    }
    
    // returns a slice with site names participating in site replciation but unspecified while adding
    // a new site.
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 01:09:56 GMT 2024
    - 184.2K bytes
    - Viewed (1)
  5. internal/bucket/lifecycle/lifecycle_test.go

    					StorageClass: "TIER-1",
    				},
    			},
    			{
    				ID:     "rule-2",
    				Status: "Enabled",
    				Filter: Filter{
    					tagSet: true,
    					Tag: Tag{
    						Key:   "priority",
    						Value: "low",
    					},
    				},
    				Transition: Transition{
    					Days:         TransitionDays(3),
    					StorageClass: "TIER-2",
    				},
    			},
    		},
    	}
    
    	now := time.Now().UTC()
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 01:11:10 GMT 2024
    - 53.2K bytes
    - Viewed (0)
  6. docs/en/docs/release-notes.md

        * `Query()`
        * `Header()`
        * `Cookie()`
        * `Body()`
        * `Form()`
        * `File()`
    
    * The new parameter fields are:
    
        * `default_factory`
        * `alias_priority`
        * `validation_alias`
        * `serialization_alias`
        * `discriminator`
        * `strict`
        * `multiple_of`
        * `allow_inf_nan`
        * `max_digits`
        * `decimal_places`
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Fri May 03 23:25:42 GMT 2024
    - 388.1K bytes
    - Viewed (1)
Back to top