Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,067 for determin (0.18 sec)

  1. maven-model-builder/src/main/java/org/apache/maven/model/profile/activation/JdkVersionProfileActivator.java

            if (version == null || version.isEmpty()) {
                problems.add(new ModelProblemCollectorRequest(Severity.ERROR, Version.BASE)
                        .setMessage("Failed to determine Java version for profile " + profile.getId())
                        .setLocation(activation.getLocation("jdk")));
                return false;
            }
            try {
                return isJavaVersionCompatible(jdk, version);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 16:51:39 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. maven-model-builder/src/main/java/org/apache/maven/model/interpolation/reflection/MethodMap.java

                }
            }
    
            return false;
        }
    
        /**
         * Determines whether a type represented by a class object is
         * convertible to another type represented by a class object using a
         * method invocation conversion, without matching object and primitive
         * types. This method is used to determine the more specific type when
         * comparing signatures of methods.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 17 17:55:08 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/cli-runtime/pkg/resource/query_param_verifier_v3.go

    // which implements the Verifier interface. The caching characteristics of the
    // OpenAPI V3 specs are determined by the passed oapiClient. For memory caching, the
    // client should be wrapped beforehand as: cached.NewClient(oapiClient). The disk
    // caching is determined by the discovery client the oapiClient is created from.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 01:23:27 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/utils/topological_sort.h

    // Sort a block topologically, so that for all ops, all operands are
    // available at the time of execution.  This is similar to MLIR's topological
    // sort (lib/Transforms/TopologicalSort.cpp) but also takes a priority
    // function to determine the next op to emit in the case of ambiguity. This
    // makes it possible to group operations by certain attributes. For example,
    // the order_by_dialect pass uses this function to group by dialect.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Nov 08 17:01:11 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  5. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/SearchUtil.java

    public abstract class SearchUtil {
    
        /**
         * Does a binary search for an element determined by a {@link Comparable}.
         *
         * See {@link java.util.Collections#binarySearch(List, Object, Comparator)}.
         * @param sortedElements {@link java.util.RandomAccess} list, sorted compatible with the comparable.
         * @param key determines which element to search for.
         * @return the index of the search key, if it is contained in the list;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/tutorial/partr2_build_lifecycle.adoc

    Phase 1 - Initialization  :: During the initialization phase, Gradle determines which projects will take part in the build, and creates a `Project` instance for each project.
    
    Phase 2 - Configuration  :: During the configuration phase, the `Project` objects are configured using the build scripts of all projects in the build. Gradle determines the set of tasks to be executed.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 05:44:04 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/netbios/NbtAddress.java

            /* Determine the InetAddress of the local interface
             * if one was not specified.
             */
            localInetAddress = CLIENT.laddr;
            if( localInetAddress == null ) {
                try {
                    localInetAddress = InetAddress.getLocalHost();
                } catch( UnknownHostException uhe ) {
                    /* Java cannot determine the localhost. This is basically a config
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 30.1K bytes
    - Viewed (0)
  8. maven-model-builder/src/main/java/org/apache/maven/utils/Os.java

        private Os() {}
    
        /**
         * Determines if the OS on which Maven is executing matches the
         * given OS family.
         *
         * @param family the family to check for
         * @return true if the OS matches
         *
         */
        public static boolean isFamily(String family) {
            return isFamily(family, OS_NAME);
        }
    
        /**
         * Determines if the OS on which Maven is executing matches the
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/profile/Os.java

        private Os() {}
    
        /**
         * Determines if the OS on which Maven is executing matches the
         * given OS family.
         *
         * @param family the family to check for
         * @return true if the OS matches
         *
         */
        public static boolean isFamily(String family) {
            return isFamily(family, OS_NAME);
        }
    
        /**
         * Determines if the OS on which Maven is executing matches the
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  10. pkg/registry/flowcontrol/ensurer/strategy.go

    	//
    	// revised: the new object represents the new configuration to be stored in-cluster.
    	// ok: true if auto update is required, otherwise false
    	// err: err is set when the function runs into an error and can not
    	//      determine if auto update is needed.
    	ReviseIfNeeded(objectOps objectLocalOps[ObjectType], current, bootstrap ObjectType) (revised ObjectType, ok bool, err error)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 14K bytes
    - Viewed (0)
Back to top