Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 38 for lets (0.11 sec)

  1. CHANGELOG/CHANGELOG-1.8.md

    * Adds a new `kubeadm config` command that lets users tell `kubeadm upgrade` what kubeadm configuration to use and lets users view the current state. ([#50980](https://github.com/kubernetes/kubernetes/pull/50980), [@luxas](https://github.com/luxas))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  2. pkg/apis/core/validation/validation.go

    		}
    		scopeSet.Insert(req.ScopeName)
    	}
    	invalidScopePairs := []sets.Set[core.ResourceQuotaScope]{
    		sets.New(core.ResourceQuotaScopeBestEffort, core.ResourceQuotaScopeNotBestEffort),
    		sets.New(core.ResourceQuotaScopeTerminating, core.ResourceQuotaScopeNotTerminating),
    	}
    	for _, invalidScopePair := range invalidScopePairs {
    		if scopeSet.HasAll(sets.List(invalidScopePair)...) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.28.md

    - Added a new command line argument `--interactive` to kubectl. The new command line argument lets a user confirm deletion requests per resource interactively. ([#114530](https://github.com/kubernetes/kubernetes/pull/114530), [@ardaguclu](https://github.com/ardaguclu)) [SIG CLI and Testing]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (1)
  4. CHANGELOG/CHANGELOG-1.30.md

    - Added alpha support for field selectors on custom resources.
      Provided that the `CustomResourceFieldSelectors` feature gate is enabled, the CustomResourceDefinition
      API now lets you specify `selectableFields`. Listing a field there allows filtering custom resources for that
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewriteS390X.go

    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (IsInBounds idx len)
    	// result: (LOCGR {s390x.Less} (MOVDconst [0]) (MOVDconst [1]) (CMPU idx len))
    	for {
    		idx := v_0
    		len := v_1
    		v.reset(OpS390XLOCGR)
    		v.Aux = s390xCCMaskToAux(s390x.Less)
    		v0 := b.NewValue0(v.Pos, OpS390XMOVDconst, typ.UInt64)
    		v0.AuxInt = int64ToAuxInt(0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 395.1K bytes
    - Viewed (0)
  6. src/net/http/h2_bundle.go

    //
    // See http://tools.ietf.org/html/rfc7540#section-5.1.
    //
    // For simplicity, the server code merges "reserved (local)" into
    // "half-closed (remote)". This is one less state transition to track.
    // The only downside is that we send PUSH_PROMISEs slightly less
    // liberally than allowable. More discussion here:
    // https://lists.w3.org/Archives/Public/ietf-http-wg/2016JulSep/0599.html
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  7. pkg/proxy/iptables/proxier_test.go

    func findAllMatches(lines []string, pattern string) []string {
    	regex := regexp.MustCompile(pattern)
    	allMatches := sets.New[string]()
    	for _, line := range lines {
    		match := regex.FindStringSubmatch(line)
    		if len(match) == 2 {
    			allMatches.Insert(match[1])
    		}
    	}
    	return sets.List(allMatches)
    }
    
    // checkIPTablesRuleJumps checks that every `-j` in the given rules jumps to a chain
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/tests/fuse-tftext.mlir

      %264 = "tf.Reshape"(%254, %263) {device = ""} : (tensor<?x?xi64>, tensor<1xi32>) -> tensor<?xi64>
      %265 = "tf.ExpandDims"(%249, %3) {device = ""} : (tensor<?xi32>, tensor<i32>) -> tensor<?x1xi32>
      %266 = "tf.Less"(%252, %265) {device = ""} : (tensor<?xi32>, tensor<?x1xi32>) -> tensor<?x?xi1>
      %267 = "tf.Reshape"(%266, %5) {device = ""} : (tensor<?x?xi1>, tensor<1xi32>) -> tensor<?xi1>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 460.3K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__storage.k8s.io__v1_openapi.json

              },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 481.9K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "description": "Specifies the maximum desired number of pods the job should run at any given time. The actual number of pods running in steady state will be less than this number when ((.spec.completions - .status.successful) < .spec.parallelism), i.e. when the work left to do is less than max parallelism. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/",
                "format": "int32",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
Back to top