Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,109 for hard (0.08 sec)

  1. manifests/charts/istio-cni/templates/resourcequota.yaml

    {{- if .Values.cni.resourceQuotas.enabled }}
    apiVersion: v1
    kind: ResourceQuota
    metadata:
      name: {{ template "name" . }}-resource-quota
      namespace: {{ .Release.Namespace }}
    spec:
      hard:
        pods: {{ .Values.cni.resourceQuotas.pods | quote }}
      scopeSelector:
        matchExpressions:
        - operator: In
          scopeName: PriorityClass
          values:
          - system-node-critical
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:29 UTC 2024
    - 388 bytes
    - Viewed (0)
  2. cluster/gce/addons/admission-resource-quota-critical-pods/resource-quota.yaml

    apiVersion: v1
    kind: ResourceQuota
    metadata:
      name: gcp-critical-pods
      namespace: kube-system
      labels:
        addonmanager.kubernetes.io/mode: Reconcile
    spec:
      hard:
        pods: "1000000000"
      scopeSelector:
        matchExpressions:
        - operator : In
          scopeName: PriorityClass
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 17 13:52:19 UTC 2020
    - 644 bytes
    - Viewed (0)
  3. src/cmd/go/testdata/mod/rsc.io_badsum_v1.0.0.txt

    rsc.io/badsum@v1.0.0
    
    This module would match the hard-coded hash for rsc.io/badsum v1.0.0
    in modfetch/notary.go if not for the "break hash" line.
    
    -- .mod --
    module "rsc.io/badsum"
    -- .info --
    {"Version":"v1.0.0","Time":"2018-02-14T00:45:20Z"}
    -- go.mod --
    module "rsc.io/badsum"
    -- badsum.go --
    package badsum
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 01:45:06 UTC 2019
    - 326 bytes
    - Viewed (0)
  4. src/cmd/go/testdata/mod/rsc.io_badsum_v1.0.1.txt

    rsc.io/badsum@v1.0.1
    
    This module would match the hard-coded hash for rsc.io/badsum v1.0.1/go.mod
    in modfetch/notary.go if not for the "break hash" line.
    
    -- .mod --
    module "rsc.io/badsum"
    # break hash
    -- .info --
    {"Version":"v1.0.1","Time":"2018-02-14T00:45:20Z"}
    -- go.mod --
    module "rsc.io/badsum"
    -- badsum.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 01:45:06 UTC 2019
    - 332 bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_list_direct.txt

    # ensure that 'direct' mode can resolve the package to the module.
    # For a while, (*modfetch.codeRepo).Stat was not checking for a go.mod file,
    # which would produce a hard error at the subsequent call to GoMod.
    
    go get -v
    
    -- go.mod --
    module example.com
    go 1.13
    
    -- main.go --
    package main
    
    import _ "vcs-test.golang.org/git/v3pkg.git/v3"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 514 bytes
    - Viewed (0)
  6. platforms/software/version-control/src/main/java/org/gradle/vcs/git/internal/GitVersionControlSystem.java

                        setDirectory(workingDir).
                        setCloneSubmodules(true);
                git = clone.call();
                git.reset().setMode(ResetCommand.ResetType.HARD).setRef(ref.getCanonicalId()).call();
            } catch (GitAPIException | URISyntaxException | JGitInternalException e) {
                throw wrapGitCommandException("clone", gitSpec.getUrl(), workingDir, e);
            } finally {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 14:54:52 UTC 2024
    - 8K bytes
    - Viewed (0)
  7. test/bombad.go

    // errorcheck
    
    // Copyright 2012 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Here for reference, but hard to test automatically
    // because the BOM muddles the
    // processing done by ../run.
    
    package main
    
    func main() {
    	// There's a bom here.	// ERROR "BOM"
    	// And here.	// ERROR "BOM"
    	/* And here.*/	// ERROR "BOM"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 480 bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_retract_rationale.txt

    # When there is no rationale, 'go get' should print a hard-coded message.
    go get example.com/retract/rationale@v1.0.0-empty
    stderr '^go: warning: example.com/retract/rationale@v1.0.0-empty: retracted by module author$'
    
    # 'go list' should print the same hard-coded message.
    go list -m -retracted -f '{{.Retracted}}' example.com/retract/rationale
    stdout '^\[retracted by module author\]$'
    
    
    # When there is a multi-line message, 'go get' should print the first line.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 3.2K bytes
    - Viewed (0)
  9. test/runtime.go

    // it cannot get at the low-level runtime definitions
    // known to the compiler.  For normal packages
    // the compiler doesn't even record the lower case
    // functions in its symbol table, but some functions
    // in runtime are hard-coded into the compiler.
    // Does not compile.
    
    package main
    
    import "runtime"
    
    func main() {
    	runtime.printbool(true)	// ERROR "unexported|undefined"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 09 23:56:19 UTC 2020
    - 600 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins.adoc

    *Script Plugins* are simple and easy to write.
    They are written in Kotlin DSL or Groovy DSL.
    They are suitable for small, one-off tasks or for quick experimentation.
    However, they can become hard to maintain as the build script grows in size and complexity.
    
    *Precompiled Script Plugins* are Kotlin or Groovy DSL scripts compiled into Java class files packaged in a library.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 02:15:18 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top