Search Options

Results per page
Sort
Preferred Languages
Advance

Results 221 - 230 of 1,213 for flagstr (0.12 sec)

  1. src/syscall/syscall_openbsd.go

    	return Pipe2(p, 0)
    }
    
    //sysnb pipe2(p *[2]_C_int, flags int) (err error)
    
    func Pipe2(p []int, flags int) error {
    	if len(p) != 2 {
    		return EINVAL
    	}
    	var pp [2]_C_int
    	err := pipe2(&pp, flags)
    	if err == nil {
    		p[0] = int(pp[0])
    		p[1] = int(pp[1])
    	}
    	return err
    }
    
    //sys	accept4(fd int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (nfd int, err error)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 10:34:00 UTC 2023
    - 7K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/test_flags.txt

    # arguments that appear after unrecognized flags should not be treated
    # as packages, even if they are unambiguously not arguments to flags.
    # Even though ./x looks like a package path, the real package should be
    # the implicit '.'.
    ! go test --answer=42 ./x
    stderr '^no Go files in '$PWD'$'
    
    # However, *flags* that appear after unrecognized flags should still be
    # interpreted as flags, under the (possibly-erroneous) assumption that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 06 17:53:14 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  3. src/syscall/ztypes_darwin_arm64.go

    	Blocks        int64
    	Blksize       int32
    	Flags         uint32
    	Gen           uint32
    	Lspare        int32
    	Qspare        [2]int64
    }
    
    type Statfs_t struct {
    	Bsize       uint32
    	Iosize      int32
    	Blocks      uint64
    	Bfree       uint64
    	Bavail      uint64
    	Files       uint64
    	Ffree       uint64
    	Fsid        Fsid
    	Owner       uint32
    	Type        uint32
    	Flags       uint32
    	Fssubtype   uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 6.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_zos_s390x.go

    func impl_Dup3(oldfd int, newfd int, flags int) (err error) {
    	runtime.EnterSyscall()
    	r0, e2, e1 := CallLeFuncWithErr(GetZosLibVec()+SYS_DUP3<<4, uintptr(oldfd), uintptr(newfd), uintptr(flags))
    	runtime.ExitSyscall()
    	if int64(r0) == -1 {
    		err = errnoErr2(e1, e2)
    	}
    	return
    }
    
    //go:nosplit
    func get_Dup3Addr() *(func(oldfd int, newfd int, flags int) (err error))
    
    var Dup3 = enter_Dup3
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 88.2K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/init_test.go

    	}
    
    	testCases := []struct {
    		name        string
    		args        []string
    		flags       map[string]string
    		validate    func(*testing.T, *initData)
    		expectError bool
    	}{
    		// Init data passed using flags
    		{
    			name: "pass without any flag (use defaults)",
    		},
    		{
    			name: "fail if unknown feature gates flag are passed",
    			flags: map[string]string{
    				options.FeatureGatesString: "unknown=true",
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 12:26:20 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/text/unicode/norm/forminfo.go

    type qcInfo uint8
    
    func (p Properties) isYesC() bool { return p.flags&0x10 == 0 }
    func (p Properties) isYesD() bool { return p.flags&0x4 == 0 }
    
    func (p Properties) combinesForward() bool  { return p.flags&0x20 != 0 }
    func (p Properties) combinesBackward() bool { return p.flags&0x8 != 0 } // == isMaybe
    func (p Properties) hasDecomposition() bool { return p.flags&0x4 != 0 } // == isNoD
    
    func (p Properties) isInert() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:59:52 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-metadataRule/tests/componentMetadataRules.sample.conf

    commands: [{
        executable: gradle
        args: compileClasspathArtifacts
        flags: --quiet
        expected-output-file: compileClasspathArtifacts.out
    },{
        executable: gradle
        args: runtimeClasspathArtifacts
        flags: --quiet
        expected-output-file: runtimeClasspathArtifacts.out
    },{
        executable: gradle
        args: failRuntimeClasspathResolve
        flags: --quiet
        expect-failure: true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 489 bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_netbsd_amd64.go

    	SYS_PIPE2                = 453 // { int|sys||pipe2(int *fildes, int flags); }
    	SYS_DUP3                 = 454 // { int|sys||dup3(int from, int to, int flags); }
    	SYS_KQUEUE1              = 455 // { int|sys||kqueue1(int flags); }
    	SYS_PACCEPT              = 456 // { int|sys||paccept(int s, struct sockaddr *name, socklen_t *anamelen, const sigset_t *mask, int flags); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 25.7K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm.go

    	SYS_PIPE2                = 453 // { int|sys||pipe2(int *fildes, int flags); }
    	SYS_DUP3                 = 454 // { int|sys||dup3(int from, int to, int flags); }
    	SYS_KQUEUE1              = 455 // { int|sys||kqueue1(int flags); }
    	SYS_PACCEPT              = 456 // { int|sys||paccept(int s, struct sockaddr *name, socklen_t *anamelen, const sigset_t *mask, int flags); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 25.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/syscall_netbsd.go

    	}
    	return &u, nil
    }
    
    func Pipe(p []int) (err error) {
    	return Pipe2(p, 0)
    }
    
    //sysnb	pipe2(p *[2]_C_int, flags int) (err error)
    
    func Pipe2(p []int, flags int) error {
    	if len(p) != 2 {
    		return EINVAL
    	}
    	var pp [2]_C_int
    	err := pipe2(&pp, flags)
    	if err == nil {
    		p[0] = int(pp[0])
    		p[1] = int(pp[1])
    	}
    	return err
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 12.3K bytes
    - Viewed (0)
Back to top