Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 62 for Enforce (0.9 sec)

  1. pkg/volume/util/operationexecutor/operation_generator.go

    			return volumetypes.NewOperationContext(eventErr, detailedErr, migrated)
    		}
    
    		// Enforce ReadWriteOncePod access mode if it is the only one present. This is also enforced during scheduling.
    		if actualStateOfWorld.IsVolumeMountedElsewhere(volumeToMount.VolumeName, volumeToMount.PodName) &&
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

    // GeneratorDatasetRegionOp
    //===----------------------------------------------------------------------===//
    
    bool GeneratorDatasetRegionOp::areTypesCompatible(Type t1, Type t2) {
      return true;  // Don't enforce type checking across control-flow edges.
    }
    
    void GeneratorDatasetRegionOp::getRegionInvocationBounds(
        ArrayRef<Attribute> operands,
        SmallVectorImpl<InvocationBounds>& invocationBounds) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  3. cluster/gce/util.sh

      # Configure the file path for host dns configuration
      flags+=" --resolv-conf=${WINDOWS_CNI_DIR}\hostdns.conf"
    
      # Both --cgroups-per-qos and --enforce-node-allocatable should be disabled on
      # windows; the latter requires the former to be enabled to work.
      flags+=" --cgroups-per-qos=false --enforce-node-allocatable="
    
      # Turn off kernel memory cgroup notification.
      flags+=" --kernel-memcg-notification=false"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__certificates.k8s.io__v1alpha1_openapi.json

                  "uniqueItems": true
                }
              },
              {
                "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
                "in": "query",
                "name": "force",
                "schema": {
                  "type": "boolean",
                  "uniqueItems": true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 119K bytes
    - Viewed (0)
  5. pkg/config/validation/validation.go

    		if !ok {
    			return nil, errors.New("cannot cast to virtual service")
    		}
    		errs := Validation{}
    		if len(virtualService.Hosts) == 0 {
    			// This must be delegate - enforce delegate validations.
    			if len(virtualService.Gateways) != 0 {
    				// meaningless to specify gateways in delegate
    				errs = AppendValidation(errs, fmt.Errorf("delegate virtual service must have no gateways specified"))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

      invocationBounds.emplace_back(InvocationBounds::getUnknown());
    }
    
    bool WhileRegionOp::areTypesCompatible(Type t1, Type t2) {
      // For now, we don't enforce type checking across control-flow edges.
      return true;
    }
    
    //===----------------------------------------------------------------------===//
    // WhileRegionOp canonicalization
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  7. src/net/http/server.go

    // well read them)
    const maxPostHandlerReadBytes = 256 << 10
    
    func checkWriteHeaderCode(code int) {
    	// Issue 22880: require valid WriteHeader status codes.
    	// For now we only enforce that it's three digits.
    	// In the future we might block things over 599 (600 and above aren't defined
    	// at https://httpwg.org/specs/rfc7231.html#status.codes).
    	// But for now any three digits.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  8. pkg/controller/job/job_controller_test.go

    					}
    					return true, nil
    				}
    				manager.clock.Sleep(100 * time.Millisecond)
    				return false, nil
    			})
    			if err != nil {
    				t.Errorf("Job failed to enforce activeDeadlineSeconds configuration. Expected condition with Reason 'DeadlineExceeded' was not found in %v", j.Status)
    			}
    		})
    	}
    }
    
    func TestSingleJobFailedCondition(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  9. src/runtime/proc.go

    	lockInit(&cpuprof.lock, lockRankCpuprof)
    	allocmLock.init(lockRankAllocmR, lockRankAllocmRInternal, lockRankAllocmW)
    	execLock.init(lockRankExecR, lockRankExecRInternal, lockRankExecW)
    	traceLockInit()
    	// Enforce that this lock is always a leaf lock.
    	// All of this lock's critical sections should be
    	// extremely short.
    	lockInit(&memstats.heapStats.noPLock, lockRankLeafRank)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__certificates.k8s.io__v1_openapi.json

                  "uniqueItems": true
                }
              },
              {
                "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
                "in": "query",
                "name": "force",
                "schema": {
                  "type": "boolean",
                  "uniqueItems": true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 151.7K bytes
    - Viewed (0)
Back to top