Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 26 for Iflag (0.22 sec)

  1. api/openapi-spec/v3/apis__events.k8s.io__v1_openapi.json

            }
          },
          "parameters": [
            {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 142.7K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1alpha1_openapi.json

            "parameters": [
              {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 235.4K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__apiextensions.k8s.io__v1_openapi.json

                },
                "type": "array",
                "x-kubernetes-list-type": "atomic"
              },
              "served": {
                "default": false,
                "description": "served is a flag enabling/disabling this version from being served via REST APIs",
                "type": "boolean"
              },
              "storage": {
                "default": false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 178.6K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_pods.go

    }
    
    // makeHostsMount makes the mountpoint for the hosts file that the containers
    // in a pod are injected with. podIPs is provided instead of podIP as podIPs
    // are present even if dual-stack feature flag is not enabled.
    func makeHostsMount(podDir string, podIPs []string, hostName, hostDomainName string, hostAliases []v1.HostAlias, useHostNetwork bool) (*kubecontainer.Mount, error) {
    	hostsFilePath := getEtcHostsPath(podDir)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "type": "string"
            },
            "gmsaCredentialSpecName": {
              "description": "GMSACredentialSpecName is the name of the GMSA credential spec to use. This field is alpha-level and is only honored by servers that enable the WindowsGMSA feature flag.",
              "type": "string"
            },
            "runAsUserName": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  6. cmd/site-replication.go

    		return []byte{}, err
    	}
    
    	return finalConfigData, nil
    }
    
    func ilmExpiryReplicationEnabled(sites map[string]madmin.PeerInfo) bool {
    	flag := true
    	for _, pi := range sites {
    		flag = flag && pi.ReplicateILMExpiry
    	}
    	return flag
    }
    
    type siteReplicatorCred struct {
    	Creds auth.Credentials
    	sync.RWMutex
    }
    
    // Get or attempt to load site replicator credentials from disk.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__node.k8s.io__v1_openapi.json

            "parameters": [
              {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 122.9K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/arm64/asm7.go

    	 * around jmps to fix. this is rare.
    	 */
    	for bflag != 0 {
    		bflag = 0
    		pc = 0
    		for p = c.cursym.Func().Text.Link; p != nil; p = p.Link {
    			p.Pc = pc
    			o = c.oplook(p)
    
    			/* very large branches */
    			if (o.flag&BRANCH14BITS != 0 || o.flag&BRANCH19BITS != 0) && p.To.Target() != nil {
    				otxt := p.To.Target().Pc - pc
    				var toofar bool
    				if o.flag&BRANCH14BITS != 0 { // branch instruction encodes 14 bits
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  9. src/reflect/value.go

    	flagKindMask    flag = 1<<flagKindWidth - 1
    	flagStickyRO    flag = 1 << 5
    	flagEmbedRO     flag = 1 << 6
    	flagIndir       flag = 1 << 7
    	flagAddr        flag = 1 << 8
    	flagMethod      flag = 1 << 9
    	flagMethodShift      = 10
    	flagRO          flag = flagStickyRO | flagEmbedRO
    )
    
    func (f flag) kind() Kind {
    	return Kind(f & flagKindMask)
    }
    
    func (f flag) ro() flag {
    	if f&flagRO != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  10. src/debug/elf/elf.go

    	{0x7fffffff, "PT_HIPROC"},
    }
    
    func (i ProgType) String() string   { return stringName(uint32(i), ptStrings, false) }
    func (i ProgType) GoString() string { return stringName(uint32(i), ptStrings, true) }
    
    // Prog.Flag
    type ProgFlag uint32
    
    const (
    	PF_X        ProgFlag = 0x1        /* Executable. */
    	PF_W        ProgFlag = 0x2        /* Writable. */
    	PF_R        ProgFlag = 0x4        /* Readable. */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
Back to top