8 Matching Annotations
  1. Last 7 days
    1. **Coding, support, and search**represent the lion's share of use cases by far (with coding being an order-of-magnitude outlier even among this set), while the**tech, legal, and healthcare sectors** have been the industries most eager to adopt AI.

      AI在企业中的采用呈现出明显的行业和应用场景集中现象。编程辅助工具以数量级优势领先,这反映了AI在结构化、可验证任务上的卓越表现。同时,法律和医疗等传统上技术采用较慢的行业也表现出对AI的强烈兴趣,表明AI正在改变不同行业的技术采用模式。

  2. Nov 2024
    1. #ifdef CONFIG_STACK_GROWSUP return vma_lookup(mm, addr); #else static volatile unsigned long next_warn; struct vm_area_struct *vma; unsigned long now, next; vma = find_vma(mm, addr); if (!vma || (addr >= vma->vm_start)) return vma; /* Only warn for half-way relevant accesses */ if (!(vma->vm_flags & VM_GROWSDOWN)) return NULL; if (vma->vm_start - addr > 65536) return NULL; /* Let's not warn more than once an hour.. */ now = jiffies; next = next_warn; if (next && time_before(now, next)) return NULL; next_warn = now + 60*60*HZ; /* Let people know things may have changed. */ pr_warn("GUP no longer grows the stack in %s (%d): %lx-%lx (%lx)\n", current->comm, task_pid_nr(current), vma->vm_start, vma->vm_end, addr); dump_stack(); return NULL;

      helper func to lookup vma(virtual mem area) that warns per hour about half way relevant acc and changes in stack

  3. Oct 2024
    1. if (unlikely(--latency_ration < 0)) { cond_resched(); latency_ration = LATENCY_LIMIT; scanned_many = true; } if (swap_offset_available_and_locked(si, offset)) goto checks; } offset = si->lowest_bit; while (offset < scan_base) { if (unlikely(--latency_ration < 0)) { cond_resched(); latency_ration = LATENCY_LIMIT; scanned_many = true; }

      Here, a policy decision is made to fully replenish the latency_ration with the LATENCY_LIMIT and then yield back to the scheduler if we've exhausted it. This makes it so that when scheduled again, we have the full LATENCY_LIMIT to do a scan. Alternative policies could grow/shrink this to find a better heuristic instead of fully replenishing each time.

      Marked config/value as awe're replacing latency_ration with a compiletime-defined limit.

  4. Apr 2024
    1. In summary, public and private rangeland resources provide a wide variety of EGS. Additionally,spiritual values are vital to the well-being of ranching operations, surrounding communities, and the nation as a whole. Society is placing multiple demands on the nation’s natural resources,and it is extremely important that NRCS be able to provide resource data and technical assistance at local and national levels. (4) Rangelands are in constant jeopardy, either from misuse or conversion to other uses. Holechek et al. (2004) andHolechek (2013) states that in the next 100 years, up to 40percentof U.S. rangelands could be converted and lost to other uses. Land-use shifts from grazing use to urbanization will be much greater in areas of more rapid population increases and associated appreciating land values. Projections supporting forage demand suggestthat changes in land use will decrease the amount of land available for grazing to a greater extent in the Pacific Coast and Rocky Mountains,compared to the North or South Assessment Regions (Mitchell 2000).(5) As society attempts to satisfy multiple demands with limited resources, many ranching and farming operations seek to expand operations for multiple goods and services beyond traditional cattle production. Some diversifiedenterprises may include the following: (i) Management to enhance wildlife abundance and diversityfor fishing, hunting and non-hunting activities(ii) Maintaining habitat for rare plants(iii) Accommodatingnature enthusiasts, bird watchers, and amateur botanists. (6) Planning, evaluation, and communication are necessary steps (consult conservation planning steps) prior to initiating any new rangeland EGS-based enterprises.
  5. Oct 2020
  6. Feb 2020
    1. The coat is a use value that satisfies a particular want

      Marx: "Yesterday I pawned a coat dating back to my Liverpool days in order to buy writing paper" (Karl Marx and Frederick Engels, Collected Works, vol. 38 [1852-55]: 221).

      On the significance of Marx's coat, see Peter Stallybrass, “Marx’s Coat,” in Border Fetishisms: Material Objects in Unstable Spaces, ed. Patricia Spyer (New York: Routledge, 1998): 183–207. [PDF].

    2. Section 1. The Two Factors of a Commodity, Use-Value and Value

      Marx's analysis of a capitalist system begins by postulating that it's fundamentally composed of units called commodities.

      In the capitalist system commodities have two features.

      1. They are produced

      2. They are produced by capitalists

      Capitalists produce commodities by employing workers to produce them.

      In this section, Marx begins his analysis of the first feature of the capitalist system (viz. that it is commodity producing). Workers and capitalists will not appear in Marx's analysis for several more chapters.