Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 259 for FILE (0.04 sec)

  1. pkg/volume/csi/csi_attacher_test.go

    				if _, err := os.Stat(dataPath); !os.IsNotExist(err) {
    					if err != nil {
    						t.Errorf("error checking file %s: %s", dataPath, err)
    					} else {
    						t.Errorf("json file %s should not exists, but it does", dataPath)
    					}
    				} else {
    					t.Logf("json file %s was correctly removed", dataPath)
    				}
    			}
    		})
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 58.1K bytes
    - Viewed (0)
  2. src/cmd/link/internal/loader/loader.go

    	if err != nil {
    		log.Fatal("cannot read object file:", err)
    	}
    	r := goobj.NewReaderFromBytes(roObject, readonly)
    	if r == nil {
    		if len(roObject) >= 8 && bytes.Equal(roObject[:8], []byte("\x00go114ld")) {
    			log.Fatalf("found object file %s in old format", f.File().Name())
    		}
    		panic("cannot read object file")
    	}
    	pkgprefix := objabi.PathToPrefix(lib.Pkg) + "."
    	ndef := r.NSym()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  3. src/runtime/traceback.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package runtime
    
    import (
    	"internal/abi"
    	"internal/bytealg"
    	"internal/goarch"
    	"internal/stringslite"
    	"runtime/internal/sys"
    	"unsafe"
    )
    
    // The code in this file implements stack trace walking for all architectures.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

    /*
     * Licensed to the Apache Software Foundation (ASF) under one
     * or more contributor license agreements.  See the NOTICE file
     * distributed with this work for additional information
     * regarding copyright ownership.  The ASF licenses this file
     * to you under the Apache License, Version 2.0 (the
     * "License"); you may not use this file except in compliance
     * with the License.  You may obtain a copy of the License at
     *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Jun 07 07:31:02 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  5. src/cmd/cgo/gcc.go

    	}
    	p.rewriteRef(f)
    }
    
    // loadDefines coerces gcc into spitting out the #defines in use
    // in the file f and saves relevant renamings in f.Name[name].Define.
    func (p *Package) loadDefines(f *File) {
    	var b bytes.Buffer
    	b.WriteString(builtinProlog)
    	b.WriteString(f.Preamble)
    	stdout := p.gccDefines(b.Bytes())
    
    	for _, line := range strings.Split(stdout, "\n") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  6. pkg/kubelet/kuberuntime/kuberuntime_container.go

    	for _, file := range files {
    		if file.IsDir() {
    			continue
    		}
    		matches := restartCountLogFileRegex.FindStringSubmatch(file.Name())
    		if len(matches) == 0 {
    			continue
    		}
    		count, err := strconv.Atoi(matches[1])
    		if err != nil {
    			// unlikely kubelet created this file,
    			// likely custom file with random numbers as a name
    			continue
    		}
    		count++
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  7. src/net/url/url_test.go

    	},
    	{
    		"file:///home/adg/rabbits",
    		&URL{
    			Scheme: "file",
    			Host:   "",
    			Path:   "/home/adg/rabbits",
    		},
    		"file:///home/adg/rabbits",
    	},
    	// "Windows" paths are no exception to the rule.
    	// See golang.org/issue/6027, especially comment #9.
    	{
    		"file:///C:/FooBar/Baz.txt",
    		&URL{
    			Scheme: "file",
    			Host:   "",
    			Path:   "/C:/FooBar/Baz.txt",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/elf.go

    }
    
    type Elflib struct {
    	next *Elflib
    	aux  *Elfaux
    	file string
    }
    
    func addelflib(list **Elflib, file string, vers string) *Elfaux {
    	var lib *Elflib
    
    	for lib = *list; lib != nil; lib = lib.next {
    		if lib.file == file {
    			goto havelib
    		}
    	}
    	lib = new(Elflib)
    	lib.next = *list
    	lib.file = file
    	*list = lib
    
    havelib:
    	for aux := lib.aux; aux != nil; aux = aux.next {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  9. src/net/http/request.go

    	"golang.org/x/net/idna"
    )
    
    const (
    	defaultMaxMemory = 32 << 20 // 32 MB
    )
    
    // ErrMissingFile is returned by FormFile when the provided file field name
    // is either not present in the request or not a file field.
    var ErrMissingFile = errors.New("http: no such file")
    
    // ProtocolError represents an HTTP protocol error.
    //
    // Deprecated: Not all errors in the http package related to protocol errors
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/syntax/parser.go

    	top    bool   // in top of file (before package clause)
    	fnest  int    // function nesting level (for error handling)
    	xnest  int    // expression nesting level (for complit ambiguity resolution)
    	indent []byte // tracing support
    }
    
    func (p *parser) init(file *PosBase, r io.Reader, errh ErrorHandler, pragh PragmaHandler, mode Mode) {
    	p.top = true
    	p.file = file
    	p.errh = errh
    	p.mode = mode
    	p.pragh = pragh
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
Back to top