Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 319 for pkgname (0.14 sec)

  1. src/cmd/go/internal/work/exec.go

    	sh := b.Shell(a)
    	p := a.Package
    	p.Internal.Cover.Cfg = a.Objdir + "coveragecfg"
    	pcfg := covcmd.CoverPkgConfig{
    		PkgPath: p.ImportPath,
    		PkgName: p.Name,
    		// Note: coverage granularity is currently hard-wired to
    		// 'perblock'; there isn't a way using "go build -cover" or "go
    		// test -cover" to select it. This may change in the future
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  2. pkg/kubelet/volumemanager/cache/actual_state_of_world.go

    		"volumeName %q mounted to %q needs to resize file system",
    		err.volumeName, err.podName)
    }
    
    func newFsResizeRequiredError(
    	volumeName v1.UniqueVolumeName, podName volumetypes.UniquePodName, currentSize resource.Quantity) error {
    	return FsResizeRequiredError{
    		CurrentSize: currentSize,
    		volumeName:  volumeName,
    		podName:     podName,
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 45.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/exception/ClIllegalArgumentException.java

         */
        public ClIllegalArgumentException(final String argName, final String messageCode, final Object[] args) {
            this(argName, messageCode, args, null);
        }
    
        /**
         * {@link ClIllegalArgumentException}を作成します。
         *
         * @param argName
         *            引数の名前
         * @param messageCode
         *            メッセージコード
         * @param args
         *            引数の配列
         * @param cause
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  4. pkg/kubelet/volumemanager/reconciler/reconstruct.go

    	reconstructedVolumeNames := []v1.UniqueVolumeName{}
    	for _, volume := range podVolumes {
    		if rc.actualStateOfWorld.VolumeExistsWithSpecName(volume.podName, volume.volumeSpecName) {
    			klog.V(4).InfoS("Volume exists in actual state, skip cleaning up mounts", "podName", volume.podName, "volumeSpecName", volume.volumeSpecName)
    			// There is nothing to reconstruct
    			continue
    		}
    		reconstructedVolume, err := rc.reconstructVolume(volume)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:23:12 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/legacy_test.go

    	containerID := randStringBytes(80)
    	containerName := randStringBytes(70)
    	podName := randStringBytes(128)
    	podNamespace := randStringBytes(10)
    	// The file name cannot exceed 255 characters. Since .log suffix is required, the prefix cannot exceed 251 characters.
    	expectedPath := filepath.Join(legacyContainerLogsDir, fmt.Sprintf("%s_%s_%s-%s", podName, podNamespace, containerName, containerID)[:251]+".log")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 12:34:58 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  6. pkg/volume/util/operationexecutor/operation_executor_test.go

    			pod := getTestPodWithSecret(podName, secretName)
    			volumesToUnmount[i] = MountedVolume{
    				PodName:    volumetypes.UniquePodName(podName),
    				VolumeName: v1.UniqueVolumeName(secretName),
    				PodUID:     pod.UID,
    				VolumeSpec: tmpSpec,
    			}
    		} else {
    			pod := getTestPodWithGCEPD(podName, pdName)
    			volumesToUnmount[i] = MountedVolume{
    				PodName:    volumetypes.UniquePodName(podName),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  7. cni/pkg/repair/repair_test_helpers.go

    	brokenPodTerminating = makePod(makePodArgs{
    		PodName: "broken-pod-terminating",
    		Annotations: map[string]string{
    			"sidecar.istio.io/status": "something",
    		},
    		Labels: map[string]string{
    			"testlabel": "true",
    		},
    		NodeName:            "test-node",
    		InitContainerStatus: &brokenInitContainerTerminating,
    	})
    
    	brokenPodWaiting = makePod(makePodArgs{
    		PodName: "broken-pod-waiting",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 12 17:39:53 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  8. istioctl/pkg/cli/mock_client.go

    	return c.Results, nil
    }
    
    func (c MockClient) EnvoyDo(ctx context.Context, podName, podNamespace, method, path string) ([]byte, error) {
    	results, ok := c.Results[podName]
    	if !ok {
    		return nil, fmt.Errorf("unable to retrieve Pod: pods %q not found", podName)
    	}
    	return results, nil
    }
    
    func (c MockClient) EnvoyDoWithPort(ctx context.Context, podName, podNamespace, method, path string, port int) ([]byte, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 08 08:38:19 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. pkg/kubelet/volumemanager/reconciler/reconstruct_common.go

    	}
    	gvi.podVolumes[rcv.podName] = rcv
    }
    
    func (rc *reconciler) cleanupMounts(volume podVolume) {
    	klog.V(2).InfoS("Reconciler sync states: could not find volume information in desired state, clean up the mount points", "podName", volume.podName, "volumeSpecName", volume.volumeSpecName)
    	mountedVolume := operationexecutor.MountedVolume{
    		PodName: volume.podName,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/ar.go

    				Exitf("%s missing archive entry at offset %d", name, off)
    			}
    			pname := fmt.Sprintf("%s(%s)", name, arhdr.name)
    			l = atolwhex(arhdr.size)
    
    			pkname := filepath.Base(name)
    			if i := strings.LastIndex(pkname, ".a"); i >= 0 {
    				pkname = pkname[:i]
    			}
    			libar := sym.Library{Pkg: pkname}
    			h := ldobj(ctxt, f, &libar, l, pname, name)
    			if h.ld == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 19 23:11:11 UTC 2022
    - 7.2K bytes
    - Viewed (0)
Back to top