Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 3,997 for Result (0.25 sec)

  1. platforms/core-runtime/time/src/main/java/org/gradle/internal/time/TimeFormatting.java

            if (minutes > 0 || result.length() > 0) {
                result.append(minutes);
                result.append("m");
            }
            int secondsScale = result.length() > 0 ? 2 : 3;
            result.append(BigDecimal.valueOf(duration).divide(BigDecimal.valueOf(MILLIS_PER_SECOND)).setScale(secondsScale, RoundingMode.HALF_UP));
            result.append("s");
            return result.toString();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:20:17 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/helper/DuplicateHostHelperTest.java

            String url;
            String result;
    
            url = "http://foo.com";
            result = "http://www.foo.com";
            assertEquals(result, duplicateHostHelper.convert(url));
    
            url = "http://foo.com/";
            result = "http://www.foo.com/";
            assertEquals(result, duplicateHostHelper.convert(url));
    
            url = "http://foo.com:8080/";
            result = "http://www.foo.com:8080/";
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/FetchAllIdeaProjects.java

        @Override
        public Result execute(BuildController controller) {
            Result result = new Result();
    
            GradleBuild buildModel = controller.getBuildModel();
            result.rootBuild = buildModel;
            result.rootIdeaProject = controller.getModel(IdeaProject.class);
    
            collectAllNestedBuilds(buildModel, controller, result);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs-asciidoctor-extensions-base/src/main/java/org/gradle/docs/asciidoctor/IdGenerator.java

            String result = source.toLowerCase();
    
            // replace invalid characters
            result = ID_PATTERN.matcher(result).replaceAll("");
    
            // normalize separators
            result = SEPARATOR_PATTERN.matcher(result).replaceAll(PART_SEPARATOR);
    
            // strip separator from the end
            if (result.endsWith(PART_SEPARATOR)) {
                result = result.substring(0, result.length() - 1);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/samples/build-organization/multi-project-with-convention-plugins/groovy/buildSrc/src/test/groovy/com/example/LibraryPluginTest.groovy

            result.task(":readmeCheck").outcome == TaskOutcome.FAILED
            result.output.contains('README should contain section: ^## API$')
        }
    
        def "fails when README does not have Changelog section"() {
            given:
            new File(testProjectDir, 'README.md') << """
    ## API
    public API description
            """
    
            when:
            def result = runTaskWithFailure('check')
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/BuildResultLoggerIntegrationTest.groovy

            then:
            result.assertTasksNotSkipped(":adHocTask", ":executedTask")
            result.assertHasPostBuildOutput "2 actionable tasks: 2 executed"
    
            when:
            run "adHocTask", "executedTask"
    
            then:
            result.assertTaskSkipped(":adHocTask")
            result.assertTasksNotSkipped(":executedTask")
            result.assertHasPostBuildOutput "2 actionable tasks: 1 executed, 1 up-to-date"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  7. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/SingletonChildMap.java

        }
    
        @Override
        public <RESULT> ChildMap<RESULT> invalidate(VfsRelativePath targetPath, CaseSensitivity caseSensitivity, InvalidationHandler<T, RESULT> handler) {
            return entry.withNode(targetPath, caseSensitivity, new AbstractInvalidateChildHandler<T, RESULT>(handler) {
                @SuppressWarnings("unchecked")
                @Override
                public SingletonChildMap<RESULT> getChildMap() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 13:19:32 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  8. plugin/pkg/admission/security/podsecurity/admission.go

    				retval.ErrStatus.Reason = result.Result.Reason
    			}
    			if result.Result.Details != nil {
    				retval.ErrStatus.Details = result.Result.Details
    			}
    			if result.Result.Code != 0 {
    				retval.ErrStatus.Code = result.Result.Code
    			}
    		}
    		return retval
    	}
    	return nil
    }
    
    type lazyConvertingAttributes struct {
    	admission.Attributes
    
    	convertObjectOnce    sync.Once
    	convertedObject      runtime.Object
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 08:49:11 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/DefaultUcrtLocatorTest.groovy

            when:
            def result = ucrtLocator.locateComponent(ucrtDir1)
    
            then:
            result.available
            result.component.name == "User-provided Universal C Runtime 10"
            result.component.baseDir == ucrtDir1
            result.component.version == VersionNumber.withPatchNumber().parse("10.0.10150.1")
    
            when:
            result = ucrtLocator.locateComponent(ucrtDir2)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  10. android/guava-testlib/src/com/google/common/collect/testing/google/MultimapGetTester.java

      public void testGetEmpty() {
        Collection<V> result = multimap().get(k3());
        assertEmpty(result);
        assertEquals(0, result.size());
      }
    
      @CollectionSize.Require(absent = ZERO)
      public void testGetNonEmpty() {
        Collection<V> result = multimap().get(k0());
        assertFalse(result.isEmpty());
        assertContentsAnyOrder(result, v0());
      }
    
      @CollectionSize.Require(SEVERAL)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Nov 16 17:41:24 UTC 2022
    - 5.6K bytes
    - Viewed (0)
Back to top