Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 271 for Parses (0.54 sec)

  1. tensorflow/compiler/jit/flags.h

    };
    
    // Return a pointer to the DumpGraphFlags struct;
    // repeated calls return the same pointer.
    // This should be called only after Flags::Parse() has returned.
    
    // Getters for flags structs defined above.  The first call to any of these
    // parses TF_XLA_FLAGS for all of them.  Those functions which return a pointer
    // always return the same pointer.
    MarkForCompilationPassFlags* GetMarkForCompilationPassFlags();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  2. src/syscall/syscall_darwin.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Darwin system calls.
    // This file is compiled as ordinary Go code,
    // but it is also input to mksyscall,
    // which parses the //sys lines and generates system call stubs.
    // Note that sometimes we use a lowercase //sys name and wrap
    // it in our own nicer implementation, either here or in
    // syscall_bsd.go or syscall_unix.go.
    
    package syscall
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:50 UTC 2024
    - 11K bytes
    - Viewed (0)
  3. pilot/pkg/xds/sds.go

    		return true
    	}
    	for update := range updates {
    		switch update.Kind {
    		case kind.Secret:
    			return true
    		case kind.ReferenceGrant:
    			return true
    		}
    	}
    	return false
    }
    
    // parseResources parses a list of resource names to SecretResource types, for a given proxy.
    // Invalid resource names are ignored
    func (s *SecretGen) parseResources(names []string, proxy *model.Proxy) []SecretResource {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 23:04:36 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  4. cmd/handler-utils.go

    	"github.com/minio/minio/internal/mcontext"
    	xnet "github.com/minio/pkg/v3/net"
    )
    
    const (
    	copyDirective    = "COPY"
    	replaceDirective = "REPLACE"
    	accessDirective  = "ACCESS"
    )
    
    // Parses location constraint from the incoming reader.
    func parseLocationConstraint(r *http.Request) (location string, s3Error APIErrorCode) {
    	// If the request has no body with content-length set to 0,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/build/relnote/relnote.go

    	"strings"
    
    	md "rsc.io/markdown"
    )
    
    // NewParser returns a properly configured Markdown parser.
    func NewParser() *md.Parser {
    	var p md.Parser
    	p.HeadingIDs = true
    	return &p
    }
    
    // CheckFragment reports problems in a release-note fragment.
    func CheckFragment(data string) error {
    	doc := NewParser().Parse(data)
    	// Check that the content of the document contains either a TODO or at least one sentence.
    	txt := ""
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  6. src/compress/bzip2/bzip2.go

    	bz2 := new(reader)
    	bz2.br = newBitReader(r)
    	return bz2
    }
    
    const bzip2FileMagic = 0x425a // "BZ"
    const bzip2BlockMagic = 0x314159265359
    const bzip2FinalMagic = 0x177245385090
    
    // setup parses the bzip2 header.
    func (bz2 *reader) setup(needMagic bool) error {
    	br := &bz2.br
    
    	if needMagic {
    		magic := br.ReadBits(16)
    		if magic != bzip2FileMagic {
    			return StructuralError("bad magic value")
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 13K bytes
    - Viewed (0)
  7. cmd/bucket-lifecycle.go

    		return true
    	}
    	return false // in progress or completed but expired
    }
    
    // parseRestoreObjStatus parses restoreHdr from AmzRestore header. If the value is valid it returns a
    // restoreObjStatus value with the status and expiry (if any). Otherwise returns
    // the empty value and an error indicating the parse failure.
    func parseRestoreObjStatus(restoreHdr string) (restoreObjStatus, error) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/main.go

    		}
    		f, err := os.Create(*memprofile)
    		if err != nil {
    			log.Fatalf("%v", err)
    		}
    		AtExit(func() {
    			// Profile all outstanding allocations.
    			runtime.GC()
    			// compilebench parses the memory profile to extract memstats,
    			// which are only written in the legacy pprof format.
    			// See golang.org/issue/18641 and runtime/pprof/pprof.go:writeHeap.
    			const writeLegacyFormat = 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:59:50 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/check_test.go

    		return nopos, err.Error()
    	}
    }
    
    // absDiff returns the absolute difference between x and y.
    func absDiff(x, y uint) uint {
    	if x < y {
    		return y - x
    	}
    	return x - y
    }
    
    // parseFlags parses flags from the first line of the given source if the line
    // starts with "//" (line comment) followed by "-" (possibly with spaces
    // between). Otherwise the line is ignored.
    func parseFlags(src []byte, flags *flag.FlagSet) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  10. src/flag/flag.go

    	}
    	return nil
    }
    
    // Parsed reports whether f.Parse has been called.
    func (f *FlagSet) Parsed() bool {
    	return f.parsed
    }
    
    // Parse parses the command-line flags from [os.Args][1:]. Must be called
    // after all flags are defined and before flags are accessed by the program.
    func Parse() {
    	// Ignore errors; CommandLine is set for ExitOnError.
    	CommandLine.Parse(os.Args[1:])
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:38:24 UTC 2024
    - 39.7K bytes
    - Viewed (0)
Back to top