Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 78 for lendablePercent (0.46 sec)

  1. staging/src/k8s.io/api/flowcontrol/v1beta3/types_swagger_doc_generated.go

    	"lendablePercent":          "`lendablePercent` prescribes the fraction of the level's NominalCL that can be borrowed by other priority levels.  This value of this field must be between 0 and 100, inclusive, and it defaults to 0. The number of seats that other levels can borrow...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 01:00:06 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/flowcontrol/v1/types.go

    	// as this level's LendableConcurrencyLimit (LendableCL), is defined as follows.
    	//
    	// LendableCL(i) = round( NominalCL(i) * lendablePercent(i)/100.0 )
    	//
    	// +optional
    	LendablePercent *int32 `json:"lendablePercent,omitempty" protobuf:"varint,3,opt,name=lendablePercent"`
    
    	// `borrowingLimitPercent`, if present, configures a limit on how many
    	// seats this priority level can borrow from other priority levels.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/flowcontrol/v1beta2/types.go

    	// as this level's LendableConcurrencyLimit (LendableCL), is defined as follows.
    	//
    	// LendableCL(i) = round( NominalCL(i) * lendablePercent(i)/100.0 )
    	//
    	// +optional
    	LendablePercent *int32 `json:"lendablePercent,omitempty" protobuf:"varint,3,opt,name=lendablePercent"`
    
    	// `borrowingLimitPercent`, if present, configures a limit on how many
    	// seats this priority level can borrow from other priority levels.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:27:57 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/flowcontrol/v1/zz_generated.deepcopy.go

    	*out = *in
    	if in.NominalConcurrencyShares != nil {
    		in, out := &in.NominalConcurrencyShares, &out.NominalConcurrencyShares
    		*out = new(int32)
    		**out = **in
    	}
    	if in.LendablePercent != nil {
    		in, out := &in.LendablePercent, &out.LendablePercent
    		*out = new(int32)
    		**out = **in
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExemptPriorityLevelConfiguration.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:41 UTC 2023
    - 17.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/flowcontrol/v1beta3/zz_generated.deepcopy.go

    	*out = *in
    	if in.NominalConcurrencyShares != nil {
    		in, out := &in.NominalConcurrencyShares, &out.NominalConcurrencyShares
    		*out = new(int32)
    		**out = **in
    	}
    	if in.LendablePercent != nil {
    		in, out := &in.LendablePercent, &out.LendablePercent
    		*out = new(int32)
    		**out = **in
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExemptPriorityLevelConfiguration.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 01:00:06 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/flowcontrol/v1beta1/zz_generated.deepcopy.go

    	*out = *in
    	if in.NominalConcurrencyShares != nil {
    		in, out := &in.NominalConcurrencyShares, &out.NominalConcurrencyShares
    		*out = new(int32)
    		**out = **in
    	}
    	if in.LendablePercent != nil {
    		in, out := &in.LendablePercent, &out.LendablePercent
    		*out = new(int32)
    		**out = **in
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExemptPriorityLevelConfiguration.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 01:00:06 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/flowcontrol/v1beta3/types.go

    	// as this level's LendableConcurrencyLimit (LendableCL), is defined as follows.
    	//
    	// LendableCL(i) = round( NominalCL(i) * lendablePercent(i)/100.0 )
    	//
    	// +optional
    	LendablePercent *int32 `json:"lendablePercent,omitempty" protobuf:"varint,3,opt,name=lendablePercent"`
    
    	// `borrowingLimitPercent`, if present, configures a limit on how many
    	// seats this priority level can borrow from other priority levels.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 31.9K bytes
    - Viewed (0)
  8. pkg/registry/flowcontrol/ensurer/prioritylevelconfiguration_test.go

    		copy := bootstrap.MandatoryPriorityLevelConfigurationExempt.DeepCopy()
    		copy.Annotations[flowcontrolv1.AutoUpdateAnnotationKey] = "true"
    		copy.Spec.Exempt.NominalConcurrencyShares = ptr.To[int32](10)
    		copy.Spec.Exempt.LendablePercent = ptr.To[int32](50)
    		return copy
    	}()
    
    	tests := []struct {
    		name      string
    		strategy  func() EnsureStrategy[*flowcontrolv1.PriorityLevelConfiguration]
    		current   *flowcontrolv1.PriorityLevelConfiguration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 14:34:53 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  9. pkg/apis/flowcontrol/v1beta3/zz_generated.conversion.go

    	out.NominalConcurrencyShares = (*int32)(unsafe.Pointer(in.NominalConcurrencyShares))
    	out.LendablePercent = (*int32)(unsafe.Pointer(in.LendablePercent))
    	return nil
    }
    
    // Convert_v1beta3_ExemptPriorityLevelConfiguration_To_flowcontrol_ExemptPriorityLevelConfiguration is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:41 UTC 2023
    - 53.1K bytes
    - Viewed (0)
  10. pkg/apis/flowcontrol/v1/zz_generated.conversion.go

    	out.NominalConcurrencyShares = (*int32)(unsafe.Pointer(in.NominalConcurrencyShares))
    	out.LendablePercent = (*int32)(unsafe.Pointer(in.LendablePercent))
    	return nil
    }
    
    // Convert_v1_ExemptPriorityLevelConfiguration_To_flowcontrol_ExemptPriorityLevelConfiguration is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:41 UTC 2023
    - 52.4K bytes
    - Viewed (0)
Back to top