Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for weighted (0.26 sec)

  1. api/openapi-spec/v3/apis__batch__v1_openapi.json

              },
              "weight": {
                "default": 0,
                "description": "Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.",
                "format": "int32",
                "type": "integer"
              }
            },
            "required": [
              "weight",
              "preference"
            ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  2. pkg/apis/core/v1/zz_generated.conversion.go

    }
    
    func autoConvert_v1_PreferredSchedulingTerm_To_core_PreferredSchedulingTerm(in *v1.PreferredSchedulingTerm, out *core.PreferredSchedulingTerm, s conversion.Scope) error {
    	out.Weight = in.Weight
    	if err := Convert_v1_NodeSelectorTerm_To_core_NodeSelectorTerm(&in.Preference, &out.Preference, s); err != nil {
    		return err
    	}
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  3. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	unknownFields protoimpl.UnknownFields
    
    	// Sets pod scheduling weight for amd64 arch
    	Amd64 uint32 `protobuf:"varint,1,opt,name=amd64,proto3" json:"amd64,omitempty"`
    	// Sets pod scheduling weight for ppc64le arch.
    	Ppc64Le uint32 `protobuf:"varint,2,opt,name=ppc64le,proto3" json:"ppc64le,omitempty"`
    	// Sets pod scheduling weight for s390x arch.
    	S390X uint32 `protobuf:"varint,3,opt,name=s390x,proto3" json:"s390x,omitempty"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.23.md

    - Introduce `v1beta3` API for scheduler. This version 
      - increases the weight of user specifiable priorities.
      The weights of following priority plugins are increased
        - `TaintTolerations` to 3 - as leveraging node tainting to group nodes in the cluster is becoming a widely-adopted practice
        - `NodeAffinity` to 2
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 28 21:06:52 UTC 2023
    - 424.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux.go

    }
    
    type Nhmsg struct {
    	Family   uint8
    	Scope    uint8
    	Protocol uint8
    	Resvd    uint8
    	Flags    uint32
    }
    
    type NexthopGrp struct {
    	Id     uint32
    	Weight uint8
    	Resvd1 uint8
    	Resvd2 uint16
    }
    
    const (
    	NHA_UNSPEC     = 0x0
    	NHA_ID         = 0x1
    	NHA_GROUP      = 0x2
    	NHA_GROUP_TYPE = 0x3
    	NHA_BLACKHOLE  = 0x4
    	NHA_OIF        = 0x5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.22.md

    - The deprecated flag `--hard-pod-affinity-symmetric-weight` and `--scheduler-name` have been removed from `kube-scheduler`. Use `ComponentConfig` instead to configure those parameters. ([#102805](https://github.com/kubernetes/kubernetes/pull/102805), [@ahg-g](https://github.com/ahg-g))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 13 12:43:45 UTC 2022
    - 454.1K bytes
    - Viewed (0)
  7. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    t[e].push(n):t[e]=[t[e],n]}}),t}jp.exports=La});var ln=v((u3,Wp)=>{l();var Yr=ge(),zp=/\s*!important\s*$/i,TS={"box-flex":!0,"box-flex-group":!0,"column-count":!0,flex:!0,"flex-grow":!0,"flex-positive":!0,"flex-shrink":!0,"flex-negative":!0,"font-weight":!0,"line-clamp":!0,"line-height":!0,opacity:!0,order:!0,orphans:!0,"tab-size":!0,widows:!0,"z-index":!0,zoom:!0,"fill-opacity":!0,"stroke-dashoffset":!0,"stroke-opacity":!0,"stroke-width":!0};function PS(i){return i.replace(/([A-Z])/g,"-$1").rep...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
  8. doc/go_spec.html

    repeating the previous list.  The number of identifiers must be equal
    to the number of expressions in the previous list.
    Together with the <a href="#Iota"><code>iota</code> constant generator</a>
    this mechanism permits light-weight declaration of sequential values:
    </p>
    
    <pre>
    const (
    	Sunday = iota
    	Monday
    	Tuesday
    	Wednesday
    	Thursday
    	Friday
    	Partyday
    	numberOfDays  // this constant is not exported
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
Back to top