Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 189 for wereld (0.28 sec)

  1. src/main/resources/suggest_indices/_cloud/suggest_analyzer.json

          },
          "dutch_stop": {
            "type":       "stop",
            "stopwords":  "_dutch_"
          },
          "dutch_keywords": {
            "type":       "keyword_marker",
            "keywords": ["hallo", "wereld", "zoeken"]
          },
          "dutch_stemmer": {
            "type":       "stemmer",
            "language":   "dutch"
          },
          "dutch_override": {
            "type":       "stemmer_override",
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Feb 27 09:26:16 UTC 2021
    - 57.4K bytes
    - Viewed (0)
  2. src/main/resources/suggest_indices/_aws/suggest_analyzer.json

          },
          "dutch_stop": {
            "type":       "stop",
            "stopwords":  "_dutch_"
          },
          "dutch_keywords": {
            "type":       "keyword_marker",
            "keywords": ["hallo", "wereld", "zoeken"]
          },
          "dutch_stemmer": {
            "type":       "stemmer",
            "language":   "dutch"
          },
          "dutch_override": {
            "type":       "stemmer_override",
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Wed Mar 24 12:55:37 UTC 2021
    - 57.4K bytes
    - Viewed (0)
  3. src/runtime/mgc.go

    	// Wake all blocked assists. These will run when we
    	// start the world again.
    	gcWakeAllAssists()
    
    	// Likewise, release the transition lock. Blocked
    	// workers and assists will run when we start the
    	// world again.
    	semrelease(&work.markDoneSema)
    
    	// In STW mode, re-enable user goroutines. These will be
    	// queued to run after we start the world.
    	schedEnableUser(true)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  4. cmd/xl-storage_test.go

    		{
    			volume, "myobject", 0, 16,
    			[]byte("hello, world"),
    			io.ErrUnexpectedEOF,
    		},
    		// Reading from an offset success. - 7
    		{
    			volume, "myobject", 7, 5,
    			[]byte("world"), nil,
    		},
    		// Reading from an object but buffer size greater. - 8
    		{
    			volume, "myobject",
    			7, 8,
    			[]byte("world"),
    			io.ErrUnexpectedEOF,
    		},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 11 17:45:28 UTC 2024
    - 66.7K bytes
    - Viewed (0)
  5. src/runtime/mgcpacer.go

    	heapScan atomic.Uint64
    
    	// lastHeapScan is the number of bytes of heap that were scanned
    	// last GC cycle. It is the same as heapMarked, but only
    	// includes the "scannable" parts of objects.
    	//
    	// Updated when the world is stopped.
    	lastHeapScan uint64
    
    	// lastStackScan is the number of bytes of stack that were scanned
    	// last GC cycle.
    	lastStackScan atomic.Uint64
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  6. src/html/template/escape_test.go

    			"a<<!-- --><!-- -->b",
    			"a&lt;b",
    		},
    		{
    			"HTML doctype not normalized",
    			"<!DOCTYPE html>Hello, World!",
    			"<!DOCTYPE html>Hello, World!",
    		},
    		{
    			"HTML doctype not case-insensitive",
    			"<!doCtYPE htMl>Hello, World!",
    			"<!doCtYPE htMl>Hello, World!",
    		},
    		{
    			"No doctype injection",
    			`<!{{"DOCTYPE"}}`,
    			"&lt;!DOCTYPE",
    		},
    		{
    			"Split HTML comment",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
  7. src/runtime/mgcmark.go

    	gp.param = nil
    	if completed {
    		gcMarkDone()
    	}
    
    	if gp.gcAssistBytes < 0 {
    		// We were unable steal enough credit or perform
    		// enough work to pay off the assist debt. We need to
    		// do one of these before letting the mutator allocate
    		// more to prevent over-allocation.
    		//
    		// If this is because we were preempted, reschedule
    		// and try some more.
    		if gp.preempt {
    			Gosched()
    			goto retry
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  8. src/runtime/mgcscavenge.go

    		// if both the current and last generation were not dense.
    		return sc.inUse < scavChunkHiOccPages && sc.lastInUse < scavChunkHiOccPages
    	}
    	// If we're one or more generations ahead, we know inUse represents the current
    	// state of the chunk, since otherwise it would've been updated already.
    	return sc.inUse < scavChunkHiOccPages
    }
    
    // alloc updates sc given that npages were allocated in the corresponding chunk.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  9. src/os/os_test.go

    	defer Remove(f.Name())
    	defer f.Close()
    
    	const data = "hello, world\n"
    	io.WriteString(f, data)
    
    	b := make([]byte, 5)
    	n, err := f.ReadAt(b, 7)
    	if err != nil || n != len(b) {
    		t.Fatalf("ReadAt 7: %d, %v", n, err)
    	}
    	if string(b) != "world" {
    		t.Fatalf("ReadAt 7: have %q want %q", string(b), "world")
    	}
    }
    
    // Verify that ReadAt doesn't affect seek offset.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  10. src/runtime/mprof.go

    // during STW. The caller must call mProf_Flush before calling
    // mProf_NextCycle again.
    //
    // This is called by mark termination during STW so allocations and
    // frees after the world is started again count towards a new heap
    // profiling cycle.
    func mProf_NextCycle() {
    	mProfCycle.increment()
    }
    
    // mProf_Flush flushes the events from the current heap profiling
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
Back to top