Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 67 for crack (0.54 sec)

  1. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"application/vnd.commonspace",
    				"application/vnd.contact.cmsg",
    				"application/vnd.cosmocaller",
    				"application/vnd.crick.clicker",
    				"application/vnd.crick.clicker.keyboard",
    				"application/vnd.crick.clicker.palette",
    				"application/vnd.crick.clicker.template",
    				"application/vnd.crick.clicker.wordbank",
    				"application/vnd.criticaltools.wbs+xml",
    				"application/vnd.ctc-posml",
    				"application/vnd.ctct.ws+xml",
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
  2. src/runtime/mheap.go

    	if pp != nil && bytesToScavenge > 0 {
    		// Measure how long we spent scavenging and add that measurement to the assist
    		// time so we can track it for the GC CPU limiter.
    		//
    		// Limiter event tracking might be disabled if we end up here
    		// while on a mark worker.
    		start := nanotime()
    		track := pp.limiterEvent.start(limiterEventScavengeAssist, start)
    
    		// Scavenge, but back out if the limiter turns on.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  3. docs/changelogs/changelog_3x.md

        which is an exception-throwing alternative to `MediaType.parse(String)`.
     *  New: The `EventListener` API previewed in OkHttp 3.9 has graduated to a stable API. Use this
        interface to track metrics and monitor HTTP requests' size and duration.
     *  New: `okhttp-dnsoverhttps` is an experimental API for doing DNS queries over HTTPS. Using HTTPS
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  4. src/runtime/mgcmark.go

    		// Instead we recheck it here on the non-preemptible system
    		// stack to determine if we should perform an assist.
    
    		// GC is done, so ignore any remaining debt.
    		gp.gcAssistBytes = 0
    		return
    	}
    	// Track time spent in this assist. Since we're on the
    	// system stack, this is non-preemptible, so we can
    	// just measure start and end time.
    	//
    	// Limiter event tracking might be disabled if we end up here
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  5. src/go/parser/parser.go

    	exprLev int  // < 0: in control clause, >= 0: in expression
    	inRhs   bool // if set, the parser is parsing a rhs expression
    
    	imports []*ast.ImportSpec // list of imports
    
    	// nestLev is used to track and limit the recursion depth
    	// during parsing.
    	nestLev int
    }
    
    func (p *parser) init(fset *token.FileSet, filename string, src []byte, mode Mode) {
    	p.file = fset.AddFile(filename, -1, len(src))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  6. pkg/scheduler/internal/queue/scheduling_queue.go

    	// queue is empty and waits until a new item is added to the queue.
    	Pop(logger klog.Logger) (*framework.QueuedPodInfo, error)
    	// Done must be called for pod returned by Pop. This allows the queue to
    	// keep track of which pods are currently being processed.
    	Done(types.UID)
    	Update(logger klog.Logger, oldPod, newPod *v1.Pod) error
    	Delete(pod *v1.Pod) error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  7. src/index/suffixarray/sais2.go

    	// "LMS-substring iterator".
    	//
    	// In every scan through the text, c0, c1 are successive characters of text.
    	// In this backward scan, c0 == text[i] and c1 == text[i+1].
    	// By scanning backward, we can keep track of whether the current
    	// position is type-S or type-L according to the usual definition:
    	//
    	//	- position len(text) is type S with text[len(text)] == -1 (the sentinel)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/conversion.go

    	// Format is ns/hostname
    	Hostnames []string
    	// OriginalHostname is the unprocessed form of Hostnames; how it appeared in users' config
    	OriginalHostname string
    
    	// AttachedRoutes keeps track of how many routes are attached to this parent. This is tracked for status.
    	// Because this is mutate in the route generation, parentInfo must be passed as a pointer
    	AttachedRoutes int32
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/deadness_analysis.cc

    }
    
    // Compute a special topological order for the Graph, where nodes having the
    // same root frame are placed adjacent to each other.  The traversal uses a
    // variant of Kahn's algorithm.  num_ready_inputs is used to keep track of how
    // many inputs of each node are ready; a node is ready to be scheduled if all
    // of its inputs are ready.
    // Ref. to https://en.wikipedia.org/wiki/Topological_sorting for details.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    | [[incremental]]`@link:{javadocPath}/org/gradle/work/Incremental.html[Incremental]`
    | `Provider<FileSystemLocation>` or `FileCollection`
    | Used with `@InputFiles` or `@InputDirectory` to instruct Gradle to track changes to the annotated file property, so the changes can be queried via `@link:{groovyDslPath}/org.gradle.work.InputChanges.html[InputChanges.getFileChanges()]`. Required for <<custom_tasks.adoc#incremental_tasks,incremental tasks>>.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
Back to top