Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,846 for construction (0.41 sec)

  1. maven-core/src/main/java/org/apache/maven/settings/SettingsUtils.java

    import org.apache.maven.internal.impl.SettingsUtilsV4;
    
    /**
     * Several convenience methods to handle settings
     *
     */
    public final class SettingsUtils {
    
        private SettingsUtils() {
            // don't allow construction.
        }
    
        /**
         * @param dominant
         * @param recessive
         * @param recessiveSourceLevel
         */
        public static void merge(Settings dominant, Settings recessive, String recessiveSourceLevel) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingListener.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.model.building;
    
    /**
     * Defines events that the model builder fires during construction of the effective model. When a listener encounters
     * errors while processing the event, it can report these problems via {@link ModelBuildingEvent#getProblems()}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/artifacts/publish/DefaultPublishArtifactTest.groovy

            then:
            publishArtifact.buildDependencies.getDependencies(null) == [task1, task2] as Set
            assertCommonPropertiesAreSet(publishArtifact, true)
        }
    
        def "can specify the builder tasks on construction"() {
            given:
            def task = Mock(Task)
    
            when:
            def publishArtifact = new DefaultPublishArtifact("name", "extension", "type", null, null, null, task)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 24 15:34:51 UTC 2016
    - 1.9K bytes
    - Viewed (0)
  4. okcurl/src/main/kotlin/okhttp3/curl/logging/OneLineLogFormat.kt

    import java.util.logging.Formatter
    import java.util.logging.LogRecord
    
    /**
     * Is Java8 Data and Time really this bad, or is writing this on a plane from just javadocs a bad
     * idea?
     *
     * Why so much construction?
     */
    class OneLineLogFormat : Formatter() {
      private val d =
        DateTimeFormatterBuilder()
          .appendValue(HOUR_OF_DAY, 2)
          .appendLiteral(':')
          .appendValue(MINUTE_OF_HOUR, 2)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Fri Apr 05 03:30:42 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/saved_model/public/signature_def_function.h

    // all function inputs in `inputs`, and must not add any additional inputs on
    // the returned op. (i.e. don't call TFE_OpAddInput or TFE_OpAddInputList).
    // The caller is responsible for deleting the returned TFE_Op. If op
    // construction fails, `status` will be non-OK and the returned pointer will be
    // null.
    TF_CAPI_EXPORT extern TFE_Op* TF_SignatureDefFunctionMakeCallOp(
        TF_SignatureDefFunction* func, TFE_TensorHandle** inputs, int num_inputs,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 17 23:03:48 UTC 2020
    - 2.1K bytes
    - Viewed (0)
  6. src/runtime/rt0_openbsd_arm64.s

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    #include "textflag.h"
    #include "cgo/abi_arm64.h"
    
    // See comment in runtime/sys_openbsd_arm64.s re this construction.
    #define	INVOKE_SYSCALL	\
    	SVC;		\
    	NOOP;		\
    	NOOP
    
    TEXT _rt0_arm64_openbsd(SB),NOSPLIT|NOFRAME,$0
    	MOVD	0(RSP), R0	// argc
    	ADD	$8, RSP, R1	// argv
    	BL	main(SB)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 30 01:28:43 UTC 2022
    - 2K bytes
    - Viewed (0)
  7. maven-core/src/test/resources-project-builder/dependency-order/w-plugin-mgmt/pom.xml

      <artifactId>test</artifactId>
      <version>1.0-SNAPSHOT</version>
    
      <name>Maven Integration Test :: MNG-4003</name>
      <description>
        Verify that dependencies survive the project construction in the POM order.
      </description>
    
      <dependencies>
        <dependency>
          <groupId>org.apache.maven.its.mng4003</groupId>
          <artifactId>a</artifactId>
          <version>1</version>
        </dependency>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 2.2K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/locking/NoOpDependencyLockingProvider.java

        public static DependencyLockingProvider getInstance() {
            return INSTANCE;
        }
    
        private NoOpDependencyLockingProvider() {
            // Prevent construction
        }
    
        @Override
        public DependencyLockingState loadLockState(String lockId, DisplayName lockOwner) {
            return DefaultDependencyLockingState.EMPTY_LOCK_CONSTRAINT;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  9. maven-core/src/test/resources-project-builder/dependency-order/wo-plugin-mgmt/pom.xml

      <artifactId>test</artifactId>
      <version>1.0-SNAPSHOT</version>
    
      <name>Maven Integration Test :: MNG-4003</name>
      <description>
        Verify that dependencies survive the project construction in the POM order.
      </description>
    
      <dependencies>
        <dependency>
          <groupId>org.apache.maven.its.mng4003</groupId>
          <artifactId>a</artifactId>
          <version>1</version>
        </dependency>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 2.2K bytes
    - Viewed (0)
  10. maven-model-builder/src/main/java/org/apache/maven/model/building/ModelSource2.java

     * <p>
     * Unlike {@link ModelSource}, this interface supports loading of parent POM(s) from the same backing store and allows
     * construction of MavenProject instances without the need to have parent POM(s) available from local or remote
     * repositories.
     * <p>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 22 13:26:01 UTC 2022
    - 2.3K bytes
    - Viewed (0)
Back to top