Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 116 for modcap (0.22 sec)

  1. pkg/kubelet/volumemanager/cache/actual_state_of_world.go

    		podObj.mounter = mounter
    	}
    
    	asw.attachedVolumes[volumeName].mountedPods[podName] = podObj
    
    	podMap, ok := asw.foundDuringReconstruction[opts.VolumeName]
    	if !ok {
    		podMap = map[volumetypes.UniquePodName]types.UID{}
    	}
    	podMap[opts.PodName] = opts.PodUID
    	asw.foundDuringReconstruction[opts.VolumeName] = podMap
    	return true, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 45.8K bytes
    - Viewed (0)
  2. src/slices/slices_test.go

    			}
    		})
    	}
    
    }
    
    func TestInsertGrowthRate(t *testing.T) {
    	b := make([]byte, 1)
    	maxCap := cap(b)
    	nGrow := 0
    	const N = 1e6
    	for i := 0; i < N; i++ {
    		b = Insert(b, len(b)-1, 0)
    		if cap(b) > maxCap {
    			maxCap = cap(b)
    			nGrow++
    		}
    	}
    	want := int(math.Log(N) / math.Log(1.25)) // 1.25 == growth rate for large slices
    	if nGrow > want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:06 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modcmd/why.go

    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package modcmd
    
    import (
    	"context"
    	"fmt"
    	"strings"
    
    	"cmd/go/internal/base"
    	"cmd/go/internal/imports"
    	"cmd/go/internal/modload"
    )
    
    var cmdWhy = &base.Command{
    	UsageLine: "go mod why [-m] [-vendor] packages...",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 01 21:32:23 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  4. pkg/kubelet/stats/cri_stats_provider.go

    			Name:      pod.GetMetadata().GetName(),
    			Namespace: pod.GetMetadata().GetNamespace(),
    			// UID is intentionally left empty.
    		}
    		podMap[refID] = append(podMap[refID], pod)
    	}
    
    	result := make([]*runtimeapi.PodSandbox, 0)
    	for _, refs := range podMap {
    		if len(refs) == 1 {
    			result = append(result, refs[0])
    			continue
    		}
    		found := false
    		for i := 0; i < len(refs); i++ {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  5. src/cmd/go/main.go

    	"cmd/go/internal/doc"
    	"cmd/go/internal/envcmd"
    	"cmd/go/internal/fix"
    	"cmd/go/internal/fmtcmd"
    	"cmd/go/internal/generate"
    	"cmd/go/internal/help"
    	"cmd/go/internal/list"
    	"cmd/go/internal/modcmd"
    	"cmd/go/internal/modfetch"
    	"cmd/go/internal/modget"
    	"cmd/go/internal/modload"
    	"cmd/go/internal/run"
    	"cmd/go/internal/telemetrycmd"
    	"cmd/go/internal/telemetrystats"
    	"cmd/go/internal/test"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:09:11 UTC 2024
    - 10K bytes
    - Viewed (0)
  6. src/main/webapp/js/admin/bootstrap.min.js.map

    `click${EVENT_KEY}${DATA_API_KEY}`\n}\n\nconst ClassName = {\n  SCROLLABLE         : 'modal-dialog-scrollable',\n  SCROLLBAR_MEASURER : 'modal-scrollbar-measure',\n  BACKDROP           : 'modal-backdrop',\n  OPEN               : 'modal-open',\n  FADE               : 'fade',\n  SHOW               : 'show'\n}\n\nconst Selector = {\n  DIALOG         : '.modal-dialog',\n  MODAL_BODY     : '.modal-body',\n  DATA_TOGGLE    : '[data-toggle=\"modal\"]',\n  DATA_DISMISS   : '[data-dismiss=\"modal\"]',\n  FIXED_CONTENT ...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 185.8K bytes
    - Viewed (1)
  7. src/cmd/go/internal/modcmd/tidy.go

    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // go mod tidy
    
    package modcmd
    
    import (
    	"cmd/go/internal/base"
    	"cmd/go/internal/cfg"
    	"cmd/go/internal/gover"
    	"cmd/go/internal/imports"
    	"cmd/go/internal/modload"
    	"cmd/go/internal/toolchain"
    	"context"
    	"fmt"
    
    	"golang.org/x/mod/modfile"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. pkg/ctrlz/assets/static/css/bootstrap-4.0.0.min.css

    disabled){cursor:pointer}button.close{padding:0;background-color:transparent;border:0;-webkit-appearance:none}.modal-open{overflow:hidden}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;overflow:hidden;outline:0}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:-webkit-transform .3s ease-out;transition:transform .3s ease-out;transition:transform .3s ea...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 141.5K bytes
    - Viewed (0)
  9. pkg/controller/volume/expand/expand_controller.go

    		UpdateFunc: func(old, new interface{}) {
    			oldPVC, ok := old.(*v1.PersistentVolumeClaim)
    			if !ok {
    				return
    			}
    
    			oldReq := oldPVC.Spec.Resources.Requests[v1.ResourceStorage]
    			oldCap := oldPVC.Status.Capacity[v1.ResourceStorage]
    			newPVC, ok := new.(*v1.PersistentVolumeClaim)
    			if !ok {
    				return
    			}
    			newReq := newPVC.Spec.Resources.Requests[v1.ResourceStorage]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  10. src/main/webapp/js/bootstrap.min.js.map

    n}\n\nconst ClassName = {\n  SCROLLABLE         : 'modal-dialog-scrollable',\n  SCROLLBAR_MEASURER : 'modal-scrollbar-measure',\n  BACKDROP           : 'modal-backdrop',\n  OPEN               : 'modal-open',\n  FADE               : 'fade',\n  SHOW               : 'show',\n  STATIC             : 'modal-static'\n}\n\nconst Selector = {\n  DIALOG         : '.modal-dialog',\n  MODAL_BODY     : '.modal-body',\n  DATA_TOGGLE    : '[data-toggle=\"modal\"]',\n  DATA_DISMISS   : '[data-dismiss=\"modal\"]',\n...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Jan 11 06:54:28 UTC 2020
    - 189.9K bytes
    - Viewed (0)
Back to top