Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 534 for Opened (0.1 sec)

  1. pkg/util/removeall/removeall.go

    			break
    		}
    		// If Readdirnames returned an error, use it.
    		if err == nil {
    			err = err1
    		}
    		if len(names) == 0 {
    			break
    		}
    	}
    
    	// Close directory, because windows won't remove opened directory.
    	fd.Close()
    
    	// Remove directory.
    	err1 := remove(path)
    	if err1 == nil || os.IsNotExist(err1) {
    		return nil
    	}
    	if err == nil {
    		err = err1
    	}
    	return err
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 15 16:41:02 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  2. .github/workflows/build-docs.yml

    name: Build Docs
    on:
      push:
        branches:
          - master
      pull_request:
        types:
          - opened
          - synchronize
    jobs:
      changes:
        runs-on: ubuntu-latest
        # Required permissions
        permissions:
          pull-requests: read
        # Set job outputs to values from filter step
        outputs:
          docs: ${{ steps.filter.outputs.docs }}
        steps:
        - uses: actions/checkout@v4
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 10 00:30:25 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. pkg/kube/portforwarder.go

    func (f *forwarder) Address() string {
    	return net.JoinHostPort(f.localAddress, strconv.Itoa(f.localPort))
    }
    
    func (f *forwarder) Close() {
    	close(f.stopCh)
    	// Closing the stop channel should close anything
    	// opened by f.forwarder.ForwardPorts()
    }
    
    func (f *forwarder) ErrChan() <-chan error {
    	return f.errCh
    }
    
    func (f *forwarder) WaitForStop() {
    	<-f.stopCh
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 14 02:12:37 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/dra/plugin/plugin.go

    	deregisterPlugin(pluginName)
    	h.controller.removePlugin(pluginName)
    }
    
    // ValidatePlugin is called by kubelet's plugin watcher upon detection
    // of a new registration socket opened by DRA plugin.
    func (h *RegistrationHandler) ValidatePlugin(pluginName string, endpoint string, versions []string) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 16:27:05 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/io/CharSink.java

     *       typically implemented by opening a writer using one of the methods in the first category,
     *       doing something and finally closing the writer that was opened.
     * </ul>
     *
     * <p>Any {@link ByteSink} may be viewed as a {@code CharSink} with a specific {@linkplain Charset
     * character encoding} using {@link ByteSink#asCharSink(Charset)}. Characters written to the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 28 20:13:02 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/SmbNamedPipe.java

     * writes to and reads from an existing pipe descriptor in one operation.
     * <li><code>CreateFile</code>, <code>ReadFile</code>,
     * <code>WriteFile</code>, and <code>CloseFile</code> A byte-type pipe can
     * be opened, written to, read from and closed using the standard Win32
     * file operations.
     * </ul>
     *
     * <p>
     * The jCIFS API maps all of these operations into the standard Java
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 6K bytes
    - Viewed (0)
  7. src/internal/syscall/windows/registry/key.go

    // It accepts any open key, including CURRENT_USER and others,
    // and returns the new key and an error.
    // The access parameter specifies desired access rights to the
    // key to be opened.
    func OpenKey(k Key, path string, access uint32) (Key, error) {
    	p, err := syscall.UTF16PtrFromString(path)
    	if err != nil {
    		return 0, err
    	}
    	var subkey syscall.Handle
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 16:42:41 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/internal/classpath/InstrumentedTest.groovy

            Instrumented.systemProperties("consumer").forEach { k, v ->
            }
    
            then:
            1 * listener.systemPropertyQueried("prop", "value", "consumer")
        }
    
        def "notifies listener when file is opened with absolute file path"() {
            def listener = withInstrumentedInputsListener()
    
            def userDir = System.getProperty('user.dir')
    
            when:
            Instrumented.fileOpened('foo.txt', 'consumer')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Nov 11 00:37:04 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  9. src/os/file.go

    	return n, err
    }
    
    var errWriteAtInAppendMode = errors.New("os: invalid use of WriteAt on file opened with O_APPEND")
    
    // WriteAt writes len(b) bytes to the File starting at byte offset off.
    // It returns the number of bytes written and an error, if any.
    // WriteAt returns a non-nil error when n != len(b).
    //
    // If file was opened with the O_APPEND flag, WriteAt returns an error.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:37 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  10. internal/s3select/select.go

    		if err != nil {
    			rsc.Close()
    			return err
    		}
    
    		s3Select.recordReader, err = csv.NewReader(s3Select.progressReader, &s3Select.Input.CSVArgs)
    		if err != nil {
    			// Close all reader resources opened so far.
    			s3Select.progressReader.Close()
    
    			var stErr bzip2.StructuralError
    			if errors.As(err, &stErr) {
    				return errInvalidCompression(err, s3Select.Input.CompressionType)
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 21K bytes
    - Viewed (0)
Back to top