Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 84 of 84 for central (0.34 sec)

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

    button,
    input {
    	line-height: normal;
    }
    
    /** Address inconsistent `text-transform` inheritance for `button` and `select`. All other form control elements do not inherit `text-transform` values. Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+. Correct `select` style inheritance in Firefox 4+ and Opera. */
    button,
    select {
    	text-transform: none;
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  2. cluster/gce/windows/k8s-node-setup.psm1

    # Not setting these values correctly can cause network issues for connections
    # that live longer than 10 minutes.
    # See: https://cloud.google.com/compute/docs/troubleshooting/general-tips#idle-connections
    function Set-WindowsTCPParameters {
      Set-ItemProperty -Force -Confirm:$false -Path `
        'HKLM:\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters' `
    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/os/os_test.go

    }
    
    func TestDirFSPathsValid(t *testing.T) {
    	if runtime.GOOS == "windows" {
    		t.Skipf("skipping on Windows")
    	}
    	t.Parallel()
    
    	d := t.TempDir()
    	if err := WriteFile(filepath.Join(d, "control.txt"), []byte(string("Hello, world!")), 0644); err != nil {
    		t.Fatal(err)
    	}
    	if err := WriteFile(filepath.Join(d, `e:xperi\ment.txt`), []byte(string("Hello, colon and backslash!")), 0644); err != nil {
    		t.Fatal(err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    		oldLambdaTemplateLevel = st.lambdaTemplateLevel
    		st.lambdaTemplateLevel = 0
    	}
    
    	// Checking for the enable_if attribute here is what the LLVM
    	// demangler does.  This is not very general but perhaps it is
    	// sufficient.
    	const enableIfPrefix = "Ua9enable_ifI"
    	var enableIfArgs []AST
    	if strings.HasPrefix(st.str, enableIfPrefix) {
    		st.advance(len(enableIfPrefix) - 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
Back to top