Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 93 for Canonicalize (0.19 sec)

  1. okhttp/src/main/kotlin/okhttp3/internal/publicsuffix/PublicSuffixDatabase.kt

       * assertNull(getEffectiveTldPlusOne("com"));
       * assertNull(getEffectiveTldPlusOne("localhost"));
       * assertNull(getEffectiveTldPlusOne("mymacbook"));
       * ```
       *
       * @param domain A canonicalized domain. An International Domain Name (IDN) should be punycode
       *     encoded.
       */
      fun getEffectiveTldPlusOne(domain: String): String? {
        // We use UTF-8 in the list so we need to convert to Unicode.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util.h

    //   . Replaces resource reads/writes with function inputs/outputs and
    //     eliminates the use of resource variables.
    //   . Legalizes the operations to XLA HLO operations.
    //   . Canonicalizes the XLA HLO operations.
    //
    // device_type: XLA JIT device to use for compilation such as "XLA_CPU_JIT",
    //   "XLA_GPU_JIT" or "XLA_TPU_JIT".
    // use_tuple_args: when this is true, always create a tuple argument for the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 17:24:39 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/stack_ops_decomposition.mlir

      // expected-error @+1 {{found unexpected type 'tensor<!tf_type.resource<tensor<10xf32>>>' of operand #0, resource type operands are expected to have been canonicalized away for region based control flow ops}}
      %1:2 = "tf.WhileRegion"(%stack, %max_size) ({
        ^bb0 (%carg0: tensor<!tf_type.resource>, %carg1: tensor<i32>):
        %pred = "tf._SomeOp"(%carg1) : (tensor<i32>) -> tensor<i1>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 25.8K bytes
    - Viewed (0)
  4. src/net/http/response.go

    	// Header values are duplicated by other fields in this struct (e.g.,
    	// ContentLength, TransferEncoding, Trailer), the field values are
    	// authoritative.
    	//
    	// Keys in the map are canonicalized (see CanonicalHeaderKey).
    	Header Header
    
    	// Body represents the response body.
    	//
    	// The response body is streamed on demand as the Body field
    	// is read. If the network connection fails or the server
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/tensor_array_ops_decomposition.cc

                 << "found unexpected type " << operand.get().getType()
                 << " of operand #" << operand.getOperandNumber()
                 << ", resource type operands are expected to have been "
                    "canonicalized away for region based control flow ops";
        }
      }
      for (OpResult result : op.getResults()) {
        if (getElementTypeOrSelf(result.getType()).isa<TF::ResourceType>()) {
          return op.emitOpError()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 02 20:41:19 UTC 2023
    - 40.2K bytes
    - Viewed (0)
  6. pkg/volume/util/fsquota/quota_linux.go

    }
    
    func clearBackingDev(path string) {
    	backingDevLock.Lock()
    	defer backingDevLock.Unlock()
    	delete(backingDevMap, path)
    }
    
    // Assumes that the path has been fully canonicalized
    // Breaking this up helps with testing
    func detectMountpointInternal(m mount.Interface, path string) (string, error) {
    	for path != "" && path != "/" {
    		// per k8s.io/mount-utils/mount_linux this detects all but
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 07 08:07:51 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  7. src/cmd/go/internal/search/search.go

    				}
    			}
    		} else {
    			m.MatchPackages()
    		}
    
    		out = append(out, m)
    	}
    	return out
    }
    
    // CleanPatterns returns the patterns to use for the given command line. It
    // canonicalizes the patterns but does not evaluate any matches. For patterns
    // that are not local or absolute paths, it preserves text after '@' to avoid
    // modifying version queries.
    func CleanPatterns(patterns []string) []string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 31 20:33:05 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  8. src/mime/multipart/multipart.go

    // wouldn't be safe to consume a single byte from it.
    const peekBufferSize = 4096
    
    // A Part represents a single part in a multipart body.
    type Part struct {
    	// The headers of the body, if any, with the keys canonicalized
    	// in the same fashion that the Go http.Request headers are.
    	// For example, "foo-bar" changes case to "Foo-Bar"
    	Header textproto.MIMEHeader
    
    	mr *Reader
    
    	disposition       string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 16:12:35 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/types/typeutil/map.go

    )
    
    // Map is a hash-table-based mapping from types (types.Type) to
    // arbitrary any values.  The concrete types that implement
    // the Type interface are pointers.  Since they are not canonicalized,
    // == cannot be used to check for equivalence, and thus we cannot
    // simply use a Go map.
    //
    // Just as with map[K]V, a nil *Map is a valid empty map.
    //
    // Not thread-safe.
    type Map struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/stablehlo/passes/replace_stablehlo_ops_in_main_function_with_xla_call_module_ops.cc

    // constant is useful for shape inference for multiple subgraphs, they can be
    // included in each subgraphs. If duplicate constants are accidentally created
    // in the same subgraph, they can be easily removed with a canonicalizer pass.
    //
    // We set a size limit since constants needed for shape inference are no
    // larger than tensor rank. This avoids duplicating large constants.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21K bytes
    - Viewed (0)
Back to top