Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for Enforce (0.18 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. pkg/kubelet/kubelet_pods_test.go

    				# TYPE kubelet_orphaned_runtime_pods_total counter
    				kubelet_orphaned_runtime_pods_total 1
    				`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_pods.go

    	}
    
    	// TODO: this should be using the podWorker's pod store as authoritative, since
    	// the mirrorPod might still exist, the pod may have been force deleted but
    	// is still terminating (users should be able to view logs of force deleted static pods
    	// based on full name).
    	var podUID types.UID
    	pod, mirrorPod, wasMirror := kl.podManager.GetPodAndMirrorPod(pod)
    	if wasMirror {
    		if pod == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    	}
    
    	testCases := []struct {
    		name        string
    		decorator   func(runtime.Object)
    		beginCreate BeginCreateFunc
    		afterCreate AfterCreateFunc
    		// the TTLFunc is an easy hook to force a failure
    		ttl              func(obj runtime.Object, existing uint64, update bool) (uint64, error)
    		expectError      bool
    		expectAnnotation string   // to test object mutations
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet.go

    	// by other components that need to see the set of desired pods. Note that not all desired pods are
    	// running, and not all running pods are in the podManager - for instance, force deleting a pod
    	// from the apiserver will remove it from the podManager, but the pod may still be terminating and
    	// tracked by the podWorkers. Components that need to know the actual consumed resources of the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  9. src/net/http/serve_test.go

    	}))
    }
    
    // TestClientCanClose verifies that clients can also force a connection to close.
    func TestClientCanClose(t *testing.T) {
    	testTCPConnectionCloses(t, "GET / HTTP/1.1\r\nHost: foo\r\nConnection: close\r\n\r\n", HandlerFunc(func(w ResponseWriter, r *Request) {
    		// Nothing.
    	}))
    }
    
    // TestHandlersCanSetConnectionClose verifies that handlers can force a connection to close,
    // even for HTTP/1.1 requests.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let summary = "Layout assignment pass.";
      let constructor = "TF::CreateLayoutAssignmentPass()";
      let options = [
        Option<"force_data_format_", "force-data-format", "std::string", /*default=*/"",
               "Force data format for all layout sensitive ops.">
      ];
    }
    
    def MoveTransposesPass : Pass<"tf-move-transposes", "mlir::func::FuncOp"> {
      let summary = "Move transposes pass.";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
Back to top