Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 77 for Style (0.12 sec)

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

    }
    
    ol.loweralpha {
    	list-style-type: lower-alpha;
    }
    
    ol.upperalpha {
    	list-style-type: upper-alpha;
    }
    
    ol.lowerroman {
    	list-style-type: lower-roman;
    }
    
    ol.upperroman {
    	list-style-type: upper-roman;
    }
    
    ol.lowergreek {
    	list-style-type: lower-greek;
    }
    
    .hdlist>table,
    .colist>table {
    	border: 0;
    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. src/net/http/fs_test.go

    		},
    		"not_modified_modtime": {
    			file:      "testdata/style.css",
    			serveETag: `"foo"`, // Last-Modified sent only when no ETag
    			modtime:   htmlModTime,
    			reqHeader: map[string]string{
    				"If-Modified-Since": htmlModTime.UTC().Format(TimeFormat),
    			},
    			wantStatus: 304,
    		},
    		"not_modified_modtime_with_contenttype": {
    			file:             "testdata/style.css",
    			serveContentType: "text/css", // explicit content type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  3. src/net/http/httputil/reverseproxy_test.go

    			switch code {
    			case http.StatusEarlyHints:
    				checkLinkHeaders(t, []string{"</style.css>; rel=preload; as=style", "</script.js>; rel=preload; as=script"}, header["Link"])
    			case http.StatusProcessing:
    				checkLinkHeaders(t, []string{"</style.css>; rel=preload; as=style", "</script.js>; rel=preload; as=script", "</foo.js>; rel=preload; as=script"}, header["Link"])
    			default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/elf.go

    		// So, we mark the object is MIPS I style paired float/double register scheme,
    		// aka MIPS_FPABI_ANY. If we mark the object as FPXX, the kernel may use FR=1 mode,
    		// then we meet some problem.
    		// Note: MIPS_FPABI_ANY is bad naming: in fact it is MIPS I style FPR usage.
    		//       It is not for 'ANY'.
    		// TODO: switch to FPXX after be sure that no odd-number-fpr is used.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    This will create a tree of all the files and directories in that base directory (but not the base directory itself).
    The following example demonstrates how to use this method and how to filter the files and directories using Ant-style patterns:
    
    ====
    include::sample[dir="snippets/files/fileTrees/kotlin",files="build.gradle.kts[tags=define]"]
    include::sample[dir="snippets/files/fileTrees/groovy",files="build.gradle[tags=define]"]
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    	NoClones
    
    	// The NoRust option disables demangling of old-style Rust
    	// mangled names, which can be confused with C++ style mangled
    	// names. New style Rust mangled names are still recognized.
    	NoRust
    
    	// The Verbose option turns on more verbose demangling.
    	Verbose
    
    	// LLVMStyle tries to translate an AST to a string in the
    	// style of the LLVM demangler. This does not affect
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  7. pkg/controller/volume/persistentvolume/pv_controller.go

    //
    // This controller is intentionally written in a very verbose style. You will
    // notice:
    //
    // 1. Every 'if' statement has a matching 'else' (exception: simple error
    //    checks for a client API call)
    // 2. Things that may seem obvious are commented explicitly
    //
    // We call this style 'space shuttle style'. Space shuttle style is meant to
    // ensure that every branch and condition is considered and accounted for -
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  8. configure.py

        else:
          print('{} is not executable.  Is it the python binary?'.format(
              python_bin_path))
        environ_cp['PYTHON_BIN_PATH'] = ''
    
      # Convert python path to Windows style before checking lib and version
      if is_windows() or is_cygwin():
        python_bin_path = cygpath(python_bin_path)
    
      # Get PYTHON_LIB_PATH
      python_lib_path = environ_cp.get('PYTHON_LIB_PATH')
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  9. src/net/netip/netip_test.go

    // Copyright 2020 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package netip_test
    
    import (
    	"bytes"
    	"encoding/json"
    	"flag"
    	"fmt"
    	"internal/testenv"
    	"net"
    	. "net/netip"
    	"reflect"
    	"slices"
    	"strings"
    	"testing"
    	"unique"
    )
    
    var long = flag.Bool("long", false, "run long tests")
    
    type uint128 = Uint128
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
  10. src/go/types/expr.go

    // Copyright 2012 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This file implements typechecking of expressions.
    
    package types
    
    import (
    	"fmt"
    	"go/ast"
    	"go/constant"
    	"go/internal/typeparams"
    	"go/token"
    	. "internal/types/errors"
    	"strings"
    )
    
    /*
    Basic algorithm:
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
Back to top