Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 99 of 99 for allowAll (0.11 sec)

  1. src/runtime/mpallocbits.go

    	m.pallocBits.allocRange(i, n)
    	m.scavenged.clearRange(i, n)
    }
    
    // allocAll sets every bit in the bitmap to 1 and updates
    // the scavenged bits appropriately.
    func (m *pallocData) allocAll() {
    	// Clear the scavenged bits when we alloc the range.
    	m.pallocBits.allocAll()
    	m.scavenged.clearAll()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 15:13:43 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/config_test.go

    					},
    				},
    			},
    			PluginNames: []string{},
    		},
    		"legacy configuration with using legacy plugins": {
    			ConfigBody: `{
    "imagePolicy": {
      "kubeConfigFile": "/home/user/.kube/config",
      "allowTTL": 30,
      "denyTTL": 30,
      "retryBackoff": 500,
      "defaultAllow": true
    },
    "podNodeSelectorPluginConfig": {
      "clusterDefaultNodeSelector": ""
    }  
    }`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 15:48:39 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  3. cmd/storage-datatypes.go

    // Make sure to bump the internode version at storage-rest-common.go
    type RawFileInfo struct {
    	// Content of entire xl.meta (may contain data depending on what was requested by the caller.
    	Buf []byte `msg:"b,allownil"`
    }
    
    // FileInfo - represents file stat information.
    // The above means that any added/deleted fields are incompatible.
    // Make sure to bump the internode version at storage-rest-common.go
    type FileInfo struct {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  4. cmd/xl-storage-format-v2_gen.go

    			return
    		}
    	}
    	// write "PartETags"
    	err = en.Append(0xa9, 0x50, 0x61, 0x72, 0x74, 0x45, 0x54, 0x61, 0x67, 0x73)
    	if err != nil {
    		return
    	}
    	if z.PartETags == nil { // allownil: if nil
    		err = en.WriteNil()
    		if err != nil {
    			return
    		}
    	} else {
    		err = en.WriteArrayHeader(uint32(len(z.PartETags)))
    		if err != nil {
    			err = msgp.WrapError(err, "PartETags")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  5. internal/grid/msg.go

    type muxConnectError struct {
    	Error string
    }
    
    func (muxConnectError) Op() Op {
    	return OpMuxConnectError
    }
    
    type pongMsg struct {
    	NotFound bool    `msg:"nf"`
    	Err      *string `msg:"e,allownil"`
    }
    
    func (pongMsg) Op() Op {
    	return OpPong
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Nov 28 19:22:29 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  6. cmd/xl-storage-format-v2.go

    	PartETags          []string          `json:"PartETags" msg:"PartETags,allownil"`             // Part ETags
    	PartSizes          []int64           `json:"PartSizes" msg:"PartSizes"`                      // Part Sizes
    	PartActualSizes    []int64           `json:"PartASizes,omitempty" msg:"PartASizes,allownil"` // Part ActualSizes (compression)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  7. cmd/storage-datatypes_gen.go

    		return
    	}
    	if z.Data == nil { // allownil: if nil
    		o = msgp.AppendNil(o)
    	} else {
    		o = msgp.AppendBytes(o, z.Data)
    	}
    	o = msgp.AppendInt(o, z.NumVersions)
    	o = msgp.AppendTime(o, z.SuccessorModTime)
    	o = msgp.AppendBool(o, z.Fresh)
    	o = msgp.AppendInt(o, z.Idx)
    	if z.Checksum == nil { // allownil: if nil
    		o = msgp.AppendNil(o)
    	} else {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 130.6K bytes
    - Viewed (0)
  8. src/runtime/mpagealloc.go

    		chunk.allocRange(si, pallocChunkPages-si)
    		p.scav.index.alloc(sc, pallocChunkPages-si)
    		for c := sc + 1; c < ec; c++ {
    			chunk := p.chunkOf(c)
    			scav += chunk.scavenged.popcntRange(0, pallocChunkPages)
    			chunk.allocAll()
    			p.scav.index.alloc(c, pallocChunkPages)
    		}
    		chunk = p.chunkOf(ec)
    		scav += chunk.scavenged.popcntRange(0, ei+1)
    		chunk.allocRange(0, ei+1)
    		p.scav.index.alloc(ec, ei+1)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
  9. cluster/gce/gci/configure-helper.sh

          cat <<EOF >>/etc/srv/kubernetes/admission_controller_config.yaml
    - name: ImagePolicyWebhook
      configuration:
        imagePolicy:
          kubeConfigFile: /etc/srv/kubernetes/gcp_image_review.kubeconfig
          allowTTL: 30
          denyTTL: 30
          retryBackoff: 500
          defaultAllow: true
    EOF
        fi
      fi
    }
    
    # Write the config for the audit policy.
    function create-master-audit-policy {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
Back to top