Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,634 for itos (0.15 sec)

  1. .gitignore

    *.whl
    
    # Android
    .gradle
    .idea
    *.iml
    local.properties
    gradleBuild
    
    # iOS
    *.pbxproj
    *.xcworkspace
    /*.podspec
    /tensorflow/lite/**/coreml/**/BUILD
    /tensorflow/lite/**/ios/BUILD
    /tensorflow/lite/**/objc/BUILD
    /tensorflow/lite/**/swift/BUILD
    /tensorflow/lite/examples/ios/simple/data/*.tflite
    /tensorflow/lite/examples/ios/simple/data/*.txt
    Podfile.lock
    Pods
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Wed Jan 31 22:28:59 GMT 2024
    - 934 bytes
    - Viewed (0)
  2. guava-testlib/src/com/google/common/collect/testing/features/FeatureUtil.java

       * Get the full set of requirements for a tester class.
       *
       * @param testerMethod a test method of a tester class
       * @return all the constraints implicitly or explicitly required by the method, its declaring
       *     class, or any of its superclasses.
       * @throws ConflictingRequirementsException if the requirements are mutually inconsistent.
       */
      public static TesterRequirements getTesterRequirements(Method testerMethod)
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Sep 21 15:08:35 GMT 2022
    - 12.1K bytes
    - Viewed (0)
  3. maven-core/src/test/resources-project-builder/complete-model/wo-parent/pom.xml

      <dependencyManagement>
        <dependencies>
          <dependency>
            <groupId>org.apache.maven.its</groupId>
            <artifactId>managed-dep</artifactId>
            <version>0.1</version>
            <type>war</type>
            <scope>runtime</scope>
            <exclusions>
              <exclusion>
                <groupId>org.apache.maven.its</groupId>
                <artifactId>excluded-managed-dep</artifactId>
              </exclusion>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 8.6K bytes
    - Viewed (0)
  4. maven-core/src/test/resources-project-builder/build-extension-inheritance/sub/pom.xml

        <extensions>
          <extension>
            <groupId>org.apache.maven.its.mng3899</groupId>
            <artifactId>b</artifactId>
            <version>0.1</version>
          </extension>
          <extension>
            <!-- project extensions should override inherited extension with equal gid:aid -->
            <groupId>org.apache.maven.its.mng3899</groupId>
            <artifactId>a</artifactId>
            <version>0.2</version>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2.3K bytes
    - Viewed (0)
  5. docs/en/docs/advanced/sub-applications.md

    ### Top-level application
    
    First, create the main, top-level, **FastAPI** application, and its *path operations*:
    
    ```Python hl_lines="3  6-8"
    {!../../../docs_src/sub_applications/tutorial001.py!}
    ```
    
    ### Sub-application
    
    Then, create your sub-application, and its *path operations*.
    
    This sub-application is just another standard FastAPI application, but this is the one that will be "mounted":
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 2.9K bytes
    - Viewed (0)
  6. maven-core/src/test/java/org/apache/maven/plugin/PluginManagerTest.java

        }
    
        @Test
        void testPluginLoading() throws Exception {
            MavenSession session = createMavenSession(null);
            Plugin plugin = new Plugin();
            plugin.setGroupId("org.apache.maven.its.plugins");
            plugin.setArtifactId("maven-it-plugin");
            plugin.setVersion("0.1");
            PluginDescriptor pluginDescriptor = pluginManager.loadPlugin(
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Apr 15 17:24:20 GMT 2023
    - 13.1K bytes
    - Viewed (0)
  7. maven-compat/src/test/remote-repo/org/apache/maven/its/a/0.1/a-0.1.jar

    Archiver-Version: Plexus Archiver Created-By: Apache Maven Built-By: BEBE Build-Jdk: 1.6.0_07 META-INF/maven/org.apache.maven.its/a/pom.xml 4.0.0 org.apache.maven.its a 0.1 jar Maven Integration Test :: Dummy Artifact maven-core-it file:///${basedir}/repo META-INF/maven/org.apache.maven.its/a/pom.properties #Generated by Maven #Sat Oct 24 00:27:56 CEST 2009 version=0.1 groupId=org.apache.maven.its artifactId=a...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Oct 26 20:16:00 GMT 2009
    - 1.9K bytes
    - Viewed (0)
  8. maven-core/src/test/resources-project-builder/unique-dependency-key/dep-mgmt-in-profile/pom.xml

    <project>
      <modelVersion>4.0.0</modelVersion>
    
      <groupId>org.apache.maven.its.mng4005</groupId>
      <artifactId>b</artifactId>
      <version>0.1</version>
      <packaging>jar</packaging>
    
      <profiles>
        <profile>
          <id>test</id>
          <dependencyManagement>
            <dependencies>
              <dependency>
                <groupId>org.apache.maven.its.mng4005</groupId>
                <artifactId>a</artifactId>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 1.5K bytes
    - Viewed (0)
  9. maven-core/src/test/resources-project-builder/build-extension-inheritance/pom.xml

      <groupId>org.apache.maven.its.mng3899</groupId>
      <artifactId>parent</artifactId>
      <version>0.1</version>
      <packaging>pom</packaging>
    
      <name>Maven Integration Test :: MNG-3899</name>
      <description>
        Test that build extensions are properly merged during inheritance.
      </description>
    
      <build>
        <extensions>
          <extension>
            <groupId>org.apache.maven.its.mng3899</groupId>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 1.5K bytes
    - Viewed (0)
  10. Jenkinsfile.s390x

                            def WORK_DIR=pwd()
                            def ITS_BRANCH = env.CHANGE_BRANCH != null ? env.CHANGE_BRANCH :  env.BRANCH_NAME;
                            try {
                              echo "Checkout ITs from branch: ${ITS_BRANCH}"
                              checkout([$class: 'GitSCM',
                                      branches: [[name: ITS_BRANCH]],
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 03 21:28:30 GMT 2024
    - 7.7K bytes
    - Viewed (0)
Back to top