Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 3,070 for nfiles (0.1 sec)

  1. src/debug/pe/file.go

    resources, or cause panics.
    */
    package pe
    
    import (
    	"bytes"
    	"compress/zlib"
    	"debug/dwarf"
    	"encoding/binary"
    	"errors"
    	"fmt"
    	"io"
    	"os"
    	"strings"
    )
    
    // A File represents an open PE file.
    type File struct {
    	FileHeader
    	OptionalHeader any // of type *OptionalHeader32 or *OptionalHeader64
    	Sections       []*Section
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  2. hack/verify-file-sizes.sh

                    size="$(wc -c < "$file")"
                    if [ "${size}" -gt "$maxsize" ] &&
                           ! kube::util::array_contains "$file" "${allowlist[@]}"; then
                        echo    "$file is too large ($size bytes)"
                    fi
                    ;;
                w/|w/lf|w/crlf|w/mixed|w/none)
                    # Other files are okay.
                    ;;
                *)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 19:39:50 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modindex/read.go

    	}
    	sort.Strings(p.AllTags)
    
    	if len(p.CgoFiles) > 0 {
    		p.SFiles = append(p.SFiles, Sfiles...)
    		sort.Strings(p.SFiles)
    	} else {
    		p.IgnoredOtherFiles = append(p.IgnoredOtherFiles, Sfiles...)
    		sort.Strings(p.IgnoredOtherFiles)
    	}
    
    	if badGoError != nil {
    		return p, badGoError
    	}
    	if len(p.GoFiles)+len(p.CgoFiles)+len(p.TestGoFiles)+len(p.XTestGoFiles) == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  4. docs/em/docs/tutorial/request-files.md

    πŸ‘† πŸ’ͺ πŸ”¬ πŸ“ πŸ“‚ πŸ‘©β€πŸ’» βš™οΈ `File`.
    
    !!! info
        πŸ“¨ πŸ“‚ πŸ“, πŸ₯‡ ❎ <a href="https://github.com/Kludex/python-multipart" class="external-link" target="_blank">`python-multipart`</a>.
    
        🀢 β“‚. `pip install python-multipart`.
    
        πŸ‘‰ ↩️ πŸ“‚ πŸ“ πŸ“¨ "πŸ“¨ πŸ’½".
    
    ## πŸ—„ `File`
    
    πŸ—„ `File` &amp; `UploadFile` βšͺ️➑️ `fastapi`:
    
    ```Python hl_lines="1"
    {!../../../docs_src/request_files/tutorial001.py!}
    ```
    
    ## πŸ”¬ `File` πŸ”’
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Mar 13 19:02:19 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  5. docs/de/docs/tutorial/request-files.md

    Mit `File` kΓΆnnen sie vom Client hochzuladende Dateien definieren.
    
    !!! info
        Um hochgeladene Dateien zu empfangen, installieren Sie zuerst <a href="https://andrew-d.github.io/python-multipart/" class="external-link" target="_blank">`python-multipart`</a>.
    
        Z. B. `pip install python-multipart`.
    
        Das, weil hochgeladene Dateien als β€žFormulardatenβ€œ gesendet werden.
    
    ## `File` importieren
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 17:58:08 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  6. src/cmd/vet/testdata/tagtest/file2.go

    // Copyright 2015 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.
    
    //go:build !testtag
    // +build !testtag
    
    package main
    
    import "fmt"
    
    func main() {
    	fmt.Printf("%s", 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 20 03:54:48 UTC 2021
    - 265 bytes
    - Viewed (0)
  7. src/debug/macho/file.go

    				return nil, &FormatError{offset, "invalid section offset", s.Offset}
    			}
    			if int64(s.Filesz) < 0 {
    				return nil, &FormatError{offset, "invalid section file size", s.Filesz}
    			}
    			s.sr = io.NewSectionReader(r, int64(s.Offset), int64(s.Filesz))
    			s.ReaderAt = s.sr
    		}
    	}
    	return f, nil
    }
    
    func (f *File) parseSymtab(symdat, strtab, cmddat []byte, hdr *SymtabCmd, offset int64) (*Symtab, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/telemetry/internal/counter/file.go

    }
    
    // rotate checks to see whether the file f needs to be rotated,
    // meaning to start a new counter file with a different date in the name.
    // rotate is also used to open the file initially, meaning f.current can be nil.
    // In general rotate should be called just once for each file.
    // rotate will arrange a timer to call itself again when necessary.
    func (f *file) rotate() {
    	expire, cleanup := f.rotate1()
    	cleanup()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsIntegrationTest.groovy

            """
            buildFile("""
                println "configuring root project"
            """)
            customType(file("a"))
            customType(file("b")) << """
                dependencies {
                    implementation project(':a')
                }
            """
            customType(file("c")) << """
                dependencies {
                    implementation project(':b')
                }
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformOfDirectoriesIntegrationTest.groovy

                dependencies {
                    compile files(producer.output)
    
                    registerTransform(MakeSize) {
                        from.attribute(artifactType, 'directory')
                        to.attribute(artifactType, 'size')
                    }
                }
    
                def transformed = configurations.compile.incoming.artifactView { attributes.attribute(artifactType, 'size') }.files
    
                task resolve(type: ShowFilesTask) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.6K bytes
    - Viewed (0)
Back to top