Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 1,141 for get2s (0.04 sec)

  1. pkg/proxy/nftables/README.md

    to a network interface in the host network namespace get routed along the input path;
    anything else (including, in particular, packets destined for a pod IP) gets routed along
    the forward path.
    
    ## kube-proxy's use of nftables hooks
    
    Kube-proxy uses nftables for seven things:
    
      - Using DNAT to rewrite traffic from service IPs (cluster IPs, external IPs, load balancer
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 21 14:37:56 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/phases/util.go

    limitations under the License.
    */
    
    package phases
    
    import (
    	"k8s.io/component-base/version"
    
    	kubeadmapiv1 "k8s.io/kubernetes/cmd/kubeadm/app/apis/kubeadm/v1beta3"
    )
    
    // SetKubernetesVersion gets the current Kubeadm version and sets it as KubeadmVersion in the config,
    // unless it's already set to a value different from the default.
    func SetKubernetesVersion(cfg *kubeadmapiv1.ClusterConfiguration) {
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 08 14:17:32 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. pkg/kube/informerfactory/factory.go

    	// which run until the stop channel gets closed.
    	Start(stopCh <-chan struct{})
    
    	// InformerFor returns the SharedIndexInformer the provided type.
    	InformerFor(resource schema.GroupVersionResource, opts kubetypes.InformerOptions, newFunc NewInformerFunc) StartableInformer
    
    	// WaitForCacheSync blocks until all started informers' caches were synced
    	// or the stop channel gets closed.
    	WaitForCacheSync(stopCh <-chan struct{}) bool
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/clean_cache_n.txt

    # We're testing cache behavior, so start with a clean GOCACHE.
    env GOCACHE=$WORK/cache
    
    # Build something so that the cache gets populates
    go build main.go
    
    # Check that cache contains directories before running
    exists $GOCACHE/00
    
    # Run go clean -cache -n and ensure that directories weren't deleted
    go clean -cache -n
    exists $GOCACHE/00
    
    # Re-run go clean cache without the -n flag go ensure that directories were properly removed
    go clean -cache
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 30 17:22:49 UTC 2022
    - 637 bytes
    - Viewed (0)
  5. src/internal/trace/testdata/generators/go122-go-create-without-running-g.go

    	"internal/trace/event/go122"
    	testgen "internal/trace/internal/testgen/go122"
    )
    
    func main() {
    	testgen.Main(gen)
    }
    
    func gen(t *testgen.Trace) {
    	g1 := t.Generation(1)
    
    	// A goroutine gets created on a running P, then starts running.
    	b0 := g1.Batch(trace.ThreadID(0), 0)
    	b0.Event("ProcStatus", trace.ProcID(0), go122.ProcRunning)
    	b0.Event("GoCreate", trace.GoID(5), testgen.NoStack, testgen.NoStack)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 996 bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/flatbuffer_translate_flags.h

    extern bool emit_select_tf_ops;
    extern bool emit_custom_ops;
    // The flag to control whether to lower tensorlist ops into TF ops.
    extern bool lower_tensor_list_ops;
    // The flag to control whether debug info gets stripped on export.
    extern bool strip_debug_info;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 23 05:49:32 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/util/cgroups_unsupported.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package util
    
    // GetPids gets pids of the desired cgroup
    func GetPids(cgroupPath string) ([]int, error) {
    	return nil, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 732 bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/file/FileSystemOperations.java

         * the default value the permissions start out with before the configuration is applied.
         * For details see {@link ConfigurableFilePermissions}.
         *
         * @param configureAction The configuration that gets applied to the newly created {@code FilePermissions}.
         *
         * @since 8.3
         */
        ConfigurableFilePermissions filePermissions(Action<? super ConfigurableFilePermissions> configureAction);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 15 08:02:27 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/common/lift_as_function_call.h

    bool IsInStableHloOpRegion(Operation* op);
    
    // Checks if a given einsum op is supported for XlaDotV2 quantization.
    bool IsEinsumSupportedByXlaDotV2(StringAttr equation_attr);
    
    // Gets the quantization method from `op`. It is retrieved from the
    // `kQuantizationMethodAttr` string attribute. Returns
    // `absl::InvalidArgumentError` when the attribute doesn't exist. Returns
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/request/width.go

    		return int(we.InitialSeats)
    	}
    
    	return int(we.FinalSeats)
    }
    
    // objectCountGetterFunc represents a function that gets the total
    // number of objects for a given resource.
    type objectCountGetterFunc func(string) (int64, error)
    
    // watchCountGetterFunc represents a function that gets the total
    // number of watchers potentially interested in a given request.
    type watchCountGetterFunc func(*apirequest.RequestInfo) int
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 17 19:26:52 UTC 2023
    - 5K bytes
    - Viewed (0)
Back to top