Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for striped (0.14 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. 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)
  6. pkg/kubelet/pod_workers.go

    	// a pod that is no longer known to the kubelet to terminate those containers. It should not
    	// exit without error unless all containers are known to be stopped.
    	SyncTerminatingRuntimePod(ctx context.Context, runningPod *kubecontainer.Pod) error
    	// SyncTerminatedPod is invoked after all running containers are stopped and is responsible
    	// for releasing resources that should be executed right away rather than in the background.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  7. pkg/volume/testing/testing.go

    // commands to expect. Calling more commands using fe than those scripted will
    // result in a panic. By default, the fe does not enforce command argument checking
    // or order -- if you have given an Output to the command, the first command scripted
    // will return its output on the first command call, even if the command called is
    // different than the one scripted. This is mostly useful to make sure that the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  8. src/time/time.go

    // Because t.AddDate(y, m, d), t.Round(d), and t.Truncate(d) are wall time
    // computations, they always strip any monotonic clock reading from their results.
    // Because t.In, t.Local, and t.UTC are used for their effect on the interpretation
    // of the wall time, they also strip any monotonic clock reading from their results.
    // The canonical way to strip a monotonic clock reading is to use t = t.Round(0).
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  9. src/net/http/client_test.go

    	})).ts
    
    	c := ts.Client()
    	_, err := c.Get(ts.URL)
    	if e, g := `Get "/?n=10": stopped after 10 redirects`, fmt.Sprintf("%v", err); e != g {
    		t.Errorf("with default client Get, expected error %q, got %q", e, g)
    	}
    
    	// HEAD request should also have the ability to follow redirects.
    	_, err = c.Head(ts.URL)
    	if e, g := `Head "/?n=10": stopped after 10 redirects`, fmt.Sprintf("%v", err); e != g {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  10. src/net/netip/netip_test.go

    		{mustPrefix("::ffff:192.168.140.255/8"), "::ffff:192.168.140.255/8"},
    		{PrefixFrom(mustIP("::ffff:c000:0280").WithZone("eth0"), 37), "::ffff:192.0.2.128/37"}, // Zone should be stripped
    	}
    	for i, tt := range tests {
    		if got := tt.in.String(); got != tt.want {
    			t.Errorf("%d. for %v String = %q; want %q", i, tt.in, got, tt.want)
    		}
    		mt, err := tt.in.MarshalText()
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
Back to top