Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 47 of 47 for Footnote (0.2 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/ModelGraph.java

        private final Deque<ModelListener> pendingListeners = new ArrayDeque<>();
        private final Map<ModelNodeInternal, PendingState> pendingNodes = new LinkedHashMap<>();
    
        public ModelGraph(ModelNodeInternal rootNode) {
            this.root = rootNode;
            flattened.put(root.getPath(), root);
        }
    
        public ModelNodeInternal getRoot() {
            return root;
        }
    
        public Map<ModelPath, ModelNodeInternal> getFlattened() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  2. mkdocs.yml

          toggle:
            icon: octicons/moon-24
            name: "Switch to Light Mode"
      features:
      - navigation.tabs
    
    extra_css:
      - 'assets/css/app.css'
    
    markdown_extensions:
      - smarty
      - footnotes
      - meta
      - toc:
          permalink: true
      - attr_list
      - pymdownx.betterem:
          smart_enable: all
      - pymdownx.caret
      - pymdownx.emoji:
          emoji_index: !!python/name:materialx.emoji.twemoji
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Nov 20 15:26:12 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  3. src/runtime/os_plan9.go

    	for mp := (*m)(atomic.Loadp(unsafe.Pointer(&allm))); mp != nil; mp = mp.alllink {
    		if mp.procid != 0 && mp.procid != pid {
    			postnote(mp.procid, buf[:])
    		}
    	}
    	getg().m.locks--
    }
    
    var procdir = []byte("/proc/")
    var notefile = []byte("/note\x00")
    
    func postnote(pid uint64, msg []byte) int {
    	var buf [128]byte
    	var tmp [32]byte
    	n := copy(buf[:], procdir)
    	n += copy(buf[n:], itoa(tmp[:], pid))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

                    formatter.startChildren();
                    formatter.node(from.getSimpleName());
                    depth++;
                }
            } while (from != null && !(from instanceof RootNode));
            for (int i = 0; i < depth; i++) {
                formatter.endChildren();
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  5. src/internal/trace/traceviewer/static/trace_viewer_full.html

    addTreeValuesToHistogramSet(rootNode,histogramSet){const rootPath=[[],[],[]];this.rootNode_=rootNode;this.histogramSet_=histogramSet;this.reportDataFromTree_(this.rootNode_,rootPath);}
    static reportToHistogramSet(rootNode,histogramSet){const reporter=new CpuTimeTreeDataReporter();reporter.addTreeValuesToHistogramSet(rootNode,histogramSet);}}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (0)
  6. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    And this may suffice for an Introduction to Readers of quick Wit and good Understanding not yet versed in Opticks: Although those who are already acquainted with this Science, and have handled Glasses, will more readily apprehend what followeth. FOOTNOTES: [A] In our Author's _Lectiones Opticæ_, Part I. Sect. IV. Prop 29, 30, there is an elegant Method of determining these _Foci_; not only in spherical Surfaces, but likewise in any other curved Figure whatever: And in Prop. 32, 33, the same thing...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
  7. src/testdata/Isaac.Newton-Opticks.txt

    Introduction to Readers of quick Wit and good Understanding not yet
    versed in Opticks: Although those who are already acquainted with this
    Science, and have handled Glasses, will more readily apprehend what
    followeth.
    
    FOOTNOTES:
    
    [A] In our Author's _Lectiones Opticæ_, Part I. Sect. IV. Prop 29, 30,
    there is an elegant Method of determining these _Foci_; not only in
    spherical Surfaces, but likewise in any other curved Figure whatever:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 01 16:16:21 UTC 2018
    - 553.9K bytes
    - Viewed (0)
Back to top