Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 19 of 19 for orphaned (0.17 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r40/BuildProgressCrossVersionSpec.groovy

            def orphans = roots.findAll { it.descriptor.name != 'Run build' }
            orphans.size() == 4
            orphans.findAll { it.descriptor.name.startsWith('Unmanaged thread operation #') } == orphans
            orphans[0].child "Download ${module.rootMetaData.uri}"
            orphans[1].child "Download ${module.rootMetaData.sha1.uri}"
            orphans[2].child "Download ${module.rootMetaData.uri}"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  2. build/pause/Makefile

    	touch $@
    
    # Useful for testing, not automatically included in container image
    orphan: bin/orphan-linux-$(ARCH)
    bin/orphan-linux-$(ARCH): linux/orphan.c
    	mkdir -p bin
    	docker run --rm -u $$(id -u):$$(id -g) -v $$(pwd):/build \
    		$(KUBE_CROSS_IMAGE):$(KUBE_CROSS_VERSION) \
    		/bin/bash -c "\
    			cd /build && \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 19:31:40 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  3. pkg/kubelet/volumemanager/reconciler/reconciler.go

    	// that is still needed, but it did not reach DSW yet.
    	if readyToUnmount {
    		// Ensure devices that should be detached/unmounted are detached/unmounted.
    		rc.unmountDetachDevices()
    
    		// Clean up any orphan volumes that failed reconstruction.
    		rc.cleanOrphanVolumes()
    	}
    
    	if len(rc.volumesNeedUpdateFromNodeStatus) != 0 {
    		rc.updateReconstructedFromNodeStatus()
    	}
    	if len(rc.volumesNeedUpdateFromNodeStatus) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:23:12 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. src/internal/coverage/pods/pods_test.go

    	mkmeta(o1, "m1")
    	mkcounter(o1, "m1", 1, 42)
    	mkcounter(o1, "m1", 2, 41)
    	mkcounter(o1, "m1", 2, 40)
    
    	// Add a counter file with no associated meta file.
    	mkcounter(o1, "orphan", 9, 39)
    
    	// Add a meta-data file with three counter files to second dir.
    	mkmeta(o2, "m2")
    	mkcounter(o2, "m2", 1, 38)
    	mkcounter(o2, "m2", 2, 37)
    	mkcounter(o2, "m2", 3, 36)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 31 14:00:17 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  5. pkg/registry/batch/job/storage/storage.go

    		Job:    jobRest,
    		Status: jobStatusRest,
    	}, nil
    }
    
    var deleteOptionWarnings = "child pods are preserved by default when jobs are deleted; " +
    	"set propagationPolicy=Background to remove them or set propagationPolicy=Orphan to suppress this warning"
    
    // REST implements a RESTStorage for jobs against etcd
    type REST struct {
    	*genericregistry.Store
    }
    
    // NewREST returns a RESTStorage object that will work against Jobs.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:19 UTC 2022
    - 6.1K bytes
    - Viewed (0)
  6. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/logging/AbstractTestLoggerTest.groovy

            then:
            textOutputFactory.toString() == "{TestEventLogger}{INFO}${sep}OuterSuiteClass > streamOfTests() > a test STARTED${sep}"
        }
    
        def "logging of orphan atomic test"() {
            createLogger(LogLevel.INFO)
            methodDescriptor.parent = null
    
            when:
            logger.logEvent(methodDescriptor, TestLogEvent.STARTED)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/version_buildvcs_git.txt

    env GOBIN=$WORK/gopath/bin
    env oldpath=$PATH
    cd repo/a
    
    # If there's no local repository, there's no VCS info.
    go install
    go version -m $GOBIN/a$GOEXE
    ! stdout vcs.revision
    rm $GOBIN/a$GOEXE
    
    # If there's an orphan .git file left by a git submodule, it's not a git
    # repository, and there's no VCS info.
    cd ../gitsubmodule
    go install
    go version -m $GOBIN/gitsubmodule$GOEXE
    ! stdout vcs.revision
    rm $GOBIN/gitsubmodule$GOEXE
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/phases/certs/certlist_test.go

    		"leaf1":       leaf1,
    		"self-signed": selfSigned,
    	}
    
    	orphanCertMap := CertificateMap{
    		"leaf0": leaf0,
    	}
    
    	if _, err := orphanCertMap.CertTree(); err == nil {
    		t.Error("expected orphan cert map to error, but got nil")
    	}
    
    	certTree, err := certMap.CertTree()
    	t.Logf("cert tree: %v", certTree)
    	if err != nil {
    		t.Errorf("expected no error, but got %v", err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  9. pkg/controller/garbagecollector/graph.go

    // use the respective locks, so the return values of the getters can be
    // inconsistent.
    type node struct {
    	identity objectReference
    	// dependents will be read by the orphan() routine, we need to protect it with a lock.
    	dependentsLock sync.RWMutex
    	// dependents are the nodes that have node.identity as a
    	// metadata.ownerReference.
    	dependents map[*node]struct{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 13:37:56 UTC 2023
    - 7.1K bytes
    - Viewed (0)
Back to top