Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 218 for getNodes (0.15 sec)

  1. pkg/kubelet/server/stats/testing/mock_stats_provider.go

    }
    
    // GetNode mocks base method.
    func (m *MockProvider) GetNode() (*v10.Node, error) {
    	m.ctrl.T.Helper()
    	ret := m.ctrl.Call(m, "GetNode")
    	ret0, _ := ret[0].(*v10.Node)
    	ret1, _ := ret[1].(error)
    	return ret0, ret1
    }
    
    // GetNode indicates an expected call of GetNode.
    func (mr *MockProviderMockRecorder) GetNode() *gomock.Call {
    	mr.mock.ctrl.T.Helper()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_getters.go

    func (kl *Kubelet) getPodResourcesDir() string {
    	return filepath.Join(kl.getRootDir(), config.DefaultKubeletPodResourcesDirName)
    }
    
    // GetPods returns all pods bound to the kubelet and their spec, and the mirror
    // pods.
    func (kl *Kubelet) GetPods() []*v1.Pod {
    	pods := kl.podManager.GetPods()
    	// a kubelet running without apiserver requires an additional
    	// update of the static pod status. See #57106
    	for i, p := range pods {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 00:48:07 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api-builders/src/test/groovy/org/gradle/tooling/internal/provider/runner/DefaultBuildControllerTest.groovy

            _ * modelController.locateBuilderForTarget(projectState, "some.model", false) >> modelScope
            _ * modelScope.getModel("some.model", null) >> model
    
            when:
            def result = controller.getModel(target, modelId)
    
            then:
            result.getModel() == model
        }
    
        def "uses builder for specified build"() {
            def rootDir = new File("dummy")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:56:30 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  4. pkg/kubelet/container/testing/mock_runtime_cache.go

    }
    
    // GetPods mocks base method.
    func (m *MockRuntimeCache) GetPods(arg0 context.Context) ([]*container.Pod, error) {
    	m.ctrl.T.Helper()
    	ret := m.ctrl.Call(m, "GetPods", arg0)
    	ret0, _ := ret[0].([]*container.Pod)
    	ret1, _ := ret[1].(error)
    	return ret0, ret1
    }
    
    // GetPods indicates an expected call of GetPods.
    func (mr *MockRuntimeCacheMockRecorder) GetPods(arg0 any) *gomock.Call {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

            if ((groupId == null) && (getModel().getParent() != null)) {
                groupId = getModel().getParent().getGroupId();
            }
    
            return groupId;
        }
    
        public void setArtifactId(String artifactId) {
            getModel().setArtifactId(artifactId);
        }
    
        public String getArtifactId() {
            return getModel().getArtifactId();
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r72/CompositeBuildCrossVersionSpec.groovy

    class CompositeBuildCrossVersionSpec extends ToolingApiSpecification {
        def "includes buildSrc builds in model"() {
            buildsWithBuildSrc()
    
            given:
            def model = withConnection {
                it.getModel(GradleBuild)
            }
    
            expect:
            model.includedBuilds.size() == 1
    
            def included = model.includedBuilds[0]
            included.buildIdentifier.rootDir == file("child")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r112/PublicationsCrossVersionSpec.groovy

                connection.getModel(ProjectPublications)
            }
    
            then:
            publications.publications.empty
        }
    
        def "project without any configured publications"() {
            buildFile << "apply plugin: 'java'"
    
            when:
            ProjectPublications publications = withConnection { connection ->
                connection.getModel(ProjectPublications)
            }
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. pkg/kubelet/apis/podresources/testing/provider_mock.go

    }
    
    // GetPods mocks base method.
    func (m *MockPodsProvider) GetPods() []*v1.Pod {
    	m.ctrl.T.Helper()
    	ret := m.ctrl.Call(m, "GetPods")
    	ret0, _ := ret[0].([]*v1.Pod)
    	return ret0
    }
    
    // GetPods indicates an expected call of GetPods.
    func (mr *MockPodsProviderMockRecorder) GetPods() *gomock.Call {
    	mr.mock.ctrl.T.Helper()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/suggest/entity/ElevateWord.java

                    this.getBoost(), this.getTags().toArray(new String[this.getTags().size()]),
                    this.getRoles().toArray(new String[this.getRoles().size()]), null, SuggestItem.Kind.USER);
        }
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/tooling/provider/model/internal/IntermediateToolingModelProvider.java

         * Model name to find the underlying builder is derived from the binary name of the {@code modelType}.
         */
        default <T> List<T> getModels(Project requester, List<Project> targets, Class<T> modelType, @Nullable Object parameter) {
            return getModels(requester, targets, modelType.getName(), modelType, parameter);
        }
    
        /**
         * Applies a plugin of a given type to the given projects.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top