Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 123 for getModes (0.12 sec)

  1. tensorflow/compiler/mlir/lite/quantization/lite/quantize_weights_test.cc

      void LoadBasicModel() {
        input_model_ = ReadTestModel();
        model_ = input_model_->GetModel();
      }
    
      void LoadSharedWeightsModel() {
        input_model_ = ReadSharedWeightsTestModel();
        model_ = input_model_->GetModel();
      }
    
      void LoadGatherTestModel() {
        input_model_ = ReadGatherTestModel();
        model_ = input_model_->GetModel();
      }
    
      void LoadCustomOpTestModel() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  2. platforms/native/tooling-native/src/crossVersionTest/groovy/org/gradle/language/cpp/tooling/r410/CppModelCrossVersionSpec.groovy

            buildFile << """
                apply plugin: 'java-library'
            """
    
            when:
            def project = withConnection { connection -> connection.getModel(CppProject.class) }
    
            then:
            project.projectIdentifier.projectPath == ':'
            project.projectIdentifier.buildIdentifier.rootDir == projectDir
            project.mainComponent == null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/ResolveState.java

                componentState.setState(state, graphState);
            }
            return componentState;
        }
    
        public Collection<NodeState> getNodes() {
            return nodes.values();
        }
    
        public NodeState getNode(ComponentState component, VariantGraphResolveState variant, boolean selectedByVariantAwareResolution) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r65/ToolingApiShutdownCrossVersionSpec.groovy

            setup:
            def connector = toolingApi.connector()
            ProjectConnection connection = connector.connect()
            connection.getModel(GradleProject)
            connector.disconnect()
    
            when:
            connection.getModel(GradleProject)
    
            then:
            def e = thrown(RuntimeException)
            e.message ==~ /Cannot use .* as it has been stopped./
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  5. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/AbstractIncompleteFileSystemNodeTest.groovy

        }
    
        def "querying for non-existing child #vfsSpec.searchedPath finds nothings (#vfsSpec)"() {
            setupTest(vfsSpec)
    
            when:
            def resultRoot = initialRoot.getNode(searchedPath, CASE_SENSITIVE)
            then:
            !resultRoot.present
            interaction { noMoreInteractions() }
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/ModuleResolveState.java

        }
    
        Set<EdgeState> getIncomingEdges() {
            Set<EdgeState> incoming = new LinkedHashSet<>();
            if (selected != null) {
                for (NodeState nodeState : selected.getNodes()) {
                    incoming.addAll(nodeState.getIncomingEdges());
                }
            }
            return incoming;
        }
    
        VirtualPlatformState getPlatformState() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/ToolingApiIntegrationTest.groovy

            buildFile << "assert gradle.gradleVersion == '${GradleVersion.current().version}'"
    
            when:
            GradleProject model = toolingApi.withConnection { connection -> connection.getModel(GradleProject.class) }
    
            then:
            model != null
        }
    
        def "tooling api output reports 'CONFIGURE SUCCESSFUL' for model requests"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/project/ProjectSorter.java

                String projectId = projectVertex.getLabel();
    
                MavenProject project = projectMap.get(projectId);
    
                for (Dependency dependency : project.getModel().getDelegate().getDependencies()) {
                    addEdge(
                            projectMap,
                            vertexMap,
                            project,
                            projectVertex,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Sep 22 06:02:04 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/suggest/entity/SuggestItem.java

            }
            mergedItem.languages = langList.toArray(new String[langList.size()]);
    
            final List<String> roleList = new ArrayList<>(item1.getRoles().length + item2.getRoles().length);
            Collections.addAll(roleList, item1.getRoles());
            for (final String role : item2.getRoles()) {
                if (!roleList.contains(role)) {
                    roleList.add(role);
                }
            }
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  10. maven-core/src/test/java/org/apache/maven/project/DefaultMavenProjectBuilderTest.java

            assertNotNull(childProject.getParent());
            assertEquals(childProject.getParent().getVersion(), "1");
            assertNotNull(childProject.getModel().getParent());
            assertEquals(childProject.getModel().getParent().getVersion(), "[1,10]");
        }
    
        /**
         * Tests whether local version range parent references are build correctly.
         *
         * @throws Exception in case of issue
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 19 15:04:04 UTC 2023
    - 16.5K bytes
    - Viewed (0)
Back to top