Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 334 for Mystring (0.3 sec)

  1. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/KtFe10PackageSymbol.kt

            get() = withValidityAssertion { packageName }
    
        override val psi: PsiElement? by cached {
            val project = analysisContext.resolveSession.project
            JavaPsiFacade.getInstance(project).findPackage(fqName.asString())
        }
    
        override fun createPointer(): KaSymbolPointer<KaPackageSymbol> = withValidityAssertion {
            KaFe10PackageSymbolPointer(fqName)
        }
    
        override val origin: KaSymbolOrigin
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/VersionConstraint.java

         */
        boolean contains(@Nonnull Version version);
    
        /**
         * Returns a string representation of this version constraint
         * @return the string representation of this version constraint
         */
        @Nonnull
        String asString();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/it/admin/GeneralTests.java

    public class GeneralTests extends CrudTestBase {
    
        private static final String NAME_PREFIX = "generalTest_";
        private static final String API_PATH = "/api/admin/general";
        private static final String LIST_ENDPOINT_SUFFIX = "";
        private static final String ITEM_ENDPOINT_SUFFIX = "";
    
        private static final String KEY_PROPERTY = "name";
    
        @Override
        protected String getNamePrefix() {
            return NAME_PREFIX;
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewritedec.go

    		v1.AddArg2(v2, mem)
    		v.AddArg2(v0, v1)
    		return true
    	}
    	// match: (Load <t> ptr mem)
    	// cond: t.IsString()
    	// result: (StringMake (Load <typ.BytePtr> ptr mem) (Load <typ.Int> (OffPtr <typ.IntPtr> [config.PtrSize] ptr) mem))
    	for {
    		t := v.Type
    		ptr := v_0
    		mem := v_1
    		if !(t.IsString()) {
    			break
    		}
    		v.reset(OpStringMake)
    		v0 := b.NewValue0(v.Pos, OpLoad, typ.BytePtr)
    		v0.AddArg2(ptr, mem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:48:31 UTC 2023
    - 24.9K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/resources/ApiTextResourceAdapterTest.groovy

        def cleanup() {
            reader.close()
        }
    
        def "get display name"() {
            expect:
            resource.getDisplayName() == "Text resource display name"
        }
    
        def "to string"() {
            expect:
            resource.toString() == "Text resource display name"
        }
    
        def "get build dependencies"() {
            expect:
            resource.getBuildDependencies() == TaskDependencyInternal.EMPTY
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 02 16:14:10 UTC 2021
    - 3.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/report/IncompatibleTypeReferenceReporter.java

        private final static String INDENT = "  ";
    
        private final String creator;
        private final String path;
        private final String type;
        private final String description;
        private final boolean writable;
        private final Iterable<String> candidateTypes;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  7. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/compilerFacility/AbstractCompilerFacilityTest.kt

        }
    }
    
    private class CollectingIrGenerationExtension(private val annotationToCheckCalls: String?) : IrGenerationExtension {
        lateinit var result: String
            private set
    
        val functionsWithAnnotationToCheckCalls: MutableSet<String> = mutableSetOf()
    
        override fun generate(moduleFragment: IrModuleFragment, pluginContext: IrPluginContext) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/lift_tflite_flex_ops.cc

        op_name = v[0].AsString().str();
    
        if (!node_def.ParseFromString(v[1].AsString().str())) {
          return emitError(
              loc, "failed to parse 'custom_options' data into a valid NodeDef");
        }
    
        OpBuilder builder(loc.getContext());
        for (const auto& name_and_value : node_def.attr()) {
          const std::string& attr_name = name_and_value.first;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/XmlProvider.java

         * The returned instance is only valid until one of the other methods on this interface are called.
         *
         * @return A {@code StringBuilder} representation of the XML.
         */
        StringBuilder asString();
    
        /**
         * Returns the XML document as a Groovy {@link groovy.util.Node}. Changes to the returned instance will be applied
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 15 16:06:48 UTC 2017
    - 1.8K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/it/admin/FileAuthTests.java

        private static final String NAME_PREFIX = "fileAuthTest_";
        private static final String API_PATH = "/api/admin/fileauth";
        private static final String LIST_ENDPOINT_SUFFIX = "settings";
        private static final String ITEM_ENDPOINT_SUFFIX = "setting";
    
        private static final String KEY_PROPERTY = "username";
    
        @Override
        protected String getNamePrefix() {
            return NAME_PREFIX;
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.9K bytes
    - Viewed (0)
Back to top