Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 113 for seminfo (0.14 sec)

  1. src/main/java/jcifs/internal/smb2/info/Smb2SetInfoRequest.java

            setInfoType(Smb2Constants.SMB2_0_INFO_FILE);
            setFileInfoClass(fi.getFileInformationLevel());
            setInfo(fi);
        }
    
    
        /**
         * @param info
         *            the info to set
         */
        public void setInfo ( Encodable info ) {
            this.info = info;
        }
    
    
        /**
         * {@inheritDoc}
         *
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 4.8K bytes
    - Viewed (0)
  2. build-logic/performance-testing/src/test/groovy/gradlebuild/performance/generator/DependencyGeneratorTest.groovy

            then:
            projectsInLayer.isEmpty()
    
            when:
            def depInfo = dependencyGenerator.createDependencies()
    
            then:
            depInfo.dependencies.isEmpty()
            depInfo.layerSizes.isEmpty()
        }
    
        def "can generate #num project dependencies"() {
            given:
            def dependencyGenerator = new DependencyGenerator()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  3. internal/disk/stat_netbsd.go

    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package disk
    
    import (
    	"errors"
    	"fmt"
    
    	"golang.org/x/sys/unix"
    )
    
    // GetInfo returns total and free bytes available in a directory, e.g. `/`.
    func GetInfo(path string, _ bool) (info Info, err error) {
    	s := unix.Statvfs_t{}
    	if err = unix.Statvfs(path, &s); err != nil {
    		return Info{}, err
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Feb 26 19:34:50 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. pkg/kubelet/pluginmanager/pluginwatcher/README.md

    
    ## gRPC Service Lifecycle
    
    For any discovered plugin, kubelet will issue a Registration.GetInfo gRPC call
    to get plugin type, name, endpoint and supported service API versions.
    
    If any of the following steps in registration fails, on retry registration will
    start from scratch:
    - Registration.GetInfo is called against socket.
    - Validate is called against internal plugin type handler.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 23:00:59 UTC 2019
    - 3.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		gpstore2       = regInfo{inputs: []regMask{gpspsbg, gpg, gpg}}
    		gpxchg         = regInfo{inputs: []regMask{gpspsbg, gpg}, outputs: []regMask{gp}}
    		gpcas          = regInfo{inputs: []regMask{gpspsbg, gpg, gpg}, outputs: []regMask{gp}}
    		fp01           = regInfo{inputs: nil, outputs: []regMask{fp}}
    		fp11           = regInfo{inputs: []regMask{fp}, outputs: []regMask{fp}}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  6. platforms/software/signing/src/integTest/groovy/org/gradle/plugins/signing/SigningClosureBlockIntegrationSpec.groovy

    package org.gradle.plugins.signing
    
    class SigningClosureBlockIntegrationSpec extends SigningIntegrationSpec {
    
        def "use groovy closure when signing"() {
            given:
            buildFile << """
                ${keyInfo.addAsPropertiesScript()}
    
                signing {
                    sign {
                        sign(tasks.jar)
                    }
                }
            """
    
            when:
            run "sign"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. src/internal/syscall/windows/registry/key.go

    //
    // NOTE: This package is a copy of golang.org/x/sys/windows/registry
    // with KeyInfo.ModTime removed to prevent dependency cycles.
    package registry
    
    import (
    	"runtime"
    	"syscall"
    )
    
    const (
    	// Registry key security and access rights.
    	// See https://learn.microsoft.com/en-us/windows/win32/sysinfo/registry-key-security-and-access-rights
    	// for details.
    	ALL_ACCESS         = 0xf003f
    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. internal/event/targetlist.go

    			defer wg.Done()
    
    			if err := target.Save(event); err != nil {
    				list.eventsErrorsTotal.Add(1)
    				list.incFailedEvents(id)
    				reqInfo := &logger.ReqInfo{}
    				reqInfo.AppendTags("targetID", id.String())
    				logger.LogOnceIf(logger.SetReqInfo(context.Background(), reqInfo), logSubsys, err, id.String())
    			}
    		}(id, target)
    	}
    	wg.Wait()
    	list.totalEvents.Add(1)
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb2/info/Smb2QueryInfoResponse.java

        }
    
    
        /**
         * @return the information
         */
        public Decodable getInfo () {
            return this.info;
        }
    
    
        /**
         * @param clazz
         * @return the information
         * @throws CIFSException
         */
        @SuppressWarnings ( "unchecked" )
        public <T extends Decodable> T getInfo ( Class<T> clazz ) throws CIFSException {
            if ( !clazz.isAssignableFrom(this.info.getClass()) ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sat Nov 13 15:13:49 UTC 2021
    - 6K bytes
    - Viewed (0)
  10. platforms/software/signing/src/integTest/groovy/org/gradle/plugins/signing/SigningIntegrationSpec.groovy

                asProperties(name).collect { k, v ->
                    "${addTo}[\"${escapeString(k)}\"] = \"${escapeString(v)}\""
                }.join(System.lineSeparator())
            }
        }
    
        KeyInfo getKeyInfo(set = "default") {
            new KeyInfo(
                keyId: file(set, "keyId.txt").text.trim(),
                password: file(set, "password.txt").text.trim(),
                keyRingFilePath: file(set, "secring.gpg")
            )
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 5.9K bytes
    - Viewed (0)
Back to top