Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 31 for stateful (0.18 sec)

  1. pilot/pkg/serviceregistry/kube/controller/endpoint_builder.go

    	labelutil "istio.io/istio/pilot/pkg/serviceregistry/util/label"
    	"istio.io/istio/pkg/config/labels"
    	kubeUtil "istio.io/istio/pkg/kube"
    	"istio.io/istio/pkg/network"
    )
    
    // EndpointBuilder is a stateful IstioEndpoint builder with metadata used to build IstioEndpoint
    type EndpointBuilder struct {
    	controller controllerInterface
    
    	labels         labels.Instance
    	metaNetwork    network.ID
    	serviceAccount string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/passes/insert_calibration_statistics_saver.cc

                    aggregator_ops_to_ignore))) {
              ++output_file_idx;
            };
          }
        });
      }
    
      // Control flow ops that contains CalibrationStatisticsSaver ops must be set
      // to stateful, otherwise the op will not be executed.
      OpBuilder builder(&ctx);
      module_op.walk([&builder](Operation* op) {
        if (op->hasAttrOfType<BoolAttr>("is_stateless") &&
            ContainCalibrationStatisticsSaverOp(op)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/python/py_function_lib.h

    namespace tensorflow::quantization {
    
    // Declares pure virtual member functions for a python-side derived class to
    // override. This allows calling python implementations from the C++ layer.
    // Member functions should be pure not stateful; they should not access or rely
    // on member fields.
    class PyFunctionLibrary {
     public:
      virtual ~PyFunctionLibrary() = default;
    
      // Saves `exported_model` to `dst_saved_model_path` as SavedModel.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 09 06:33:29 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/podtopologyspread/common.go

    			return false
    		}
    	}
    	return true
    }
    
    // buildDefaultConstraints builds the constraints for a pod using
    // .DefaultConstraints and the selectors from the services, replication
    // controllers, replica sets and stateful sets that match the pod.
    func (pl *PodTopologySpread) buildDefaultConstraints(p *v1.Pod, action v1.UnsatisfiableConstraintAction) ([]topologySpreadConstraint, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 10:42:29 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/text/cases/cases.go

    // - ASCII fast paths
    // - Encode Soft-Dotted property within trie somehow.
    
    // A Caser transforms given input to a certain case. It implements
    // transform.Transformer.
    //
    // A Caser may be stateful and should therefore not be shared between
    // goroutines.
    type Caser struct {
    	t transform.SpanningTransformer
    }
    
    // Bytes returns a new byte slice with the result of converting b to the case
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/transforms/verify_tfxla_legalization.cc

        "means that a shape or dimension argument could not be evaluated at "
        "compile time, usually because the value of the argument depends on a "
        "parameter to the computation, on a variable, or on a stateful operation "
        "such as a random number generator.";
    
    // TODO(b/282188914) remove the operations to skip once tests are fixed.
    static const DenseSet<mlir::TypeID>* operations_to_skip =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheBuildOperationsTest.kt

            val buildOperationRunner = mock<BuildOperationRunner> {
                on { call<Unit>(any()) } doReturn Unit
            }
            val stateFile = testDirectoryProvider.file("stateFile")
    
            // when:
            buildOperationRunner.withStoreOperation("key") {
                StoreResult(stateFile, null)
            }
    
            // then:
            val runnableBuildOperation = ArgumentCaptor.forClass(RunnableBuildOperation::class.java)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheRepository.kt

        ) : ConfigurationCacheStateFile {
            override val exists: Boolean
                get() = file.isFile
    
            override val stateFile: StateFile
                get() = StateFile(stateType, file)
    
            override fun outputStream(): OutputStream =
                throw UnsupportedOperationException()
    
            override fun inputStream(): InputStream =
                file.also(::markAccessed).inputStream()
    
            override fun delete() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/project/ProjectStateRegistry.java

         */
        ProjectState stateFor(Project project) throws IllegalArgumentException;
    
        /**
         * Locates the state object that owns the project with the given identifier.
         */
        ProjectState stateFor(ProjectComponentIdentifier identifier) throws IllegalArgumentException;
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/configurationcache/ConfigurationCacheBuildOperations.kt

        })
    
    
    private
    object LoadDetails : ConfigurationCacheLoadBuildOperationType.Details
    
    
    internal
    data class LoadResult(val stateFile: File, val originInvocationId: String? = null) : ConfigurationCacheLoadBuildOperationType.Result {
        override fun getCacheEntrySize(): Long = stateFile.length()
        override fun getOriginBuildInvocationId(): String? = originInvocationId
    }
    
    
    private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:09:37 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top