Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 92 for rp_filter (0.18 sec)

  1. pkg/kubelet/sysctl/util_test.go

    		},
    		{
    			Name:  "net.ipv4.conf.eno2/100.rp_filter",
    			Value: "1",
    		},
    		{
    			Name:  "net/ipv4/ip_local_port_range",
    			Value: "1024 65535",
    		},
    	}
    	exceptSysctls := []v1.Sysctl{
    		{
    			Name:  "kernel.msgmax",
    			Value: "8192",
    		},
    		{
    			Name:  "kernel.shm_rmid_forced",
    			Value: "1",
    		},
    		{
    			Name:  "net.ipv4.conf.eno2/100.rp_filter",
    			Value: "1",
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 22:58:28 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/compilability_check_util.cc

      RecursiveCompilabilityChecker::OperationFilter op_filter;
      op_filter.allow_resource_ops_in_called_functions =
          registration.cluster_resource_variable_ops_unsafely;
      op_filter.allow_stack_ops = registration.cluster_stack_ops;
      op_filter.allow_tensor_array_ops = registration.cluster_tensor_array_ops;
      op_filter.allow_stateful_rng_ops = registration.cluster_stateful_rng_ops;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/experimental/tac/tac_filter.proto

      // other hardware.
      repeated TacFilter tac_filters = 1;
    }
    
    // A filter can be used for an op or function.
    message TacFilter {
      oneof filter {
        OpFilter op_filter = 1;
        FunctionFilter function_filter = 2;
      }
    }
    
    // Function filter is to include/exclude a function in the target annotation
    // pass in the TAC tool pipeline.
    message FunctionFilter {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 19 19:32:06 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_filter.go

    Abu Kashem <******@****.***> 1697030441 -0400
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 8K bytes
    - Viewed (0)
  5. pilot/pkg/xds/endpoints/ep_filters.go

    dwq <******@****.***> 1716945478 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/compilability_check_util.h

        // option once inference converter supports outside compilation.
        bool allow_outside_compiled = false;
      };
    
      RecursiveCompilabilityChecker(OperationFilter op_filter,
                                    DeviceType jit_device_type)
          : op_filter_(std::move(op_filter)),
            jit_device_type_(std::move(jit_device_type)) {}
    
      using UncompilableNodesMap =
          std::map<std::string,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/volumerestrictions/volume_restrictions_test.go

    			cycleState := framework.NewCycleState()
    			_, preFilterGotStatus := p.(framework.PreFilterPlugin).PreFilter(ctx, cycleState, test.pod)
    			if diff := cmp.Diff(test.preFilterWantStatus, preFilterGotStatus); diff != "" {
    				t.Errorf("Unexpected PreFilter status (-want, +got): %s", diff)
    			}
    			// If PreFilter fails, then Filter will not run.
    			if test.preFilterWantStatus.IsSuccess() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 20 17:40:39 UTC 2023
    - 17.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/compilability_check_util_test.cc

        XlaOpRegistry::RegisterCompilationKernels();
    
        op_filter_.allow_resource_ops_in_called_functions = false;
        op_filter_.allow_stack_ops = false;
        op_filter_.allow_tensor_array_ops = false;
        op_filter_.allow_stateful_rng_ops = false;
        op_filter_.allow_control_trigger = false;
        op_filter_.allow_eliding_assert_and_checknumerics_ops = false;
        op_filter_.allow_ops_producing_or_consuming_variant = false;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 10 12:32:39 UTC 2022
    - 22.3K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/podtopologyspread/filtering.go

    )
    
    const preFilterStateKey = "PreFilter" + Name
    
    // preFilterState computed at PreFilter and used at Filter.
    // It combines TpKeyToCriticalPaths and TpPairToMatchNum to represent:
    // (1) critical paths where the least pods are matched on each spread constraint.
    // (2) number of pods matched on each spread constraint.
    // A nil preFilterState denotes it's not set at all (in PreFilter phase);
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 10:42:29 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/volumezone/volume_zone_test.go

    		Pod       *v1.Pod
    		NumPV     int
    		NumPVC    int
    		NumNodes  int
    		PreFilter bool
    	}{
    		{
    			Name:      "with prefilter",
    			Pod:       createPodWithVolume("pod_0", "PVC_Stable_0"),
    			NumPV:     1000,
    			NumPVC:    1000,
    			NumNodes:  1000,
    			PreFilter: true,
    		},
    		{
    			Name:      "without prefilter",
    			Pod:       createPodWithVolume("pod_0", "PVC_Stable_0"),
    			NumPV:     1000,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 14 05:17:04 UTC 2023
    - 20K bytes
    - Viewed (0)
Back to top