Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 284 for replaced (0.15 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/cc/pass_pipeline.cc

      QuantizeCompositeFunctionsPassOptions options;
      // TODO: b/331120943 - Temporarily set below to true, signaling per-channel
      // quantization will be applied for all where applicable. This will be
      // replaced by individual `Method` in `QuantizationSpecs`.
      options.enable_per_channel_quantized_weight_ = true;
      // For debugging purposes.
      options.mlir_dump_file_name_ = "quantize_composite_functions";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  2. pilot/pkg/model/envoyfilter.go

    		} else if cp.Match.Proxy != nil && cp.Match.Proxy.ProxyVersion != "" {
    			// Attempt to convert regex to a simple prefix match for the common case of matching
    			// a standard Istio version. This field should likely be replaced with semver, but for now
    			// we can workaround the performance impact of regex
    			if prefix, f := wellKnownVersions[cp.Match.Proxy.ProxyVersion]; f {
    				cpw.ProxyPrefixMatch = prefix
    			} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 13:57:28 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  3. docs/ftp/README.md

      Security (TLS) and VPN applications.
    
    - File Transfer Protocol over SSL/TLS (FTPS) – Encrypted FTP communication via TLS certificates.
    
    - File Transfer Protocol (FTP) – Defined by RFC114 originally, and replaced by RFC765 and RFC959
      unencrypted FTP communication (Not-recommended)
    
    ## Scope
    
    - All IAM Credentials are allowed access excluding rotating credentials, rotating credentials
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 06:41:25 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/FileUtils.java

         * then the provided extension is simply concatenated.  If the file path has an extension, the extension is
         * stripped and replaced with the provided extension.
         *
         * e.g. with a provided extension of ".bar"
         * foo -> foo.bar
         * foo.baz -> foo.bar
         *
         * @param filePath the file path to transform
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  5. src/net/unixsock_posix.go

    	// The operating system doesn't clean up
    	// the file that announcing created, so
    	// we have to clean it up ourselves.
    	// There's a race here--we can't know for
    	// sure whether someone else has come along
    	// and replaced our socket name already--
    	// but this sequence (remove then close)
    	// is at least compatible with the auto-remove
    	// sequence in ListenUnix. It's only non-Go
    	// programs that can mess us up.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:54:32 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  6. guava/src/com/google/common/hash/LittleEndianByteArray.java

           * as a compromise, we enable the optimization only on platforms that we specifically know to
           * work.
           *
           * In the future, the use of Unsafe.getLong() should be replaced by ByteBuffer.getLong(),
           * which will have an efficient native implementation in JDK 9.
           *
           */
          String arch = System.getProperty("os.arch");
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/hash/LittleEndianByteArray.java

           * as a compromise, we enable the optimization only on platforms that we specifically know to
           * work.
           *
           * In the future, the use of Unsafe.getLong() should be replaced by ByteBuffer.getLong(),
           * which will have an efficient native implementation in JDK 9.
           *
           */
          String arch = System.getProperty("os.arch");
          if ("amd64".equals(arch)) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  8. pkg/test/framework/resource/settings.go

    	// The revision label on a namespace for injection webhook.
    	// If set to XXX, all the namespaces created with istio-injection=enabled will be replaced with istio.io/rev=XXX.
    	Revision string
    
    	// Skip VM related parts for all the tests.
    	SkipVM bool
    
    	// Skip TProxy related parts for all the tests.
    	SkipTProxy bool
    
    	// Ambient mesh is being used
    	Ambient bool
    
    	// Use ambient instead of sidecars
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  9. src/slices/sort_test.go

    	if Min(fs) != -400.4 {
    		t.Errorf("got min %v, want -400.4", Min(fs))
    	}
    	if Max(fs) != 999.9 {
    		t.Errorf("got max %v, want 999.9", Max(fs))
    	}
    
    	// No matter which element of fs is replaced with a NaN, both Min and Max
    	// should propagate the NaN to their output.
    	for i := 0; i < len(fs); i++ {
    		testfs := Clone(fs)
    		testfs[i] = math.NaN()
    
    		fmin := Min(testfs)
    		if !math.IsNaN(fmin) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 19:20:55 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  10. schema/naming.go

    	UniqueName(table, column string) string
    }
    
    // Replacer replacer interface like strings.Replacer
    type Replacer interface {
    	Replace(name string) string
    }
    
    var _ Namer = (*NamingStrategy)(nil)
    
    // NamingStrategy tables, columns naming strategy
    type NamingStrategy struct {
    	TablePrefix         string
    	SingularTable       bool
    	NameReplacer        Replacer
    	NoLowerCase         bool
    	IdentifierMaxLength int
    }
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 03:46:59 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top