Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 51 for striped (0.12 sec)

  1. platforms/documentation/docs/src/docs/css/javadoc.css

    }
    table.striped {
        border-collapse: collapse;
        border: 1px solid var(--table-border-color);
    }
    table.striped > thead {
        background-color: var(--subnav-background-color);
    }
    table.striped > thead > tr > th, table.striped > thead > tr > td {
        border: 1px solid var(--table-border-color);
    }
    table.striped > tbody > tr:nth-child(even) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
  2. cluster/gce/windows/k8s-node-setup.psm1

      # Wait (if necessary) for service to stop.
      $timeout = 10
      $stopped = (Get-service $service).Status -eq 'Stopped'
      for ($i = 0; $i -lt $timeout -and !($stopped); $i++) {
          Start-Sleep 1
          $stopped = (Get-service $service).Status -eq 'Stopped'
      }
    
      if ((Get-service $service).Status -ne 'Stopped') {
        # Force kill the processes.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  3. src/runtime/mgc.go

    	"unsafe"
    )
    
    const (
    	_DebugGC      = 0
    	_FinBlockSize = 4 * 1024
    
    	// concurrentSweep is a debug flag. Disabling this flag
    	// ensures all spans are swept while the world is stopped.
    	concurrentSweep = true
    
    	// debugScanConservative enables debug logging for stack
    	// frames that are scanned conservatively.
    	debugScanConservative = false
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  4. src/runtime/mgcmark.go

    			// goroutines to scan themselves; and the
    			// second blocks.
    			stopped := suspendG(gp)
    			if stopped.dead {
    				gp.gcscandone = true
    				return
    			}
    			if gp.gcscandone {
    				throw("g already scanned")
    			}
    			workDone += scanstack(gp, gcw)
    			gp.gcscandone = true
    			resumeG(stopped)
    
    			if selfScan {
    				casgstatus(userG, _Gwaiting, _Grunning)
    			}
    		})
    	}
    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. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

          URI(uri)
        } catch (e: URISyntaxException) {
          // Unlikely edge case: the URI has a forbidden character in the fragment. Strip it & retry.
          try {
            val stripped = uri.replace(Regex("[\\u0000-\\u001F\\u007F-\\u009F\\p{javaWhitespace}]"), "")
            URI.create(stripped)
          } catch (e1: Exception) {
            throw RuntimeException(e) // Unexpected!
          }
        }
      }
    
      /**
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 09 12:33:05 UTC 2024
    - 63.5K bytes
    - Viewed (0)
  6. src/syscall/zerrors_linux_386.go

    	12: "user defined signal 2",
    	13: "broken pipe",
    	14: "alarm clock",
    	15: "terminated",
    	16: "stack fault",
    	17: "child exited",
    	18: "continued",
    	19: "stopped (signal)",
    	20: "stopped",
    	21: "stopped (tty input)",
    	22: "stopped (tty output)",
    	23: "urgent I/O condition",
    	24: "CPU time limit exceeded",
    	25: "file size limit exceeded",
    	26: "virtual timer expired",
    	27: "profiling timer expired",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 57.4K bytes
    - Viewed (0)
  7. src/runtime/mgcpacer.go

    	//
    	// Updated while the world is stopped.
    	triggered uint64
    
    	// lastHeapGoal is the value of heapGoal at the moment the last GC
    	// ended. Note that this is distinct from the last value heapGoal had,
    	// because it could change if e.g. gcPercent changes.
    	//
    	// Read and written with the world stopped or with mheap_.lock held.
    	lastHeapGoal 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)
  8. src/syscall/zerrors_netbsd_386.go

    	12: "bad system call",
    	13: "broken pipe",
    	14: "alarm clock",
    	15: "terminated",
    	16: "urgent I/O condition",
    	17: "stopped (signal)",
    	18: "stopped",
    	19: "continued",
    	20: "child exited",
    	21: "stopped (tty input)",
    	22: "stopped (tty output)",
    	23: "I/O possible",
    	24: "cputime limit exceeded",
    	25: "filesize limit exceeded",
    	26: "virtual timer expired",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 67.5K bytes
    - Viewed (0)
  9. src/syscall/zerrors_linux_arm.go

    	12: "user defined signal 2",
    	13: "broken pipe",
    	14: "alarm clock",
    	15: "terminated",
    	16: "stack fault",
    	17: "child exited",
    	18: "continued",
    	19: "stopped (signal)",
    	20: "stopped",
    	21: "stopped (tty input)",
    	22: "stopped (tty output)",
    	23: "urgent I/O condition",
    	24: "CPU time limit exceeded",
    	25: "file size limit exceeded",
    	26: "virtual timer expired",
    	27: "profiling timer expired",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 57.9K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zerrors_aix_ppc.go

    	{14, "SIGALRM", "alarm clock"},
    	{15, "SIGTERM", "terminated"},
    	{16, "SIGURG", "urgent I/O condition"},
    	{17, "SIGSTOP", "stopped (signal)"},
    	{18, "SIGTSTP", "stopped"},
    	{19, "SIGCONT", "continued"},
    	{20, "SIGCHLD", "child exited"},
    	{21, "SIGTTIN", "stopped (tty input)"},
    	{22, "SIGTTOU", "stopped (tty output)"},
    	{23, "SIGIO", "I/O possible/complete"},
    	{24, "SIGXCPU", "cputime limit exceeded"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 52.4K bytes
    - Viewed (0)
Back to top