Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 619 for rooted (0.15 sec)

  1. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/NativeCompilerTest.groovy

            when:
            def outputFile = compiler.getOutputFileDir(sourceFile, testDir, extension)
    
            then:
            // Creates directory
            outputFile.parentFile.exists()
            // Rooted under test directory
            outputFile.parentFile.parentFile == testDir
            // TODO: Test for MD5 directory name?
            outputFile.name == "source$extension"
    
            where:
            extension | _
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/syntax/source.go

    	for s.e-s.r < utf8.UTFMax && !utf8.FullRune(s.buf[s.r:s.e]) && s.ioerr == nil {
    		s.fill()
    	}
    
    	// EOF
    	if s.r == s.e {
    		if s.ioerr != io.EOF {
    			// ensure we never start with a '/' (e.g., rooted path) in the error message
    			s.error("I/O error: " + s.ioerr.Error())
    			s.ioerr = nil
    		}
    		s.ch = -1
    		s.chw = 0
    		return
    	}
    
    	s.ch, s.chw = utf8.DecodeRune(s.buf[s.r:s.e])
    	s.r += s.chw
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 05 19:25:46 UTC 2020
    - 5.7K bytes
    - Viewed (0)
  3. src/crypto/tls/key_schedule.go

    		// Rather than calling BytesOrPanic, we explicitly handle this error, in
    		// order to provide a reasonable error message. It should be basically
    		// impossible for this to panic, and routing errors back through the
    		// tree rooted in this function is quite painful. The labels are fixed
    		// size, and the context is either a fixed-length computed hash, or
    		// parsed from a field which has the same length limitation. As such, an
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 14:56:25 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  4. src/cmd/go/internal/generate/generate.go

    }
    
    // A Generator represents the state of a single Go source file
    // being scanned for generator commands.
    type Generator struct {
    	r        io.Reader
    	path     string // full rooted path name.
    	dir      string // full rooted directory of file.
    	file     string // base name of file.
    	pkg      string
    	commands map[string][]string
    	lineNum  int // current line number.
    	env      []string
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 29 19:39:24 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  5. src/os/path_windows_test.go

    		if err != nil {
    			t.Fatalf("Open(%q) failed: %v", test, err)
    		}
    		dir.Close()
    	}
    }
    
    func testMkdirAllAtRoot(t *testing.T, root string) {
    	// Create a unique-enough directory name in root.
    	base := fmt.Sprintf("%s-%d", t.Name(), os.Getpid())
    	path := filepath.Join(root, base)
    	if err := os.MkdirAll(path, 0777); err != nil {
    		t.Fatalf("MkdirAll(%q) failed: %v", path, err)
    	}
    	// Clean up
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:37:32 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. src/cmd/go/internal/help/helpdoc.go

    	Short:     "package lists and patterns",
    	Long: `
    Many commands apply to a set of packages:
    
    	go <action> [packages]
    
    Usually, [packages] is a list of import paths.
    
    An import path that is a rooted path or that begins with
    a . or .. element is interpreted as a file system path and
    denotes the package in that directory.
    
    Otherwise, the import path P denotes the package found in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  7. cmd/object-api-utils.go

    // but may produce false positives on non-trivial paths.
    func pathNeedsClean(path []byte) bool {
    	if len(path) == 0 {
    		return true
    	}
    
    	rooted := path[0] == '/'
    	n := len(path)
    
    	r, w := 0, 0
    	if rooted {
    		r, w = 1, 1
    	}
    
    	for r < n {
    		switch {
    		case path[r] > 127:
    			// Non ascii.
    			return true
    		case path[r] == '/':
    			// multiple / elements
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  8. pkg/kubelet/apis/config/helpers_test.go

    				"or add it to the kubeletConfigurationNonPathFieldPaths set, as appropriate:\n%s",
    				strings.Join(sets.List(unexpected), "\n"))
    		}
    	}
    }
    
    // allPrimitiveFieldPaths returns the set of field paths in type `tp`, rooted at `path`.
    // It recursively descends into the definition of type `tp` accumulating paths to primitive leaf fields or paths in `skipRecurseList`.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. tensorflow/c/env.h

    TF_CAPI_EXPORT extern void TF_DeleteDir(const char* dirname, TF_Status* status);
    
    // Deletes the specified directory and all subdirectories and files underneath
    // it. This is accomplished by traversing the directory tree rooted at dirname
    // and deleting entries as they are encountered.
    //
    // If dirname itself is not readable or does not exist, *undeleted_dir_count is
    // set to 1, *undeleted_file_count is set to 0 and an appropriate status (e.g.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jan 09 02:53:27 UTC 2021
    - 9.6K bytes
    - Viewed (0)
  10. src/net/http/routing_tree.go

    // at root.
    func (root *routingNode) addPattern(p *pattern, h Handler) {
    	// First level of tree is host.
    	n := root.addChild(p.host)
    	// Second level of tree is method.
    	n = n.addChild(p.method)
    	// Remaining levels are path.
    	n.addSegments(p.segments, p, h)
    }
    
    // addSegments adds the given segments to the tree rooted at n.
    // If there are no segments, then n is a leaf node that holds
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:43:24 UTC 2024
    - 7.5K bytes
    - Viewed (0)
Back to top