Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 56 for substVar (0.15 sec)

  1. tensorflow/cc/framework/scope.cc

          (*name_map)[name] = 0;
          // Add all name prefixes ('/' separated).
          size_t idx = -1;
          while ((idx = name.find(kScopeSeparator, idx + 1)) != string::npos) {
            (*name_map)[name.substr(0, idx)] = 0;
          }
        }
        // We provide null destructors for these shared ptrs (except for name_map)
        // since the caller owns them and doesn't want the scope to destroy them.
        return Scope(new Scope::Impl(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/resources/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/uikit.min.js

    urn null;var a;At(t=t.replace(Et,"$1 *"))&&(a=[],t=t.match(_t).map(function(t){return t.replace(/,$/,"").trim()}).map(function(t,e){var i=s;if("!"===t[0]){var n=t.substr(1).trim().split(" ");i=Dt(Pt(s),n[0]),t=n.slice(1).join(" ").trim()}if("-"===t[0]){var r=t.substr(1).trim().split(" "),o=(i||s).previousElementSibling;i=Mt(o,t.substr(1))?o:null,t=r.slice(1).join(" ")}return i?(i.id||(i.id="uk-"+Date.now()+e,a.push(function(){return at(i,"id")})),"#"+Lt(i.id)+" "+t):null}).filter(Boolean).join("...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 130.5K bytes
    - Viewed (0)
  3. src/bytes/bytes_test.go

    	{[]byte(dots + dots + dots), " ", false},
    }
    
    func TestContainsAny(t *testing.T) {
    	for _, ct := range ContainsAnyTests {
    		if ContainsAny(ct.b, ct.substr) != ct.expected {
    			t.Errorf("ContainsAny(%s, %s) = %v, want %v",
    				ct.b, ct.substr, !ct.expected, ct.expected)
    		}
    	}
    }
    
    var ContainsRuneTests = []struct {
    	b        []byte
    	r        rune
    	expected bool
    }{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/mkerrors.sh

    		$2 ~ /^BLK[A-Z]*(GET$|SET$|BUF$|PART$|SIZE|IOMIN$|IOOPT$|ALIGNOFF$|DISCARD|ROTATIONAL$|ZEROOUT$|GETDISKSEQ$)/ {printf("\t%s = C.%s\n", $2, $2)}
    		$2 ~ /^__WCOREFLAG$/ {next}
    		$2 ~ /^__W[A-Z0-9]+$/ {printf("\t%s = C.%s\n", substr($2,3), $2)}
    
    		{next}
    	' | sort
    
    	echo ')'
    ) >_const.go
    
    # Pull out the error names for later.
    errors=$(
    	echo '#include <errno.h>' | $CC -x c - -E -dM $ccflags |
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/infer.go

    			dirty = append(dirty, i)
    		}
    	}
    
    	for len(dirty) > 0 {
    		if traceInference {
    			u.tracef("-- simplify %s ➞ %s", tparams, inferred)
    		}
    		// TODO(gri) Instead of creating a new substMap for each iteration,
    		// provide an update operation for substMaps and only change when
    		// needed. Optimization.
    		smap := makeSubstMap(tparams, inferred)
    		n := 0
    		for _, index := range dirty {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  6. src/go/types/infer.go

    			dirty = append(dirty, i)
    		}
    	}
    
    	for len(dirty) > 0 {
    		if traceInference {
    			u.tracef("-- simplify %s ➞ %s", tparams, inferred)
    		}
    		// TODO(gri) Instead of creating a new substMap for each iteration,
    		// provide an update operation for substMaps and only change when
    		// needed. Optimization.
    		smap := makeSubstMap(tparams, inferred)
    		n := 0
    		for _, index := range dirty {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/einsum.cc

        labels.insert('a' + i);
        labels.insert('A' + i);
      }
    
      auto is_start_of_ellipsis = [](StringRef equation, int start_index) {
        if (equation.size() < (start_index + 3)) return false;
    
        if (equation.substr(start_index, 3) != "...") return false;
        return true;
      };
    
      int lhs_count = 0;
      const int lhs_size = lhs.size();
      for (int i = 0; i < lhs_size; ++i) {
        const char label = lhs[i];
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/html.go

        }
    
        // Go through all columns and collapse needed phases.
        const td = document.getElementsByTagName("td");
        for (let i = 0; i < td.length; i++) {
            const id = td[i].id;
            const phase = id.substr(0, id.length-4);
            let show = expandedDefault.indexOf(phase) !== -1
    
            // If show == false, check to see if this is a combined column (multiple phases).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 15:11:40 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

      if (!func_name.starts_with(kCompositeFuncPrefix)) return "";
    
      auto base_function_name =
          llvm::Twine(kQuantizedFuncPrefix)
              .concat(llvm::Twine(func_name.substr(kCompositeFuncPrefix.size())
                                      .rsplit("_fn")
                                      .first));
    
      if (merged_with_dequantize) {
        return base_function_name.concat("_float_output_fn").str();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

      std::string data;
      if (parser.parseString(&data)) {
        return nullptr;
      }
      if (data.size() < 2 || data.substr(0, 2) != "0x") {
        parser.emitError(parser.getNameLoc(), "Hex string doesn't start with `0x`");
        return nullptr;
      }
    
      std::string bytes_data = absl::HexStringToBytes(data.substr(2));
      return ConstBytesAttr::get(parser.getBuilder().getContext(), bytes_data);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
Back to top