Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 66 for Forbid (0.18 sec)

  1. staging/src/k8s.io/api/batch/v1beta1/generated.proto

      optional int64 startingDeadlineSeconds = 2;
    
      // Specifies how to treat concurrent executions of a Job.
      // Valid values are:
      //
      // - "Allow" (default): allows CronJobs to run concurrently;
      // - "Forbid": forbids concurrent runs, skipping next run if previous run hasn't finished yet;
      // - "Replace": cancels currently running job and replaces it with a new one
      // +optional
      optional string concurrencyPolicy = 3;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/batch/v1beta1/types_swagger_doc_generated.go

    	"concurrencyPolicy":          "Specifies how to treat concurrent executions of a Job. Valid values are:\n\n- \"Allow\" (default): allows CronJobs to run concurrently; - \"Forbid\": forbids concurrent runs, skipping next run if previous run hasn't finished yet; - \"Replace\": cancels currently running job and replaces it with a new one",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 11:58:59 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  3. src/cmd/go/internal/mvs/graph.go

    			// possibly be selected. However — especially given that we need the
    			// seenRoot map for later anyway — it is simpler to support this
    			// degenerate case than to forbid it.
    			continue
    		}
    
    		if v := g.Selected(r.Path); v != "none" {
    			list = append(list, module.Version{Path: r.Path, Version: v})
    		}
    		seenRoot[r.Path] = true
    	}
    	uniqueRoots := list
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 01 02:52:19 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/filters/metrics_test.go

    			# TYPE authorization_attempts_total counter
    			authorization_attempts_total{result="allowed"} 1
    				`,
    		},
    		{
    			desc: "decision forbid",
    			authorizer: fakeAuthorizer{
    				authorizer.DecisionDeny,
    				"RBAC: not allowed to patch pod",
    				nil,
    			},
    			want: `
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 20 13:35:55 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  5. hack/golangci-hints.yaml

              # this restriction. Whether we then do a global search/replace remains
              # to be decided.
              with-helpers .*
      forbidigo:
        analyze-types: true
        forbid:
        - p: ^managedfields\.ExtractInto$
          pkg: ^k8s\.io/apimachinery/pkg/util/managedfields$
          msg: should not be used because managedFields was removed
        - p: \.Extract
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  6. hack/golangci.yaml.in

          original-url: k8s.io/logtools/logcheck
          settings:
            config: |
              {{include "hack/logcheck.conf" | indent 10 | trim}}
      forbidigo:
        analyze-types: true
        forbid:
        - p: ^managedfields\.ExtractInto$
          pkg: ^k8s\.io/apimachinery/pkg/util/managedfields$
          msg: should not be used because managedFields was removed
        - p: \.Extract
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 13 13:12:04 UTC 2024
    - 8K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/asm/testdata/amd64error.s

    	CALL (AX)(PC*1)                 // ERROR "invalid instruction"
    	CALL (AX)(SB*1)                 // ERROR "invalid instruction"
    	CALL (AX)(FP*1)                 // ERROR "invalid instruction"
    	// Forbid memory operands for MOV CR/DR. See #24981.
    	MOVQ CR0, (AX)                  // ERROR "invalid instruction"
    	MOVQ CR2, (AX)                  // ERROR "invalid instruction"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  8. hack/golangci-strict.yaml

              # this restriction. Whether we then do a global search/replace remains
              # to be decided.
              with-helpers .*
      forbidigo:
        analyze-types: true
        forbid:
        - p: ^managedfields\.ExtractInto$
          pkg: ^k8s\.io/apimachinery/pkg/util/managedfields$
          msg: should not be used because managedFields was removed
        - p: \.Extract
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  9. maven-compat/src/main/resources/META-INF/maven/plugin.xml

            <session implementation="org.apache.maven.execution.MavenSession" default-value="${session}"/>
            <forkId implementation="int" default-value="-1">${forkId}</forkId>
          </configuration>
        </mojo>
        <mojo>
          <goal>end-fork</goal>
          <description>Restore the non-fork currentProject instance, for use in the forking mojo.</description>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 28 09:19:32 UTC 2013
    - 9.3K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/cpumanager/topology/topology.go

    		for _, core := range node.Cores {
    			if coreID, err := getUniqueCoreID(core.Threads); err == nil {
    				for _, cpu := range core.Threads {
    					CPUDetails[cpu] = CPUInfo{
    						CoreID:     coreID,
    						SocketID:   core.SocketID,
    						NUMANodeID: node.Id,
    					}
    				}
    			} else {
    				klog.ErrorS(nil, "Could not get unique coreID for socket", "socket", core.SocketID, "core", core.Id, "threads", core.Threads)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 03 16:26:09 UTC 2023
    - 7.9K bytes
    - Viewed (0)
Back to top