Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 321 for equivalently (0.4 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/transforms/passes.td

      let summary = "Converts StableHLO ops using uniform quantized types to equivalent TFL ops.";
      let constructor = "mlir::odml::CreateUniformQuantizedStableHloToTflPass()";
      let description = [{
        Converts StableHLO ops that accept or return uniform quantized types to
        equivalent ops in the TFLite dialect.
      }];
      let dependentDialects = [
        "stablehlo::StablehloDialect",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 21:59:06 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. tests/integration/pilot/testdata/gateway-api-crd.yaml

    
                                                  If multiple entries specify equivalent header names, the first entry with
                                                  an equivalent name MUST be considered for a match. Subsequent entries
                                                  with an equivalent header name MUST be ignored. Due to the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 02:01:51 UTC 2024
    - 912.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    the 'input' data. The 'mode' attribute controls exactly which calculations are
    used to convert the float values to their quantized equivalents.  The
    'round_mode' attribute controls which rounding tie-breaking algorithm is used
    when rounding float values to their quantized equivalents.
    
    In 'MIN_COMBINED' mode, each value of the tensor will undergo the following:
    
    ```
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  4. src/crypto/tls/tls.go

    type Dialer struct {
    	// NetDialer is the optional dialer to use for the TLS connections'
    	// underlying TCP connections.
    	// A nil NetDialer is equivalent to the net.Dialer zero value.
    	NetDialer *net.Dialer
    
    	// Config is the TLS configuration to use for new connections.
    	// A nil configuration is equivalent to the zero
    	// configuration; see the documentation of Config for the
    	// defaults.
    	Config *Config
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/cel/format.go

    )
    
    // Format provdes a CEL representation of kubernetes format
    type Format struct {
    	Name         string
    	ValidateFunc func(string) []string
    
    	// Size of the regex string or estimated equivalent regex string used
    	// for cost estimation
    	MaxRegexSize int
    }
    
    func (d *Format) ConvertToNative(typeDesc reflect.Type) (interface{}, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. src/unsafe/unsafe.go

    //	p = unsafe.Pointer(uintptr(p) + offset)
    //
    // The most common use of this pattern is to access fields in a struct
    // or elements of an array:
    //
    //	// equivalent to f := unsafe.Pointer(&s.f)
    //	f := unsafe.Pointer(uintptr(unsafe.Pointer(&s)) + unsafe.Offsetof(s.f))
    //
    //	// equivalent to e := unsafe.Pointer(&x[i])
    //	e := unsafe.Pointer(uintptr(unsafe.Pointer(&x[0])) + i*unsafe.Sizeof(x[0]))
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 19:45:20 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  7. guava/src/com/google/common/io/Closer.java

     *   throw closer.rethrow(e);
     * } finally {
     *   closer.close();
     * }
     * }</pre>
     *
     * <p>Note that this try-catch-finally block is not equivalent to a try-catch-finally block using
     * try-with-resources. To get the equivalent of that, you must wrap the above code in <i>another</i>
     * try block in order to catch any exception that may be thrown (including from the call to {@code
     * close()}).
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 15:26:58 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  8. platforms/core-execution/worker-main/src/test/groovy/org/gradle/process/internal/worker/messaging/WorkerConfigSerializerTest.groovy

    import static org.gradle.internal.nativeintegration.services.NativeServices.NativeServicesMode
    
    class WorkerConfigSerializerTest extends Specification {
    
        def "serialized and de-serialized WorkerConfig is equivalent to original"() {
    
            given:
            WorkerConfig original = new WorkerConfig(
                LogLevel.ERROR,
                true,
                "/path/to/user/home",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  9. src/runtime/race/testdata/rangefunc_test.go

    package race_test
    
    import (
    	"runtime"
    	"sync/atomic"
    	"testing"
    )
    
    type Seq2[T1, T2 any] func(yield func(T1, T2) bool)
    
    // ofSliceIndex returns a Seq over the elements of s. It is equivalent
    // to range s, except that it splits s into two halves and iterates
    // in two separate goroutines.  This is racy if yield is racy, and yield
    // will be racy if it contains an early exit.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 21:08:03 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/io/Closer.java

     *   throw closer.rethrow(e);
     * } finally {
     *   closer.close();
     * }
     * }</pre>
     *
     * <p>Note that this try-catch-finally block is not equivalent to a try-catch-finally block using
     * try-with-resources. To get the equivalent of that, you must wrap the above code in <i>another</i>
     * try block in order to catch any exception that may be thrown (including from the call to {@code
     * close()}).
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 15:26:58 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top