Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for factory (0.14 sec)

  1. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    	"k8s.io/apiserver/pkg/storage"
    	cacherstorage "k8s.io/apiserver/pkg/storage/cacher"
    	etcd3testing "k8s.io/apiserver/pkg/storage/etcd3/testing"
    	"k8s.io/apiserver/pkg/storage/names"
    	"k8s.io/apiserver/pkg/storage/storagebackend/factory"
    	storagetesting "k8s.io/apiserver/pkg/storage/testing"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	"k8s.io/client-go/tools/cache"
    	featuregatetesting "k8s.io/component-base/featuregate/testing"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

            verify_size(window_strides.size(), "window strides") &&
            verify_size(padding.size(), "padding entries") &&
            verify_size(lhs_dilation.size(), "lhs dilation factors") &&
            verify_size(rhs_dilation.size(), "rhs dilation factors")))
        return std::nullopt;
    
      xla::Window window;
      for (size_t i = 0; i < window_dimensions.size(); i++) {
        auto dim = window.add_dimensions();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  3. pkg/config/validation/validation.go

    		return true // eliminates special-casing 2.
    	} else if (x & 1) == 0 {
    		return false // eliminates even numbers >2.
    	}
    
    	limit := uint64(math.Sqrt(float64(x)))
    	for factor := uint64(3); factor <= limit; factor += 2 {
    		if (x % factor) == 0 {
    			return false
    		}
    	}
    	return true
    }
    
    func validateSubset(subset *networking.Subset) error {
    	return appendErrors(validateSubsetName(subset.Name),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet.go

    	housekeepingTicker := time.NewTicker(housekeepingPeriod)
    	defer housekeepingTicker.Stop()
    	plegCh := kl.pleg.Watch()
    	const (
    		base   = 100 * time.Millisecond
    		max    = 5 * time.Second
    		factor = 2
    	)
    	duration := base
    	// Responsible for checking limits in resolv.conf
    	// The limits do not have anything to do with individual pods
    	// Since this is called in syncLoop, we don't need to call it anywhere else
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_test.go

    	}
    
    	return nil
    }
    
    func retryWithExponentialBackOff(initialDuration time.Duration, fn wait.ConditionFunc) error {
    	backoff := wait.Backoff{
    		Duration: initialDuration,
    		Factor:   3,
    		Jitter:   0,
    		Steps:    6,
    	}
    	return wait.ExponentialBackoff(backoff, fn)
    }
    
    func simulateVolumeInUseUpdate(
    	volumeName v1.UniqueVolumeName,
    	stopCh <-chan struct{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

    }
    
    def GroupByDialectPass : Pass<"tf-group-by-dialect", "mlir::ModuleOp"> {
      let summary = "Groups ops into functions that only contain one dialect.";
      let description = [{
          Factors operations into subroutines such that all functions only
          contain a single dialect. Which of the dialects are allowed in the
          "top" function is configurable.
    
          For example, the code
            x.a()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  7. cluster/gce/gci/configure-helper.sh

    # entropy pool has been initialized sufficiently for the desired operation
    # before reading from /dev/urandom.
    #
    # ARGS:
    #   #1: number of secure bytes to generate. We round up to the nearest factor of 32.
    function secure_random {
      local infobytes="${1}"
      if ((infobytes <= 0)); then
        echo "Invalid argument to secure_random: infobytes='${infobytes}'" 1>&2
        return 1
      fi
    
      local out=""
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  8. src/cmd/go/alldocs.go

    //
    //	go 1.18
    //
    //	use ../foo/bar
    //	use ./baz
    //
    //	replace example.com/foo v1.2.3 => example.com/bar v1.4.5
    //
    // The leading keyword can be factored out of adjacent lines to create a block,
    // like in Go imports.
    //
    //	use (
    //	  ../foo/bar
    //	  ./baz
    //	)
    //
    // The use directive specifies a module to be included in the workspace's
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top