Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 79 for toWords (0.41 sec)

  1. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/GUtil.java

            }
            return toWords(string, '_').toUpperCase(Locale.ROOT);
        }
    
        /**
         * Converts an arbitrary string to space-separated words. Eg, camelCase -> camel case, with_underscores -> with underscores
         */
        public static String toWords(CharSequence string) {
            return toWords(string, ' ');
        }
    
        public static String toWords(CharSequence string, char separator) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/main/java/org/gradle/util/GUtil.java

            if (string == null) {
                return null;
            }
            return toWords(string, '_').toUpperCase();
        }
    
        /**
         * Converts an arbitrary string to space-separated words. Eg, camelCase -> camel case, with_underscores -> with underscores
         */
        public static String toWords(CharSequence string) {
            return toWords(string, ' ');
        }
    
        @SuppressWarnings("StringCaseLocaleUsage")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/adapter/ProtocolToModelAdapter.java

            T match = findEnumValue(enumType, literal);
            if (match != null) {
                return match;
            }
    
            final String alternativeLiteral = toWords(literal, '_');
            match = findEnumValue(enumType, alternativeLiteral);
            if (match != null) {
                return match;
            }
    
            String sep = "";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 04:42:54 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/nodevolumelimits/non_csi_test.go

    			maxVols:      2,
    			test:         "pod with missing PVC is counted towards the PV limit",
    		},
    		{
    			newPod:       onePVCPod(azureDiskVolumeFilterType),
    			existingPods: []*v1.Pod{oneAzureDiskPod, deletedPVCPod},
    			filterName:   azureDiskVolumeFilterType,
    			maxVols:      3,
    			test:         "pod with missing PVC is counted towards the PV limit",
    		},
    		{
    			newPod:       onePVCPod(azureDiskVolumeFilterType),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Dec 30 23:00:56 UTC 2023
    - 36.8K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppLibraryPublishingIntegrationTest.groovy

            mainMetadata.variant("debugLink").availableAt.coords == "some.group:test_debug:1.2"
            mainMetadata.variant("debugRuntime").availableAt.coords == "some.group:test_debug:1.2"
            mainMetadata.variant("releaseLink").availableAt.coords == "some.group:test_release:1.2"
            mainMetadata.variant("releaseRuntime").availableAt.coords == "some.group:test_release:1.2"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 12:57:50 UTC 2024
    - 39.8K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppLibraryWithBothLinkagePublishingIntegrationTest.groovy

            mainMetadata.variant("debugSharedLink").availableAt.coords == "some.group:test_debug_shared:1.2"
            mainMetadata.variant("debugSharedRuntime").availableAt.coords == "some.group:test_debug_shared:1.2"
            mainMetadata.variant("debugStaticLink").availableAt.coords == "some.group:test_debug_static:1.2"
            mainMetadata.variant("debugStaticRuntime").availableAt.coords == "some.group:test_debug_static:1.2"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/GradleModuleMetadata.groovy

            }
            return new CreatedBy(createdBy.gradle.version, createdBy.gradle.buildId)
        }
    
        @Nullable
        Coords getComponent() {
            def comp = values.component
            if (comp == null || comp.url) {
                return null
            }
            return new Coords(comp.group, comp.module, comp.version)
        }
    
        @Nullable
        ModuleReference getOwner() {
            def comp = values.component
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 20K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppApplicationPublishingIntegrationTest.groovy

            def mainMetadata = main.parsedModuleMetadata
            mainMetadata.variants.size() == 2
            mainMetadata.variant("debugRuntime").availableAt.coords == "some.group:test_debug:1.2"
            mainMetadata.variant("releaseRuntime").availableAt.coords == "some.group:test_release:1.2"
    
            def debug = mavenRepo.module('some.group', 'test_debug', '1.2')
            debug.assertPublished()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/nodevolumelimits/csi_test.go

    			existingPods: []*v1.Pod{pendingVolumePod, csiEBSTwoVolPod},
    			filterName:   "csi",
    			maxVols:      2,
    			driverNames:  []string{ebsCSIDriverName},
    			test:         "count pending PVCs towards volume limit <= pods CSI volume",
    			limitSource:  "node",
    			wantStatus:   framework.NewStatus(framework.Unschedulable, ErrReasonMaxVolumeCountExceeded),
    		},
    		// two same pending PVCs should be counted as 1
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 18:07:11 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  10. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/AbstractMavenPublishJavaIntegTest.groovy

            apiVariant.dependencies.find { it.coords == 'org.springframework:spring-core:2.5.6' }.excludes == ['commons-logging:commons-logging']
            apiVariant.dependencies.find { it.coords == 'commons-beanutils:commons-beanutils:1.8.3' }.excludes == ['commons-logging:*']
            apiVariant.dependencies.find { it.coords == 'commons-dbcp:commons-dbcp:1.4' }.excludes == ['*:*']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 45.6K bytes
    - Viewed (0)
Back to top