Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 787 for quotas (0.09 sec)

  1. common/config/sass-lint.yml

      property-units: 2
      pseudo-element: 2
      quotes:
        - 2
        -
          style: double
      shorthand-values: 2
      single-line-per-selector: 0
      space-after-bang: 2
      space-after-colon: 2
      space-after-comma: 2
      space-around-operator: 2
      space-before-bang: 2
      space-before-brace: 2
      space-before-colon: 2
      space-between-parens: 2
      trailing-semicolon: 2
      url-quotes: 2
      variable-for-property:
        - 0
        -
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 11 23:32:21 UTC 2019
    - 2K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/helpers_linux.go

    		period = QuotaPeriod
    	}
    
    	// we then convert your milliCPU to a value normalized over a period
    	quota = (milliCPU * period) / MilliCPUToCPU
    
    	// quota needs to be a minimum of 1ms.
    	if quota < MinQuotaPeriod {
    		quota = MinQuotaPeriod
    	}
    	return
    }
    
    // MilliCPUToShares converts the milliCPU to CFS shares.
    func MilliCPUToShares(milliCPU int64) uint64 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 11:52:28 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.9.md

    *   A Pod can now listen to the same port on multiple IP addresses.  ([#52421](https://github.com/kubernetes/kubernetes/pull/52421),[ @WIZARD-CXY](https://github.com/WIZARD-CXY))
    *   Object count quotas supported on all standard resources using count/<resource>.<group> syntax ([#54320](https://github.com/kubernetes/kubernetes/pull/54320),[ @derekwaynecarr](https://github.com/derekwaynecarr))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 16 10:46:27 UTC 2021
    - 313.7K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/Swift3.groovy

                    return "When you write a string that spans multiple\\nlines make sure you start its content on a\\nline all of its own, and end it with three\\nquotes also on a line of their own.\\nMulti-line strings also let you write \\"quote marks\\"\\nfreely inside your strings, which is great!"
                }
            ''')]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. gradlew

            "$@"
    
    # Stop when "xargs" is not available.
    if ! command -v xargs >/dev/null 2>&1
    then
        die "xargs is not available"
    fi
    
    # Use "xargs" to parse quoted args.
    #
    # With -n1 it outputs one arg per line, with the quotes and backslashes removed.
    #
    # In Bash we could simply go:
    #
    #   readarray ARGS < <( xargs -n1 <<<"$var" ) &&
    #   set -- "${ARGS[@]}" "$@"
    #
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Dec 24 09:00:26 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/initializer/interfaces.go

    	"k8s.io/apimachinery/pkg/api/meta"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/apiserver/pkg/admission"
    	"k8s.io/apiserver/pkg/authorization/authorizer"
    	"k8s.io/apiserver/pkg/cel/openapi/resolver"
    	quota "k8s.io/apiserver/pkg/quota/v1"
    	"k8s.io/client-go/dynamic"
    	"k8s.io/client-go/informers"
    	"k8s.io/client-go/kubernetes"
    	"k8s.io/component-base/featuregate"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 19:11:10 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. src/strconv/quote_test.go

    	// Some non-printable but graphic runes. Final column is double-quoted.
    	{"!\u00a0!\u2000!\u3000!", `"!\u00a0!\u2000!\u3000!"`, `"!\u00a0!\u2000!\u3000!"`, "\"!\u00a0!\u2000!\u3000!\""},
    	{"\x7f", `"\x7f"`, `"\x7f"`, `"\x7f"`},
    }
    
    func TestQuote(t *testing.T) {
    	for _, tt := range quotetests {
    		if out := Quote(tt.in); out != tt.out {
    			t.Errorf("Quote(%s) = %s, want %s", tt.in, out, tt.out)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 31 20:37:15 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modfetch/codehost/codehost.go

    				text.WriteByte(' ')
    			}
    			switch {
    			case strings.ContainsAny(arg, "'"):
    				// Quote args that could be mistaken for quoted args.
    				text.WriteByte('"')
    				text.WriteString(bashQuoter.Replace(arg))
    				text.WriteByte('"')
    			case strings.ContainsAny(arg, "$`\\*?[\"\t\n\v\f\r \u0085\u00a0"):
    				// Quote args that contain special characters, glob patterns, or spaces.
    				text.WriteByte('\'')
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  9. operator/pkg/patch/patch.go

    	    - vv2=foo
    
    values and list entries can be added, modified or deleted.
    
    # MODIFY
    
    1. set v1 to v1new
    
    	path: a.b.[name:n1].value
    	value: v1new
    
    2. set vv1 to vv3
    
    	// Note the lack of quotes around vv1 (see NOTES below).
    	path: a.b.[name:n2].list.[vv1]
    	value: vv3
    
    3. set vv2=foo to vv2=bar (using regex match)
    
    	path: a.b.[name:n2].list.[vv2]
    	value: vv2=bar
    
    4. replace a port whose port was 15010
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 10 15:35:03 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/windows/exec_windows.go

    // in http://msdn.microsoft.com/en-us/library/ms880421.
    // This function returns "" (2 double quotes) if s is empty.
    // Alternatively, these transformations are done:
    //   - every back slash (\) is doubled, but only if immediately
    //     followed by double quote (");
    //   - every double quote (") is escaped by back slash (\);
    //   - finally, s is wrapped with double quotes (arg -> "arg"),
    //     but only if there is space or tab inside s.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 7.3K bytes
    - Viewed (0)
Back to top