Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 128 for IsString (0.12 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirSymbolContainingDeclarationProvider.kt

                return it.fqNameForClassNameWithoutDollars.asString()
            }
    
            return if (containingSymbolOrSelf.symbolKind == KaSymbolKind.TOP_LEVEL) {
                (firSymbol.fir.getContainingFile()?.psi as? KtFile)
                    ?.takeUnless { it.isScript() }
                    ?.javaFileFacadeFqName?.asString()
            } else {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratorDecoratedTest.groovy

            }
        }
    
        private throwsCheckedException(String a) {
            throw new IOException("!")
        }
    
        def callsPrivateStringMethodWithGString(GString gString) {
            upperCaser(gString)
        }
    
        private upperCaser(String str) {
            str.toUpperCase()
        }
    }
    
    interface WithProperties {
        String getProp()
    }
    
    class ImplementsInterface implements WithProperties {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 22K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirPsiTypeProvider.kt

                        ClassId(
                            FqName(packageName),
                            FqName(relativeName.takeIf { !relativeName.isEmpty() } ?: SpecialNames.NO_NAME_PROVIDED.asString()),
                            PsiUtil.isLocalClass(psiClass)
                        ),
                        javaClass
                    )
    
                    if (containingClassSymbol != null) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 20:26:34 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/NestedInputIntegrationTest.groovy

            'String'   | ''                 | 'new String()'                                   | 'java.lang.String'      | "Type is in 'java.*' or 'javax.*' package that are reserved for standard Java API types."
            'GString'  | ''                 | 'GString.EMPTY'                                  | 'groovy.lang.GString$1' | "Groovy's GString type is not supported as a nested type."
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  5. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/tasks/GenerateXcodeProjectFileTask.java

        private static final String PRODUCTS_GROUP_NAME = "Products";
        private static final String UNBUILDABLE_BUILD_CONFIGURATION_NAME = "unbuildable";
        private final String projectPath = getProject().getPath();
        private final GidGenerator gidGenerator;
        private DefaultXcodeProject xcodeProject;
        private Map<String, PBXFileReference> pathToFileReference = new HashMap<String, PBXFileReference>();
    
        @Inject
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  6. src/crypto/internal/edwards25519/field/fe_test.go

    		t.Errorf("sqrtM1 is %v, expected %v", sqrtM1, exp)
    	}
    	// d is in the parent package, and we don't want to expose d or fromDecimal.
    	// dString := "37095705934669439343138083508754565189542113879843219016388785533085940283555"
    	// if exp := new(Element).fromDecimal(dString); d.Equal(exp) != 1 {
    	// 	t.Errorf("d is %v, expected %v", d, exp)
    	// }
    }
    
    func TestSetBytesRoundTripEdgeCases(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 17:26:17 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/MapPropertyIntegrationTest.groovy

                        }
                    }
                }
    
                class StringVerificationTask extends AbstractVerificationTask<String, String> {
                    StringVerificationTask() { super(String, String) }
                }
    
                class IntegerVerificationTask extends AbstractVerificationTask<String, String> {
                    IntegerVerificationTask() { super(Integer, Integer) }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 04 15:28:53 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  8. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/base/Kt1DescUtils.kt

                        if (!allowLocal) {
                            return null
                        }
    
                        localName += current.name.asString()
                    } else {
                        className += current.name.asString()
                    }
                }
                is PropertyAccessorDescriptor -> {} // Filter out property accessors
                is CallableDescriptor -> {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/HttpServer.groovy

        }
    
        @CompileStatic
        private void expectRedirected(String method, String path, String location, PasswordCredentials credentials, RedirectType redirectType) {
            expect(path, false, [method], redirectTo(location, redirectType), credentials)
        }
    
        @CompileStatic
        private void forbidRedirected(String method, String path, String location, RedirectType redirectType) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  10. testing/soak/src/integTest/groovy/org/gradle/resolve/DependencyResolutionStressTest.groovy

        }
    
        static class StressHttpServer extends ExternalResource {
            private static final String GET_METHOD = 'GET'
            private static final String HEAD_METHOD = 'HEAD'
            private static final String METADATA_FILE_PATH = '/org.gradle/changing/1.0/ivy-1.0.xml'
            private static final String JAR_FILE_PATH = '/org.gradle/changing/1.0/changing-1.0.jar'
            private final Server server = new Server(0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
Back to top