Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 75 for get2s (0.04 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectBuilderResult.java

         */
        @Nonnull
        String getProjectId();
    
        /**
         * Gets the POM file from which the project was built.
         *
         * @return the optional POM file
         */
        @Nonnull
        Optional<Path> getPomFile();
    
        /**
         * Gets the project that was built.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/experimental/tac/execution_metadata_exporter_test.cc

      for (int i = 0; i < result->subgraph_metadata()->size(); ++i) {
        auto result_subgraph_metadata =
            result->subgraph_metadata()->GetAs<SubgraphMetadata>(i);
        auto expected_subgraph_metadata =
            expected->subgraph_metadata()->GetAs<SubgraphMetadata>(i);
        if (expected_subgraph_metadata->op_metadata() == nullptr &&
            result_subgraph_metadata->op_metadata() == nullptr) {
          return;
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 06:11:34 UTC 2024
    - 6K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/ambient/waypoints.go

    		// o was reliant on the namespace waypoint and then get's a use-waypoint label added before that gateway is ready.
    		// goes from having a waypoint to having no waypoint and then eventually gets a waypoint back
    		return krt.FetchOne[Waypoint](ctx, Waypoints, krt.FilterKey(wp.ResourceName()))
    	}
    
    	// try fetching the namespace-defined waypoint
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:28 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolverResult.java

     */
    @Experimental
    public interface DependencyResolverResult {
    
        /**
         * Gets the exceptions that occurred while building the dependency graph.
         *
         * @return the exceptions that occurred, never {@code null}
         */
        @Nonnull
        List<Exception> getExceptions();
    
        /**
         * Gets the root node of the dependency graph.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheLifecyclePluginIntegrationTest.groovy

                    layout.projectDirectory.dir(
                        service.map {
                            // intentionally capture the `project` object to force a cc failure
                            // in case this gets serialized
                            it.buildDirFor(project)
                        }
                    )
                )
            """
    
            when:
            buildDir.mkdir()
            configurationCacheRun 'clean'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtTypeProvider.kt

        public fun KaType.hasCommonSubTypeWith(that: KaType): Boolean =
            withValidityAssertion { analysisSession.typeProvider.haveCommonSubtype(this, that) }
    
        /**
         * Gets all the implicit receiver types available at the given position. The type of the outermost receiver appears at the beginning
         * of the returned list.
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/Node.java

         */
        @Nullable
        Artifact getArtifact();
    
        /**
         * @return dependency for this node
         */
        @Nullable
        Dependency getDependency();
    
        /**
         * Gets the child nodes of this node.
         *
         * @return the child nodes of this node, never {@code null}
         */
        @Nonnull
        List<Node> getChildren();
    
        /**
         * @return repositories of this node
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/UncheckedException.java

        }
    
        /**
         * Note: always throws the failure in some form. The return value is to keep the compiler happy.
         */
        // TODO Use this in org.gradle.internal.Try.Failure once this gets moved out from :base-services
        public static RuntimeException throwAsUncheckedException(Throwable t, boolean preserveMessage) {
            if (t instanceof InterruptedException) {
                Thread.currentThread().interrupt();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/InstrumentingClassLoader.java

     * limitations under the License.
     */
    
    package org.gradle.internal.classloader;
    
    import javax.annotation.Nullable;
    import java.security.ProtectionDomain;
    
    /**
     * A ClassLoader implementing this interface gets a special treatment from the instrumenting Java agent.
     * When such a classloader attempts to define a class, the agent calls {@link #instrumentClass(String, ProtectionDomain, byte[])} method
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

        @Nonnull
        Instant getStartTime();
    
        /**
         * Gets the directory of the topmost project being built, usually the current directory or the
         * directory pointed at by the {@code -f/--file} command line argument.
         */
        @Nonnull
        Path getTopDirectory();
    
        /**
         * Gets the root directory of the session, which is the root directory for the top directory project.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 30.2K bytes
    - Viewed (0)
Back to top