Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 73 for substVar (0.47 sec)

  1. tensorflow/compiler/mlir/lite/transforms/lift_tflite_flex_ops.cc

        if (!op.getCustomCode().starts_with(kFlexOpNamePrefix)) {
          return failure();
        }
    
        llvm::StringRef tf_op_name =
            op.getCustomCode().substr(kFlexOpNamePrefix.size());
        const std::string tf_op_full_name = llvm::Twine("tf.", tf_op_name).str();
    
        // Create the TF op
        OperationState op_state(op.getLoc(), tf_op_full_name);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/filesystem/plugins/gcs/gcs_filesystem.cc

        TF_SetStatus(status, TF_INVALID_ARGUMENT,
                     "GCS path doesn't contain a bucket name.");
        return;
      }
    
      *bucket = fname.substr(scheme_end + 1, bucket_end - scheme_end - 1);
      *object = fname.substr(bucket_end + 1);
    
      if (object->empty() && !object_empty_ok) {
        TF_SetStatus(status, TF_INVALID_ARGUMENT,
                     "GCS path doesn't contain an object name.");
      }
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 23 06:55:53 UTC 2023
    - 46.9K bytes
    - Viewed (0)
  3. pkg/volume/emptydir/empty_dir_test.go

    		})
    	}
    }
    
    func TestTmpfsMountOptions(t *testing.T) {
    	subQuantity := resource.MustParse("123Ki")
    
    	doesStringArrayContainSubstring := func(strSlice []string, substr string) bool {
    		for _, s := range strSlice {
    			if strings.Contains(s, substr) {
    				return true
    			}
    		}
    		return false
    	}
    
    	testCases := map[string]struct {
    		tmpfsNoswapSupported bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  4. src/internal/trace/traceviewer/mmu.go

          function mmuFlags() {
            var flags = "";
            $("#options input").each(function(i, elt) {
              if (elt.checked)
                flags += "|" + elt.id;
            });
            return flags.substr(1);
          }
    
          function refreshChart() {
            if (!chartsReady) return;
            var container = $('#mmu_chart');
            container.css('opacity', '.5');
            refreshChart.count++;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:29:53 UTC 2023
    - 13K bytes
    - Viewed (0)
  5. src/syscall/mkerrors.sh

    		$2 !~ /^(BPF_TIMEVAL)$/ &&
    		$2 ~ /^(BPF|DLT)_/ ||
    		$2 !~ "WMESGLEN" &&
    		$2 ~ /^W[A-Z0-9]+$/ {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: Thu Oct 06 21:22:22 UTC 2022
    - 10.7K bytes
    - Viewed (0)
  6. src/internal/trace/traceviewer/http.go

      }
    
      function onModelLoaded() {
        viewer.model = model;
        viewer.viewTitle = "trace";
    
        if (!model || model.bounds.isEmpty)
          return;
        var sel = window.location.hash.substr(1);
        if (sel === '')
          return;
        var parts = sel.split(':');
        var range = new (tr.b.Range || tr.b.math.Range)();
        range.addValue(parseFloat(parts[0]));
        range.addValue(parseFloat(parts[1]));
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:29:53 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. src/main/webapp/js/admin/moment-with-locales.min.js

    our=!0}),le("hmm",function(e,a,t){var s=e.length-2;a[Ye]=g(e.substr(0,s)),a[ye]=g(e.substr(s)),Y(t).bigHour=!0}),le("hmmss",function(e,a,t){var s=e.length-4,n=e.length-2;a[Ye]=g(e.substr(0,s)),a[ye]=g(e.substr(s,2)),a[fe]=g(e.substr(n)),Y(t).bigHour=!0}),le("Hmm",function(e,a,t){var s=e.length-2;a[Ye]=g(e.substr(0,s)),a[ye]=g(e.substr(s))}),le("Hmmss",function(e,a,t){var s=e.length-4,n=e.length-2;a[Ye]=g(e.substr(0,s)),a[ye]=g(e.substr(s,2)),a[fe]=g(e.substr(n))});var ea,aa=Se("Hours",!0),ta={ca...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jul 12 13:18:07 UTC 2018
    - 319K bytes
    - Viewed (0)
Back to top