Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 119 for srcLen (0.36 sec)

  1. docs/integrations/veeam/README.md

    - Under Home > Jobs > Backup in Navigation Pane, click on Backup Job button in the ribbon and choose Virtual Machine. Follow the on screen wizard.
    
    - On the Storage screen, choose the Scale-out Backup Repository that was configured previously.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 5.4K bytes
    - Viewed (0)
  2. test-site/app/views/main.scala.html

    @(title: String)(content: Html)
    
    <!DOCTYPE html>
    
    <html>
        <head>
            <title>@title</title>
            <link rel="stylesheet" media="screen" href="@routes.Assets.at("stylesheets/main.css")">
            <link rel="shortcut icon" type="image/png" href="@routes.Assets.at("images/favicon.png")">
            <script src="@routes.Assets.at("javascripts/hello.js")" type="text/javascript"></script>
        </head>
        <body>
            @content
        </body>
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 450 bytes
    - Viewed (0)
  3. tools/docker-builder/builder/tar.go

    	"time"
    )
    
    func WriteArchiveFromFiles(base string, files map[string]string, out io.Writer) error {
    	tw := tar.NewWriter(out)
    	defer tw.Close()
    
    	for dest, srcRel := range files {
    		src := srcRel
    		if !filepath.IsAbs(src) {
    			src = filepath.Join(base, srcRel)
    		}
    		i, err := os.Stat(src)
    		if err != nil {
    			return err
    		}
    		isDir := i.IsDir()
    		ts := src
    		write := func(src string) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 29 17:01:46 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  4. src/cmd/link/internal/sym/library.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package sym
    
    import "cmd/internal/goobj"
    
    type Library struct {
    	Objref      string
    	Srcref      string
    	File        string
    	Pkg         string
    	Shlib       string
    	Fingerprint goobj.FingerprintType
    	Autolib     []goobj.ImportedPkg
    	Imports     []*Library
    	Main        bool
    	Units       []*CompilationUnit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 11 18:32:23 UTC 2020
    - 651 bytes
    - Viewed (0)
  5. pkg/test/framework/components/echo/echotest/filters_test.go

    							srcKey := from.Config().ClusterLocalFQDN()
    							if testTopology[srcKey] == nil {
    								testTopology[srcKey] = map[string]int{}
    							}
    							var dstnames []string
    							for _, dst := range dsts {
    								dstnames = append(dstnames, dst.Config().ClusterLocalFQDN())
    							}
    							dstKey := strings.Join(dstnames, "_")
    							testTopology[srcKey][dstKey]++
    						})
    				},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/RedrawableLabel.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.logging.console;
    
    /**
     * This label have the concept of been drawn on screen.
     */
    public interface RedrawableLabel extends Label, StyledLabel {
        void redraw(AnsiContext ansi);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 826 bytes
    - Viewed (0)
  7. testing/smoke-test/src/smokeTest/resources/org/gradle/play/integtest/fixtures/external/basicplayapp/app/views/main.scala.html

    @(title: String)(content: Html)
    <!DOCTYPE html>
    <html>
        <head>
            <title>@title</title>
            <link rel="stylesheet" media="screen" href="@routes.Assets.at("stylesheets/main.css")">
            <link rel="shortcut icon" type="image/png" href="@routes.Assets.at("images/favicon.png")">
            <script src="@routes.Assets.at("javascripts/hello.js")" type="text/javascript"></script>
        </head>
        <body>
    @content
        </body>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 440 bytes
    - Viewed (0)
  8. testing/smoke-test/src/smokeTest/resources/org/gradle/smoketests/play-example/app/views/main.scala.html

    @(title: String)(content: Html)
    
    <!DOCTYPE html>
    
    <html>
        <head>
            <title>@title</title>
            <link rel="stylesheet" media="screen" href="@routes.Assets.at("stylesheets/main.css")">
            <link rel="shortcut icon" type="image/png" href="@routes.Assets.at("images/favicon.png")">
            <script src="@routes.Assets.at("javascripts/hello.js")" type="text/javascript"></script>
        </head>
        <body>
            @content
        </body>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 450 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/css/prettify.css

    .pln{color:#000}@media screen{.str{color:#080}.kwd{color:#008}.com{color:#800}.typ{color:#606}.lit{color:#066}.pun,.opn,.clo{color:#660}.tag{color:#008}.atn{color:#606}.atv{color:#080}.dec,.var{color:#606}.fun{color:red}}@media print,projection{.str{color:#060}.kwd{color:#006;font-weight:700}.com{color:#600;font-style:italic}.typ{color:#404;font-weight:700}.lit{color:#044}.pun,.opn,.clo{color:#440}.tag{color:#006;font-weight:700}.atn{color:#404}.atv{color:#060}}pre.prettyprint{padding:2px;border:1px...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 673 bytes
    - Viewed (0)
  10. src/text/scanner/scanner.go

    			s.srcEnd = i + n
    			s.srcBuf[s.srcEnd] = utf8.RuneSelf // sentinel
    			if err != nil {
    				if err != io.EOF {
    					s.error(err.Error())
    				}
    				if s.srcEnd == 0 {
    					if s.lastCharLen > 0 {
    						// previous character was not EOF
    						s.column++
    					}
    					s.lastCharLen = 0
    					return EOF
    				}
    				// If err == EOF, we won't be getting more
    				// bytes; break to avoid infinite loop. If
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 20.3K bytes
    - Viewed (0)
Back to top