Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 516 for beginning (0.61 sec)

  1. src/main/java/jcifs/smb1/smb1/SmbFileOutputStream.java

     * for a detailed description and examples of the smb URL syntax. If the
     * second argument is <code>true</code>, then bytes will be written to the
     * end of the file rather than the beginning.
     *
     * @param url An smb URL string representing the file to write to
     * @param append Append to the end of file
     */
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 9.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/resource_operation_safety_analysis.h

    #include "xla/service/graphcycles/graphcycles.h"
    #include "tensorflow/core/framework/function.h"
    #include "tensorflow/core/graph/graph.h"
    
    namespace tensorflow {
    // An XLA cluster hoists all resource reads to be beginning of the cluster
    // execution and all the resource writes to the end.  This means it cannot
    // enforce arbitrary ordering dependencies (via control or data edges) between
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  3. src/runtime/cgo/libcgo.h

    #include <stdlib.h>
    #include <stdio.h>
    
    #undef nil
    #define nil ((void*)0)
    #define nelem(x) (sizeof(x)/sizeof((x)[0]))
    
    typedef uint32_t uint32;
    typedef uint64_t uint64;
    typedef uintptr_t uintptr;
    
    /*
     * The beginning of the per-goroutine structure,
     * as defined in ../pkg/runtime/runtime.h.
     * Just enough to edit these two fields.
     */
    typedef struct G G;
    struct G
    {
    	uintptr stacklo;
    	uintptr stackhi;
    };
    
    /*
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 13 20:50:04 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. src/go/types/commentMap_test.go

    // preceding the comment, with all comments that are on the same line
    // collected in a slice, in source order. If there is no preceding token
    // (the matching comment appears at the beginning of the file), then the
    // recorded position is unknown (line, col = 0, 0).
    // If there are no matching comments, the result is nil.
    func commentMap(src []byte, rx *regexp.Regexp) (res map[int][]comment) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/watch/filter.go

    // queue length increased by one.
    //
    // WARNING: filter has a fatal flaw, in that it can't properly update the
    // Type field (Add/Modified/Deleted) to reflect items beginning to pass the
    // filter when they previously didn't.
    func Filter(w Interface, f FilterFunc) Interface {
    	fw := &filteredWatch{
    		incoming: w,
    		result:   make(chan Event),
    		f:        f,
    	}
    	go fw.loop()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  6. docs/en/docs/advanced/testing-dependencies.md

    ```Python
    app.dependency_overrides = {}
    ```
    
    !!! tip
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Oct 17 05:59:11 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  7. src/internal/filepathlite/path_windows.go

    	// insert a .\ at the beginning to avoid converting relative paths
    	// like a/../c: into c:.
    	for _, c := range out.buf {
    		if IsPathSeparator(c) {
    			break
    		}
    		if c == ':' {
    			out.prepend('.', Separator)
    			return
    		}
    	}
    	// If a path begins with \??\, insert a \. at the beginning
    	// to avoid converting paths like \a\..\??\c:\x into \??\c:\x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:50 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_list_std.txt

    stdout ^vendor/golang.org/x/crypto/internal/alias
    ! stdout ^golang\.org/x
    
    # Within the std module, the dependencies of the non-vendored packages within
    # std should appear to be packages beginning with 'vendor/', not 'golang.org/…'
    # module dependencies.
    
    go list all
    ! stdout ^golang.org/x/
    ! stdout ^std/
    ! stdout ^cmd/
    stdout ^vendor/
    
    go list -deps -f '{{if not .Standard}}{{.ImportPath}}{{end}}' std
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 28 18:50:20 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  9. pkg/apis/scheduling/types.go

    	HighestUserDefinablePriority = int32(1000000000)
    	// SystemCriticalPriority is the beginning of the range of priority values for critical system components.
    	SystemCriticalPriority = 2 * HighestUserDefinablePriority
    	// SystemPriorityClassPrefix is the prefix reserved for system priority class names. Other priority
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 07 23:13:00 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  10. pkg/test/framework/config/config.go

    	flag.Value
    	// SetConfig will receive either a Map or a []Map
    	SetConfig(any) error
    }
    
    func Parsed() bool {
    	return flag.Parsed() && parsed.Load()
    }
    
    // Parse overrides any unset command line flags beginning with "istio.test" with values provided
    // from a YAML file.
    func Parse() {
    	defer func() {
    		parsed.Store(true)
    	}()
    	if !flag.Parsed() {
    		flag.Parse()
    	}
    	if configFilePath == "" {
    		return
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 3.1K bytes
    - Viewed (0)
Back to top