Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 21 for Stateless (0.15 sec)

  1. pkg/kube/krt/README.md

    ### Transformation constraints
    
    In order for the framework to properly handle dependencies and events, transformation functions must adhere by a few properties.
    
    Basically, Transformations must be stateless and idempotent.
    * Any querying of other `Collection`s _must_ be done through `krt.Fetch`.
    * Querying other data stores that may change is not permitted.
    * Querying external state (e.g. making HTTP calls) is not permitted.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 18 17:21:50 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  2. android/guava-testlib/src/com/google/common/testing/ArbitraryInstances.java

     * Immutable empty instances are returned for collection types; {@code ""} for string; {@code 0} for
     * number types; reasonable default instance for other stateless types. For mutable types, a fresh
     * instance is created each time {@code get()} is called.
     *
     * @author Kevin Bourrillion
     * @author Ben Yu
     * @since 12.0
     */
    @GwtIncompatible
    @J2ktIncompatible
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/doc.go

    use the gob encoding, an efficient, robust, self-describing binary
    protocol. A fact type may implement the GobEncoder/GobDecoder interfaces
    if the default encoding is unsuitable. Facts should be stateless.
    Because serialized facts may appear within build outputs, the gob encoding
    of a fact must be deterministic, to avoid spurious cache misses in
    build systems that use content-addressable caches.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. tensorflow/c/ops.h

    //
    // The op built by this builder is stateful if its behavior depends on some
    // state beyond its input tensors (e.g. variable reading op) or if it has a
    // side-effect (e.g. printing or asserting ops). Equivalently, stateless ops
    // must always produce the same output for the same input and have no
    // side-effects.
    //
    // By default Ops may be moved between devices. Stateful ops should either not
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 27 21:07:00 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  5. guava-testlib/src/com/google/common/testing/ArbitraryInstances.java

     * Immutable empty instances are returned for collection types; {@code ""} for string; {@code 0} for
     * number types; reasonable default instance for other stateless types. For mutable types, a fresh
     * instance is created each time {@code get()} is called.
     *
     * @author Kevin Bourrillion
     * @author Ben Yu
     * @since 12.0
     */
    @GwtIncompatible
    @J2ktIncompatible
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 21K bytes
    - Viewed (0)
  6. docs/bigdata/README.md

    ## **1. Cloud-native Architecture**
    
    ![cloud-native](https://github.com/minio/minio/blob/master/docs/bigdata/images/image1.png?raw=true "cloud native architecture")
    
    Kubernetes manages stateless Spark and Hive containers elastically on the compute nodes. Spark has native scheduler integration with Kubernetes. Hive, for legacy reasons, uses YARN scheduler on top of Kubernetes.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 14.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/build_xla_ops_pass.cc

        }
      }
    
      // In theory we can use PartitionedCall if the XLA cluster does not have any
      // stateful operations.  However, for now we choose to be conservative since
      // we don't have any evidence that choosing a stateless partitioned call helps
      // for performance.
      ops::StatefulPartitionedCall call(
          root.WithOpName("stateful_partitioned_call"), args, n->output_types(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/cgroup_manager_linux.go

    	// Cgroup subsystem to their mount location.
    	// e.g.: "cpu" -> "/sys/fs/cgroup/cpu"
    	MountPoints map[string]string
    }
    
    // cgroupManagerImpl implements the CgroupManager interface.
    // Its a stateless object which can be used to
    // update,create or delete any number of cgroups
    // It relies on runc/libcontainer cgroup managers.
    type cgroupManagerImpl struct {
    	// subsystems holds information about all the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/text/cases/map.go

    	Supported language.Coverage
    
    	// We keep the following lists separate, instead of having a single per-
    	// language struct, to give the compiler a chance to remove unused code.
    
    	// Some uppercase mappers are stateless, so we can precompute the
    	// Transformers and save a bit on runtime allocations.
    	upperFunc = []struct {
    		upper mapFunc
    		span  spanFunc
    	}{
    		{nil, nil},                  // und
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  10. pkg/controller/volume/persistentvolume/pv_controller_base.go

    	if err != nil {
    		return newClaim, err
    	}
    	_, err = ctrl.storeClaimUpdate(logger, newClaim)
    	if err != nil {
    		return newClaim, err
    	}
    	return newClaim, nil
    }
    
    // Stateless functions
    
    func getClaimStatusForLogging(claim *v1.PersistentVolumeClaim) string {
    	bound := metav1.HasAnnotation(claim.ObjectMeta, storagehelpers.AnnBindCompleted)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 29.5K bytes
    - Viewed (0)
Back to top