Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for posFor (0.46 sec)

  1. src/go/printer/nodes.go

    	if len(list) == 0 {
    		if isIncomplete {
    			prev := p.posFor(prev0)
    			next := p.posFor(next0)
    			if prev.IsValid() && prev.Line == next.Line {
    				p.print("/* " + filteredMsg + " */")
    			} else {
    				p.print(newline)
    				p.print(indent, "// "+filteredMsg, unindent, newline)
    			}
    		}
    		return
    	}
    
    	prev := p.posFor(prev0)
    	next := p.posFor(next0)
    	line := p.lineFor(list[0].Pos())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  2. guava/src/com/google/common/cache/CacheBuilder.java

       * WeakReference} (by default, strong references are used).
       *
       * <p>Weak values will be garbage collected once they are weakly reachable. This makes them a poor
       * candidate for caching; consider {@link #softValues} instead.
       *
       * <p><b>Note:</b> when this method is used, the resulting cache will use identity ({@code ==})
       * comparison to determine equality of values.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  3. src/main/webapp/js/bootstrap.min.js

    visible")&&n.focus()})});Te._jQueryInterface.call(g(e),o,this)}),g.fn[ne]=Te._jQueryInterface,g.fn[ne].Constructor=Te,g.fn[ne].noConflict=function(){return g.fn[ne]=re,Te._jQueryInterface};var be=["background","cite","href","itemtype","longdesc","poster","src","xlink:href"],Se={"*":["class","dir","id","lang","role",/^aria-[\w-]*$/i],a:["target","href","title","rel"],area:[],b:[],br:[],col:[],code:[],div:[],em:[],hr:[],h1:[],h2:[],h3:[],h4:[],h5:[],h6:[],i:[],img:["src","alt","title","width","hei...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 58.6K bytes
    - Viewed (0)
  4. src/main/webapp/js/admin/bootstrap.min.js

    visible")&&n.focus()})});Te._jQueryInterface.call(g(e),o,this)}),g.fn[ne]=Te._jQueryInterface,g.fn[ne].Constructor=Te,g.fn[ne].noConflict=function(){return g.fn[ne]=re,Te._jQueryInterface};var be=["background","cite","href","itemtype","longdesc","poster","src","xlink:href"],Se={"*":["class","dir","id","lang","role",/^aria-[\w-]*$/i],a:["target","href","title","rel"],area:[],b:[],br:[],col:[],code:[],div:[],em:[],hr:[],h1:[],h2:[],h3:[],h4:[],h5:[],h6:[],i:[],img:["src","alt","title","width","hei...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 58.6K bytes
    - Viewed (0)
  5. src/runtime/mgcmark.go

    	casgstatus(gp, _Gwaiting, _Grunning)
    
    	// Record that we did this much scan work.
    	//
    	// Back out the number of bytes of assist credit that
    	// this scan work counts for. The "1+" is a poor man's
    	// round-up, to ensure this adds credit even if
    	// assistBytesPerWork is very low.
    	assistBytesPerWork := gcController.assistBytesPerWork.Load()
    	gp.gcAssistBytes += 1 + int64(assistBytesPerWork*float64(workDone))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    Derived* CheckedDowncastToActualType(Base* base) {
    #if GTEST_HAS_RTTI
      GTEST_CHECK_(typeid(*base) == typeid(Derived));
      return dynamic_cast<Derived*>(base);  // NOLINT
    #else
      return static_cast<Derived*>(base);  // Poor man's downcast.
    #endif
    }
    
    #if GTEST_HAS_STREAM_REDIRECTION
    
    // Defines the stderr capturer:
    //   CaptureStdout     - starts capturing stdout.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    Derived* CheckedDowncastToActualType(Base* base) {
    #if GTEST_HAS_RTTI
      GTEST_CHECK_(typeid(*base) == typeid(Derived));
      return dynamic_cast<Derived*>(base);  // NOLINT
    #else
      return static_cast<Derived*>(base);  // Poor man's downcast.
    #endif
    }
    
    #if GTEST_HAS_STREAM_REDIRECTION
    
    // Defines the stderr capturer:
    //   CaptureStdout     - starts capturing stdout.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/MapMakerInternalMap.java

          return new WeakValueReferenceImpl<>(queue, get(), entry);
        }
      }
    
      /**
       * Applies a supplemental hash function to a given hash code, which defends against poor quality
       * hash functions. This is critical when the concurrent hash map uses power-of-two length hash
       * tables, that otherwise encounter collisions for hash codes that do not differ in lower or upper
       * bits.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/rewrite.go

    				if vchange && debug > 1 {
    					fmt.Printf("rewriting %s  ->  %s\n", v0.LongString(), v.LongString())
    				}
    
    				// apply rewrite function
    				if rv(v) {
    					vchange = true
    					// If value changed to a poor choice for a statement boundary, move the boundary
    					if v.Pos.IsStmt() == src.PosIsStmt {
    						if k := nextGoodStatementIndex(v, j, b); k != j {
    							v.Pos = v.Pos.WithNotStmt()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

          return new WeakValueReferenceImpl<>(queue, get(), entry);
        }
      }
    
      /**
       * Applies a supplemental hash function to a given hash code, which defends against poor quality
       * hash functions. This is critical when the concurrent hash map uses power-of-two length hash
       * tables, that otherwise encounter collisions for hash codes that do not differ in lower or upper
       * bits.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
Back to top