Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for Canonicalize (0.3 sec)

  1. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

            }
          }
    
        fun username(username: String) =
          apply {
            this.encodedUsername = username.canonicalize(encodeSet = USERNAME_ENCODE_SET)
          }
    
        fun encodedUsername(encodedUsername: String) =
          apply {
            this.encodedUsername =
              encodedUsername.canonicalize(
                encodeSet = USERNAME_ENCODE_SET,
                alreadyEncoded = true,
              )
          }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 09 12:33:05 UTC 2024
    - 63.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

          if (failed(result)) return WalkResult::interrupt();
          return WalkResult::advance();
        });
      });
    
      if (walk_result.wasInterrupted()) return signalPassFailure();
    
      // Clean up and canonicalize to remove dead local variables as some local
      // variables might be dead after hoisting resource loads/stores.
      if (failed(TF::CleanupAndCanonicalizeForResourceOpLifting(module)))
        return signalPassFailure();
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                            result.getProblems().add(problem);
                            continue;
                        }
    
                        if (Os.IS_WINDOWS) {
                            // we don't canonicalize on unix to avoid interfering with symlinks
                            try {
                                moduleFile = moduleFile.getCanonicalFile();
                            } catch (IOException e) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 57.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/S390X.rules

    // Note: this must match If statement lowering.
    (CLIJ {s390x.LessOrGreater} (LOCGR {d} (MOVDconst [0]) (MOVDconst [x]) cmp) [0] yes no)
      && int32(x) != 0
      => (BRC {d} cmp yes no)
    
    // Canonicalize BRC condition code mask by removing impossible conditions.
    // Integer comparisons cannot generate the unordered condition.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/load.go

    		// the package does not exist.
    		// Other errors may affect package loading, but not resolution.
    		if _, err := fsys.Stat(absDir); err != nil {
    			if os.IsNotExist(err) {
    				// Canonicalize OS-specific errors to errDirectoryNotFound so that error
    				// messages will be easier for users to search for.
    				return "", &fs.PathError{Op: "stat", Path: absDir, Err: errDirectoryNotFound}
    			}
    			return "", err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

                                  int32_t idx, BoolAttr use_32bit) {
      if (auto ranked_ty =
              mlir::dyn_cast_or_null<RankedTensorType>(input.getType())) {
        // Canonicalize negative index.
        if (idx < 0) {
          idx += ranked_ty.getRank();
        }
        // Return a ConstOp if it's static dimension.
        if (!ranked_ty.isDynamicDim(idx)) {
          return builder->create<TF::ConstOp>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  7. cmd/bucket-handlers.go

    	var (
    		reader        io.Reader
    		fileSize      int64 = -1
    		fileName      string
    		fanOutEntries = make([]minio.PutObjectFanOutEntry, 0, 100)
    	)
    
    	maxParts := 1000
    	// Canonicalize the form values into http.Header.
    	formValues := make(http.Header)
    	for {
    		part, err := mp.NextRawPart()
    		if errors.Is(err, io.EOF) {
    			break
    		}
    		if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/debug.go

    		}
    	}
    
    	if len(strs) == 1 {
    		return "(no vars)\n"
    	}
    	return strings.Join(strs, "")
    }
    
    // slotCanonicalizer is a table used to lookup and canonicalize
    // LocalSlot's in a type insensitive way (e.g. taking into account the
    // base name, offset, and width of the slot, but ignoring the slot
    // type).
    type slotCanonicalizer struct {
    	slmap  map[slotKey]SlKeyIdx
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (CMPWU x (MOVDconst [c])) && isU16Bit(c) => (CMPWUconst x [int32(c)])
    (CMPWU (MOVDconst [c]) y) && isU16Bit(c) => (InvertFlags (CMPWUconst y [int32(c)]))
    
    // Canonicalize the order of arguments to comparisons - helps with CSE.
    ((CMP|CMPW|CMPU|CMPWU) x y) && canonLessThan(x,y) => (InvertFlags ((CMP|CMPW|CMPU|CMPWU) y x))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    	oldMsg := msg
    
    	if n.Length > nonEncodedNameMax {
    		return nil, errNameTooLong
    	}
    
    	// Add a trailing dot to canonicalize name.
    	if n.Length == 0 || n.Data[n.Length-1] != '.' {
    		return oldMsg, errNonCanonicalName
    	}
    
    	// Allow root domain.
    	if n.Data[0] == '.' && n.Length == 1 {
    		return append(msg, 0), nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
Back to top