Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 294 for rootCA (0.38 sec)

  1. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/results/AttachParentTestResultProcessor.java

        private Object rootId;
        private final TestResultProcessor processor;
    
        public AttachParentTestResultProcessor(TestResultProcessor processor) {
            this.processor = processor;
        }
    
        @Override
        public void started(TestDescriptorInternal test, TestStartEvent event) {
            if (rootId == null) {
                assert test.isComposite();
                rootId = test.getId();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. pkg/kubelet/stats/helper.go

    }
    
    func buildLogsStats(cstat *cadvisorapiv2.ContainerStats, rootFs *cadvisorapiv2.FsInfo) *statsapi.FsStats {
    	fsStats := &statsapi.FsStats{
    		Time:           metav1.NewTime(cstat.Timestamp),
    		AvailableBytes: &rootFs.Available,
    		CapacityBytes:  &rootFs.Capacity,
    		InodesFree:     rootFs.InodesFree,
    		Inodes:         rootFs.Inodes,
    	}
    
    	if rootFs.Inodes != nil && rootFs.InodesFree != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 17 23:40:02 UTC 2023
    - 14.8K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/CrossVersionTestEngine.java

        }
    
        private List<TestVariant> buildTestVariants(UniqueId rootId, EngineDiscoveryRequest discoveryRequest) {
            List<TestVariant> variants = new ArrayList<TestVariant>();
            variants.add(TestVariant.tapiCurrent(rootId, discoveryRequest));
            variants.add(TestVariant.selected(rootId, discoveryRequest));
            variants.add(TestVariant.tapiTargetLoaded(rootId, discoveryRequest));
    
            return variants;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/util/chroot_unix.go

    // NB: All file paths after this call are effectively relative to
    // `rootfs`
    func Chroot(rootfs string) error {
    	if err := syscall.Chroot(rootfs); err != nil {
    		return errors.Wrapf(err, "unable to chroot to %s", rootfs)
    	}
    	root := filepath.FromSlash("/")
    	if err := os.Chdir(root); err != nil {
    		return errors.Wrapf(err, "unable to chdir to %s", root)
    	}
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  5. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/processors/CaptureTestOutputTestResultProcessor.java

                    //this way we always have and id to attach logging events for
                    parentId = rootId;
                }
                parents.put(test.getId(), parentId);
            }
        }
    
        @Override
        public void completed(Object testId, TestCompleteEvent event) {
            if (testId.equals(rootId)) {
                //when root suite is completed we stop redirecting
                try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  6. pilot/pkg/model/virtualservice.go

    		rootVs := root.Spec.(*networking.VirtualService)
    		mergedRoutes := []*networking.HTTPRoute{}
    		for _, route := range rootVs.Http {
    			// it is root vs with delegate
    			if delegate := route.Delegate; delegate != nil {
    				delegateNamespace := delegate.Namespace
    				if delegateNamespace == "" {
    					delegateNamespace = root.Namespace
    				}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 11:17:03 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  7. src/cmd/relnote/relnote_test.go

    func TestCheckAPIFragments(t *testing.T) {
    	if !*flagCheck {
    		t.Skip("-check not specified")
    	}
    	root := testenv.GOROOT(t)
    	rootFS := os.DirFS(root)
    	files, err := fs.Glob(rootFS, "api/next/*.txt")
    	if err != nil {
    		t.Fatal(err)
    	}
    	t.Logf("checking release notes for %d files in api/next", len(files))
    	docFS := os.DirFS(filepath.Join(root, "doc", "next"))
    	// Check that each api/next file has a corresponding release note fragment.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 16:31:53 UTC 2024
    - 1K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_get_main.txt

    stderr '^go: \.\. \('$WORK'[/\\]gopath\) is not within module rooted at '$WORK'[/\\]gopath[/\\]src$'
    ! go get $WORK
    stderr '^go: '$WORK' is not within module rooted at '$WORK'[/\\]gopath[/\\]src$'
    ! go get ../...
    stderr '^go: \.\./\.\.\. \('$WORK'[/\\]gopath([/\\]...)?\) is not within module rooted at '$WORK'[/\\]gopath[/\\]src$'
    ! go get $WORK/...
    stderr '^go: '$WORK'[/\\]\.\.\. is not within module rooted at '$WORK'[/\\]gopath[/\\]src$'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  9. cluster/gce/gci/mounter/mounter.go

    	chrootCmd        = "chroot"
    	mountCmd         = "mount"
    	rootfs           = "rootfs"
    	nfsRPCBindErrMsg = "mount.nfs: rpc.statd is not running but is required for remote locking.\nmount.nfs: Either use '-o nolock' to keep locks local, or start statd.\nmount.nfs: an incorrect mount option was specified\n"
    	rpcBindCmd       = "/sbin/rpcbind"
    	defaultRootfs    = "/home/kubernetes/containerized_mounter/rootfs"
    )
    
    func main() {
    
    	if len(os.Args) < 2 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 20 22:26:16 UTC 2019
    - 2.8K bytes
    - Viewed (0)
  10. src/internal/filepathlite/path.go

    					out.w--
    				}
    			case !rooted:
    				// cannot backtrack, but not rooted, so append .. element.
    				if out.w > 0 {
    					out.append(Separator)
    				}
    				out.append('.')
    				out.append('.')
    				dotdot = out.w
    			}
    		default:
    			// real path element.
    			// add slash if needed
    			if rooted && out.w != 1 || !rooted && out.w != 0 {
    				out.append(Separator)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:50 UTC 2024
    - 5.8K bytes
    - Viewed (0)
Back to top