Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for flagstr (0.18 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/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)
  3. 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)
  4. CHANGELOG/CHANGELOG-1.30.md

    - The kubernetes repo now uses Go workspaces.  This should not impact end users at all, but does have impact for developers of downstream projects.  Switching to workspaces caused some breaking changes in the flags to the various k8s.io/code-generator tools.  Downstream consumers should look at staging/src/k8s.io/code-generator/kube_codegen.sh to see the changes. ([#123529](https://github.com/kubernetes/kubernetes/pull/123529), [@thockin](https://github.com/thockin))...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  5. pkg/proxy/iptables/proxier_test.go

    	itf := net.Interface{Index: 0, MTU: 0, Name: "lo", HardwareAddr: nil, Flags: 0}
    	addrs := []net.Addr{
    		&net.IPNet{IP: netutils.ParseIPSloppy("127.0.0.1"), Mask: net.CIDRMask(8, 32)},
    		&net.IPNet{IP: netutils.ParseIPSloppy("::1/128"), Mask: net.CIDRMask(128, 128)},
    	}
    	networkInterfacer.AddInterfaceAddr(&itf, addrs)
    	itf1 := net.Interface{Index: 1, MTU: 0, Name: "eth0", HardwareAddr: nil, Flags: 0}
    	addrs1 := []net.Addr{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.28.md

    - Kube-controller-manager deprecate `--volume-host-cidr-denylist` and `--volume-host-allow-local-loopback` flags. ([#118128](https://github.com/kubernetes/kubernetes/pull/118128), [@carlory](https://github.com/carlory)) [SIG API Machinery, Apps, Network, Node, Storage and Testing]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.27.md

    - `k8s.io/component-base/logs` now also supports adding command line flags to a `flag.FlagSet`. ([#114731](https://github.com/kubernetes/kubernetes/pull/114731), [@pohly](https://github.com/pohly))
    - `kubelet`: migrated `--container-runtime-endpoint` and `--image-service-endpoint`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  8. ChangeLog.md

    - [`KT-63544`](https://youtrack.jetbrains.com/issue/KT-63544) KGP: JS - KotlinJsIrLink is not compatible with Gradle CC starting 8.4
    - [`KT-63312`](https://youtrack.jetbrains.com/issue/KT-63312) KJS: Apply IR flags for JS compilations unconditionally
    - [`KT-62633`](https://youtrack.jetbrains.com/issue/KT-62633) wasmWasi/JsNodeTest tasks are always not up-to-date
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/types.go

    	//    but used a generic ObjectReference type that didn't really have the fields we needed
    	// All uses/persistence of the NodeConfigSource struct prior to 1.11 were gated by alpha feature flags,
    	// so there was no persisted data for these fields that needed to be migrated/handled.
    
    	// +k8s:deprecated=kind
    	// +k8s:deprecated=apiVersion
    	// +k8s:deprecated=configMapRef,protobuf=1
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
Back to top