Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 72 for Boundaries (0.44 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/python/type_casters.h

    // defined in `native_proto_caster.h` during the resolution process. This is
    // because the type casters in `native_proto_caster.h`, which allow seamlessly
    // exchanging protobuf messages across c++-python boundaries, potentially
    // without serialization, fail in the open-source environment.
    // Explicitly-specialized type casters for serialized protobufs are added on an
    // on-demand basis for quantization library.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 11 19:29:56 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. architecture/standards/0004-use-a-platform-architecture.md

    # ADR-0004 - Use a platform-oriented architecture for Gradle
    
    ## Date
    
    2024-02-07
    
    ## Context
    
    The Gradle code base is essentially a large monolith, without strong internal boundaries.
    This has a number of negative effects on productivity, including:
    
    - Unclear ownership of code.
    - Difficult to focus on one particular area.
    - Unintended coupling between areas of the code, including tests.
    
    ## Decision
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Feb 25 22:19:29 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  3. pilot/pkg/xds/monitoring.go

    	configSizeBytes = monitoring.NewDistribution(
    		"pilot_xds_config_size_bytes",
    		"Distribution of configuration sizes pushed to clients",
    		// Important boundaries: 10K, 1M, 4M, 10M, 40M
    		// 4M default limit for gRPC, 10M config will start to strain system,
    		// 40M is likely upper-bound on config sizes supported.
    		[]float64{1, 10000, 1000000, 4000000, 10000000, 40000000},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/framer/framer.go

    	r         io.ReadCloser
    	decoder   *json.Decoder
    	remaining []byte
    }
    
    // NewJSONFramedReader returns an io.Reader that will decode individual JSON objects off
    // of a wire.
    //
    // The boundaries between each frame are valid JSON objects. A JSON parsing error will terminate
    // the read.
    func NewJSONFramedReader(r io.ReadCloser) io.ReadCloser {
    	return &jsonFrameReader{
    		r:       r,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 13:33:12 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/optimizing-performance/isolated_projects.adoc

    For example:
    
    ----
    $ gradle build -Dorg.gradle.unsafe.isolated-projects=true
    ----
    
    When enabled, Gradle will fail the build whenever build logic attempts to cross project boundaries and access the model of another project.
    Gradle collects all of these access problems in the configuration cache report, in the same way as other problems.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 13:53:18 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/pin_ops_with_side_effects.cc

    //     function/subgraph calls as black boxes (i.e., all variables would
    //     be assumed to be read and modified within control operations)
    // (2) Extend the variable dependency analysis across function boundaries.
    class PinOpsWithSideEffectsPass
        : public impl::PinOpsWithSideEffectsPassBase<PinOpsWithSideEffectsPass> {
     public:
      MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(PinOpsWithSideEffectsPass)
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/passes/lift_quantizable_spots_as_functions.cc

    }
    
    inline void TrimTrailingWhitespaces(std::string& str) {
      while (!str.empty() && str.back() == ' ') {
        str.pop_back();
      }
    }
    
    // Lifts quantizable units as separate functions, thereby identifying the
    // boundaries of quantizable subgraphs. `QuantizationSpecs` influences how
    // quantizable units are lifted.
    //
    // FileCheck test cases using various `QuantizationSpecs` can be seen at
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  8. src/context/context.go

    // license that can be found in the LICENSE file.
    
    // Package context defines the Context type, which carries deadlines,
    // cancellation signals, and other request-scoped values across API boundaries
    // and between processes.
    //
    // Incoming requests to a server should create a [Context], and outgoing
    // calls to servers should accept a Context. The chain of function
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 23.7K bytes
    - Viewed (0)
  9. pkg/kube/krt/core.go

    	// called. Typically, usage of Register is done internally in krt via composition of Collections with Transformations
    	// (NewCollection, NewManyCollection, NewSingleton); however, at boundaries of the system (connecting to something not
    	// using krt), registering directly is expected.
    	Register(f func(o Event[T])) Syncer
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  10. src/os/file_plan9.go

    		return 0, io.EOF
    	}
    	return n, e
    }
    
    // write writes len(b) bytes to the File.
    // It returns the number of bytes written and an error, if any.
    // Since Plan 9 preserves message boundaries, never allow
    // a zero-byte write.
    func (f *File) write(b []byte) (n int, err error) {
    	if err := f.writeLock(); err != nil {
    		return 0, err
    	}
    	defer f.writeUnlock()
    	if len(b) == 0 {
    		return 0, nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:35:30 UTC 2024
    - 16K bytes
    - Viewed (0)
Back to top