Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 28 of 28 for fillAttributes (0.72 sec)

  1. src/go/printer/testdata/statements.input

    }
    
    func _() interface{} {
    	return &fileStat{
    			name:    basename(file.name),
    			size:    mkSize(d.FileSizeHigh, d.FileSizeLow),
    			modTime: mkModTime(d.LastWriteTime),
    			mode:    mkMode(d.FileAttributes),
    			sys:     mkSysFromFI(&d),
    		}, nil
    }
    
    // Formatting of if-statement headers.
    func _() {
    	if true {}
    	if; true {}  // no semicolon printed
    	if expr{}
    	if;expr{}  // no semicolon printed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 8.3K bytes
    - Viewed (0)
  2. src/os/file_windows.go

    			if e1 == nil {
    				var fa syscall.Win32FileAttributeData
    				e1 = syscall.GetFileAttributesEx(pathp, syscall.GetFileExInfoStandard, (*byte)(unsafe.Pointer(&fa)))
    				if e1 == nil && fa.FileAttributes&syscall.FILE_ATTRIBUTE_DIRECTORY != 0 {
    					e = syscall.EISDIR
    				}
    			}
    		}
    		return nil, &PathError{Op: "open", Path: name, Err: e}
    	}
    	return newFile(r, name, "file"), nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:38:38 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

                    rootComponentProvider,
                    domainObjectContext,
                    calculatedValueContainerFactory,
                    (attributes, filter) -> {
                        ImmutableAttributes fullAttributes = attributesFactory.concat(configurationAttributes.asImmutable(), attributes);
                        return new ResolutionBackedFileCollection(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  4. cluster/gce/windows/common.psm1

      $lpSecurityAttributes = [System.IntPtr]::Zero
      $dwCreationDisposition = [System.IO.FileMode]::Open
      $dwFlagsAndAttributes = [System.IO.FileAttributes]::Normal
      $hTemplateFile = [System.IntPtr]::Zero
    
      $handle = $Kernel32::CreateFileW($lpFileName, $dwDesiredAccess, $dwShareMode, $lpSecurityAttributes, $dwCreationDisposition, $dwFlagsAndAttributes, $hTemplateFile)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 19 14:47:38 UTC 2022
    - 25.4K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SmbFile.java

        }
    
    
        @SuppressWarnings ( "unchecked" )
        protected <T extends ServerMessageBlock2Response> T withOpen ( SmbTreeHandleImpl th, int createDisposition, int createOptions, int fileAttributes,
                int desiredAccess, int shareAccess, ServerMessageBlock2Request<T> first, ServerMessageBlock2Request<?>... others ) throws CIFSException {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  6. cluster/gce/windows/k8s-node-setup.psm1

      #   -rw------- 1 root root 1.7K Oct 12 00:56 kubelet.key
      # Windows:
      #   https://docs.microsoft.com/en-us/dotnet/api/system.io.fileattributes
      #   https://docs.microsoft.com/en-us/dotnet/api/system.io.fileattributes
    }
    
    # Creates the node PKI files in $env:PKI_DIR.
    #
    # Required ${kube_env} keys:
    #   CA_CERT
    # ${kube_env} keys that can be omitted for nodes that do not use an
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"BpfZbufHeader.User_gen", Field, 0},
    		{"BpfZbufHeader.X_bzh_pad", Field, 0},
    		{"ByHandleFileInformation", Type, 0},
    		{"ByHandleFileInformation.CreationTime", Field, 0},
    		{"ByHandleFileInformation.FileAttributes", Field, 0},
    		{"ByHandleFileInformation.FileIndexHigh", Field, 0},
    		{"ByHandleFileInformation.FileIndexLow", Field, 0},
    		{"ByHandleFileInformation.FileSizeHigh", Field, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  8. api/go1.txt

    pkg syscall (windows-386), type ByHandleFileInformation struct
    pkg syscall (windows-386), type ByHandleFileInformation struct, CreationTime Filetime
    pkg syscall (windows-386), type ByHandleFileInformation struct, FileAttributes uint32
    pkg syscall (windows-386), type ByHandleFileInformation struct, FileIndexHigh uint32
    pkg syscall (windows-386), type ByHandleFileInformation struct, FileIndexLow uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
Back to top