Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 113 for getSum (0.2 sec)

  1. platforms/software/test-suites-base/src/main/java/org/gradle/testing/base/plugins/TestingModelBasePlugin.java

                            if (testSuiteBinary.getTasks() instanceof TestSuiteTaskCollection) {
                                testSuiteBinary.checkedBy(((TestSuiteTaskCollection) testSuiteBinary.getTasks()).getRun());
                            }
                            BinarySpec testedBinary = testSuiteBinary.getTestedBinary();
                            if (testedBinary != null && testedBinary.isBuildable()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 17 16:02:04 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/PerformanceTestResult.java

            return operatingSystem;
        }
    
        public void setOperatingSystem(String operatingSystem) {
            this.operatingSystem = operatingSystem;
        }
    
        public String getJvm() {
            return jvm;
        }
    
        public void setJvm(String jvm) {
            this.jvm = jvm;
        }
    
        public String getChannel() {
            return channel;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecycleExecutionPlanCalculator.java

            MojoDescriptor mojoDescriptor = mojoExecution.getMojoDescriptor();
    
            XmlNode executionConfiguration = mojoExecution.getConfiguration() != null
                    ? mojoExecution.getConfiguration().getDom()
                    : null;
            if (executionConfiguration == null) {
                executionConfiguration = new XmlNodeImpl("configuration");
            }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/plugin/version/DefaultPluginVersionRequest.java

            return artifactId;
        }
    
        public DefaultPluginVersionRequest setArtifactId(String artifactId) {
            this.artifactId = artifactId;
    
            return this;
        }
    
        public Model getPom() {
            return pom;
        }
    
        public DefaultPluginVersionRequest setPom(Model pom) {
            this.pom = pom;
    
            return this;
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  5. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/internal/DefaultNativeTestSuiteBinarySpec.java

            }
    
            @Override
            public InstallExecutable getInstall() {
                return findSingleTaskWithType(InstallExecutable.class);
            }
    
            @Override
            public RunTestExecutable getRun() {
                return findSingleTaskWithType(RunTestExecutable.class);
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  6. pkg/kubelet/server/server.go

    	ws := new(restful.WebService)
    	ws.
    		Path("/run")
    	ws.Route(ws.POST("/{podNamespace}/{podID}/{containerName}").
    		To(s.getRun).
    		Operation("getRun"))
    	ws.Route(ws.POST("/{podNamespace}/{podID}/{uid}/{containerName}").
    		To(s.getRun).
    		Operation("getRun"))
    	s.restfulCont.Add(ws)
    
    	s.addMetricsBucketMatcher("exec")
    	ws = new(restful.WebService)
    	ws.
    		Path("/exec")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 40.1K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/maven/MavenPom.groovy

        }
    
        NodeList getDevelopers() {
            return pom?.developers?.developer
        }
    
        NodeList getContributors() {
            return pom?.contributors?.contributor
        }
    
        Node getScm() {
            return pom?.scm[0]
        }
    
        Node getIssueManagement() {
            return pom?.issueManagement[0]
        }
    
        Node getCiManagement() {
            return pom?.ciManagement[0]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/graph/ProjectSelector.java

                if (!optSelectedProject.isPresent()) {
                    String message = "Could not find the selected project in the reactor: " + selector;
                    throw new MavenExecutionException(message, request.getPom());
                }
    
                MavenProject selectedProject = optSelectedProject.get();
    
                selectedProjects.add(selectedProject);
                selectedProjects.addAll(getChildProjects(selectedProject, request));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/plugin/prefix/DefaultPluginPrefixRequest.java

                this.pluginGroups = Collections.unmodifiableList(pluginGroups);
            } else {
                this.pluginGroups = Collections.emptyList();
            }
    
            return this;
        }
    
        public Model getPom() {
            return pom;
        }
    
        public DefaultPluginPrefixRequest setPom(Model pom) {
            this.pom = pom;
    
            return this;
        }
    
        public List<RemoteRepository> getRepositories() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/groovy/scripts/BasicScript.java

            this.dynamicObject.setTarget(target);
        }
    
        @Override
        public StandardOutputCapture getStandardOutputCapture() {
            return standardOutputCapture;
        }
    
        public PrintStream getOut() {
            return System.out;
        }
    
        @Override
        public Object getProperty(String property) {
            return dynamicLookupRoutine.property(dynamicObject, property);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 6.2K bytes
    - Viewed (0)
Back to top