Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for flagstr (0.26 sec)

  1. src/cmd/compile/internal/ssa/rewritePPC64.go

    	// cond: uint64(x)<uint64(y)
    	// result: (FlagLT)
    	for {
    		y := auxIntToInt64(v.AuxInt)
    		if v_0.Op != OpPPC64MOVDconst {
    			break
    		}
    		x := auxIntToInt64(v_0.AuxInt)
    		if !(uint64(x) < uint64(y)) {
    			break
    		}
    		v.reset(OpPPC64FlagLT)
    		return true
    	}
    	// match: (CMPUconst (MOVDconst [x]) [y])
    	// cond: uint64(x)>uint64(y)
    	// result: (FlagGT)
    	for {
    		y := auxIntToInt64(v.AuxInt)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewriteARM.go

    	// result: (SBCshiftRL x y [c] flags)
    	for {
    		x := v_0
    		if v_1.Op != OpARMSRLconst {
    			break
    		}
    		c := auxIntToInt32(v_1.AuxInt)
    		y := v_1.Args[0]
    		flags := v_2
    		v.reset(OpARMSBCshiftRL)
    		v.AuxInt = int32ToAuxInt(c)
    		v.AddArg3(x, y, flags)
    		return true
    	}
    	// match: (SBC (SRLconst [c] y) x flags)
    	// result: (RSCshiftRL x y [c] flags)
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 486.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewriteS390X.go

    	// cond: uint64(x)<uint64(y)
    	// result: (FlagLT)
    	for {
    		y := auxIntToInt32(v.AuxInt)
    		if v_0.Op != OpS390XMOVDconst {
    			break
    		}
    		x := auxIntToInt64(v_0.AuxInt)
    		if !(uint64(x) < uint64(y)) {
    			break
    		}
    		v.reset(OpS390XFlagLT)
    		return true
    	}
    	// match: (CMPUconst (MOVDconst [x]) [y])
    	// cond: uint64(x)>uint64(y)
    	// result: (FlagGT)
    	for {
    		y := auxIntToInt32(v.AuxInt)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 395.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux.go

    	Contents_encryption_mode  uint8
    	Filenames_encryption_mode uint8
    	Flags                     uint8
    	Master_key_descriptor     [8]uint8
    }
    
    type FscryptKey struct {
    	Mode uint32
    	Raw  [64]uint8
    	Size uint32
    }
    
    type FscryptPolicyV1 struct {
    	Version                   uint8
    	Contents_encryption_mode  uint8
    	Filenames_encryption_mode uint8
    	Flags                     uint8
    	Master_key_descriptor     [8]uint8
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
  5. src/net/http/h2_bundle.go

    		return http2errStreamID
    	}
    	var flags http2Flags
    	if p.PadLength != 0 {
    		flags |= http2FlagHeadersPadded
    	}
    	if p.EndStream {
    		flags |= http2FlagHeadersEndStream
    	}
    	if p.EndHeaders {
    		flags |= http2FlagHeadersEndHeaders
    	}
    	if !p.Priority.IsZero() {
    		flags |= http2FlagHeadersPriority
    	}
    	f.startWrite(http2FrameHeaders, flags, p.StreamID)
    	if p.PadLength != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.23.md

    - Controller-manager: the following flags have no effect and would be removed in v1.24:
      - `--port`
      - `--address`
      The insecure port flags `--port` may only be set to 0 now.
    - Kube-scheduler: the `--port` and `--address` flags have no effect and would be removed in v1.24.
      The insecure port flags `--port` may only be set to 0 now.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 28 21:06:52 UTC 2023
    - 424.5K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.10.md

    ub.com/kubernetes/kubernetes/pull/58418), [@yujuhong](https://github.com/yujuhong))
    
    * The Kubelet now explicitly registers all of its command-line flags with an internal flagset, which prevents flags from third party libraries from unintentionally leaking into the Kubelet's command-line API. Many unintentionally leaked flags are now marked deprecated, so that users have a chance to migrate away from them before they are removed. In addition, one previously leaked flag, --cloud-provi...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 341.8K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.6.md

    ### kubeadm
    * Quite a few flags been renamed or removed.  Those options that are removed as flags can still be accessed via the config file.  Most notably this includes external etcd settings and the option for setting the cloud provider on the API server.  The [kubeadm reference documentation](https://kubernetes.io/docs/admin/kubeadm/) is up to date with the new flags.
    
    ### Other Deprecations
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 304K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.11.md

    or `/etc/sysconfig/kubelet`, depending on the system...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 328.4K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.8.md

    * The following deprecated flags were removed from `kube-controller-manager`:
    
      * `replication-controller-lookup-cache-size`
      * `replicaset-lookup-cache-size`
      * `daemonset-lookup-cache-size`
    
      Don't use these flags. Using deprecated flags causes the server to print a warning. Using a removed flag causes the server to abort the startup.
    
    * The following deprecated flags were removed from `kubelet`:
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
Back to top