Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 166 for langues (0.35 sec)

  1. src/main/java/org/codelibs/fess/helper/SearchHelper.java

                                langSet.add(normalizeLang);
                            }
                        }
                    }
                }
                if (langSet.size() > 1 && langSet.contains(Constants.ALL_LANGUAGES)) {
                    return new String[] { Constants.ALL_LANGUAGES };
                }
                langSet.remove(Constants.ALL_LANGUAGES);
                return langSet.toArray(new String[langSet.size()]);
            }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/log/cbean/cq/bs/BsSearchLogCQ.java

        }
    
        public void setLanguages_Equal(String languages) {
            setLanguages_Term(languages, null);
        }
    
        public void setLanguages_Equal(String languages, ConditionOptionCall<TermQueryBuilder> opLambda) {
            setLanguages_Term(languages, opLambda);
        }
    
        public void setLanguages_Term(String languages) {
            setLanguages_Term(languages, null);
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 145.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/overview/userguide.adoc

    You can view scans to identify problems or share them for debugging help.
    
    === Supported Languages and Frameworks
    Gradle supports Android, Java, Kotlin Multiplatform, Groovy, Scala, Javascript, and C/C++.
    
    image::userguide-languages.png[]
    
    === Compatible IDEs
    All major IDEs support Gradle, including Android Studio, IntelliJ IDEA, Visual Studio Code, Eclipse, and NetBeans.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/main/java/org/gradle/language/objectivec/plugins/ObjectiveCLangPlugin.java

                builder.internalView(DependentSourceSetInternal.class);
            }
    
            @Mutate
            void registerLanguageTransform(LanguageTransformContainer languages, ServiceRegistry serviceRegistry) {
                languages.add(new ObjectiveC());
            }
        }
    
        private static class ObjectiveC extends NativeLanguageTransform<ObjectiveCSourceSet> implements PchEnabledLanguageTransform<ObjectiveCSourceSet> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  5. docs/tr/docs/deployment/cloud.md

    Ayrıca, size **iyi servisler** sağlamakla kalmayıp, **iyi ve sağlıklı bir framework** olan FastAPI'a bağlılıklarını gösterir.
    
    Bu hizmetleri denemek ve kılavuzlarını incelemek isteyebilirsiniz:
    
    * <a href="https://docs.platform.sh/languages/python.html?utm_source=fastapi-signup&utm_medium=banner&utm_campaign=FastAPI-signup-June-2023" class="external-link" target="_blank">Platform.sh</a>
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue May 28 14:05:55 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/dwarfgen/dwinl.go

    	}
    }
    
    // unifyCallRanges ensures that the ranges for a given inline
    // transitively include all of the ranges for its child inlines.
    func unifyCallRanges(inlcalls dwarf.InlCalls, idx int) {
    	ic := &inlcalls.Calls[idx]
    	for _, childIdx := range ic.Children {
    		// First make sure child ranges are unified.
    		unifyCallRanges(inlcalls, childIdx)
    
    		// Then merge child ranges into ranges for this inline.
    		cic := inlcalls.Calls[childIdx]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:45:07 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/internal/scripts/ScriptingLanguages.java

    import org.gradle.scripts.ScriptingLanguage;
    
    import javax.annotation.Nullable;
    
    import java.util.Arrays;
    import java.util.Collections;
    import java.util.List;
    
    /**
     * Registry of scripting languages.
     */
    public final class ScriptingLanguages {
    
        private static final List<ScriptingLanguage> ALL =
            Collections.unmodifiableList(
                Arrays.asList(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 19 07:49:16 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/package-info.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * Model classes for native languages.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 708 bytes
    - Viewed (0)
  9. platforms/jvm/language-jvm/src/main/java/org/gradle/language/jvm/tasks/package-info.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * Tasks for support for JVM languages.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 704 bytes
    - Viewed (0)
  10. scripts/docs.py

        """
        update_config()
    
    
    @app.command()
    def serve() -> None:
        """
        A quick server to preview a built site with translations.
    
        For development, prefer the command live (or just mkdocs serve).
    
        This is here only to preview a site with translations already built.
    
        Make sure you run the build-all command first.
        """
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jan 22 19:26:14 UTC 2024
    - 10.9K bytes
    - Viewed (0)
Back to top