Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 55 for gids (0.13 sec)

  1. doc/godebug.md

    field, [`Policies`](/pkg/crypto/x509/#Certificate.Policies), which supports
    certificate policy OIDs with components larger than 31 bits. By default this
    field is only used during parsing, when it is populated with policy OIDs, but
    not used during marshaling. It can be used to marshal these larger OIDs, instead
    of the existing PolicyIdentifiers field, by using the
    [`x509usepolicies` setting.](/pkg/crypto/x509/#CreateCertificate).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/helpers_linux.go

    func getCgroupProcs(dir string) ([]int, error) {
    	procsFile := filepath.Join(dir, "cgroup.procs")
    	f, err := os.Open(procsFile)
    	if err != nil {
    		if os.IsNotExist(err) {
    			// The procsFile does not exist, So no pids attached to this directory
    			return []int{}, nil
    		}
    		return nil, err
    	}
    	defer f.Close()
    
    	s := bufio.NewScanner(f)
    	out := []int{}
    	for s.Scan() {
    		if t := s.Text(); t != "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 11:52:28 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  3. src/image/gif/reader.go

    // terminator. If the very end of LZW data happened to fill one sub-block, at
    // most one more sub-block of length 1 may exist before the block-terminator.
    // These accommodations allow us to support GIFs created by less strict encoders.
    // See https://golang.org/issue/16146.
    func (b *blockReader) close() error {
    	if b.err == io.EOF {
    		// A clean block-sequence terminator was encountered while reading.
    		return nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:15:54 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/node_container_manager_linux.go

    		rc.Memory = &val
    	}
    	if q, exists := rl[v1.ResourceCPU]; exists {
    		// CPU is defined in milli-cores.
    		val := MilliCPUToShares(q.MilliValue())
    		rc.CPUShares = &val
    	}
    	if q, exists := rl[pidlimit.PIDs]; exists {
    		val := q.Value()
    		rc.PidsLimit = &val
    	}
    	rc.HugePageLimit = HugePageLimits(rl)
    
    	return &rc
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  5. src/syscall/exec_linux.go

    		if err := writeSetgroups(pid, sys.GidMappingsEnableSetgroups); err != nil && err != ENOENT {
    			return err
    		}
    		gidf := "/proc/" + itoa.Itoa(pid) + "/gid_map"
    		if err := writeIDMappings(gidf, sys.GidMappings); err != nil {
    			return err
    		}
    	}
    
    	return nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 23K bytes
    - Viewed (0)
  6. istioctl/pkg/tag/generate.go

    	// since they are functioned differently with different name.
    	// The filtered common labels are then added to the incoming generated
    	// webhooks, which aids in managing these webhooks via the istioctl/operator.
    	filteredLabels := make(map[string]string)
    	for k, v := range wh.Labels {
    		if k != "app" {
    			filteredLabels[k] = v
    		}
    	}
    
    	return &tagWebhookConfig{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 16 17:43:49 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__authentication.k8s.io__v1_openapi.json

              },
              "uid": {
                "description": "A unique value that identifies this user across time. If this user is deleted and another user by the same name is added, they will have different UIDs.",
                "type": "string"
              },
              "username": {
                "description": "The name that uniquely identifies this user among all active users.",
                "type": "string"
              }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:25 UTC 2023
    - 41.5K bytes
    - Viewed (0)
  8. cni/pkg/repair/repaircontroller.go

    	// once the pod restarts (in CrashLoopBackoff), which can take some time.
    	// We don't want to constantly try to apply the iptables rules, which is unneeded and will fail.
    	// Instead, we track which UIDs we repaired and skip them if already repaired.
    	//
    	// An alternative would be to write something to the Pod (status, annotation, etc).
    	// However, this requires elevated privileges we want to avoid
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 10 00:31:55 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  9. src/image/gif/writer.go

    	e := encoder{g: *g}
    	// The GIF.Disposal, GIF.Config and GIF.BackgroundIndex fields were added
    	// in Go 1.5. Valid Go 1.4 code, such as when the Disposal field is omitted
    	// in a GIF struct literal, should still produce valid GIFs.
    	if e.g.Disposal != nil && len(e.g.Image) != len(e.g.Disposal) {
    		return errors.New("gif: mismatched image and disposal lengths")
    	}
    	if e.g.Config == (image.Config{}) {
    		p := g.Image[0].Bounds().Max
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:38:09 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/test_kit.adoc

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    [[test_kit]]
    = Testing Build Logic with TestKit
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 15.8K bytes
    - Viewed (0)
Back to top