Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 4,044 for myModel (0.1 sec)

  1. src/runtime/lfstack_test.go

    	. "runtime"
    	"testing"
    	"unsafe"
    )
    
    type MyNode struct {
    	LFNode
    	data int
    }
    
    // allocMyNode allocates nodes that are stored in an lfstack
    // outside the Go heap.
    // We require lfstack objects to live outside the heap so that
    // checkptr passes on the unsafe shenanigans used.
    func allocMyNode(data int) *MyNode {
    	n := (*MyNode)(PersistentAlloc(unsafe.Sizeof(MyNode{})))
    	LFNodeValidate(&n.LFNode)
    	n.data = data
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 17 23:12:04 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  2. src/cmd/internal/pkgpattern/pat_test.go

    	not ./vendor/foo/vendor/bar
    
    	pattern mycode/vendor/...
    	match mycode/vendor mycode/vendor/foo mycode/vendor/foo/vendor
    	not mycode/vendor/foo/vendor/bar
    
    	pattern x/vendor/y
    	match x/vendor/y
    	not x/vendor
    
    	pattern x/vendor/y/...
    	match x/vendor/y x/vendor/y/z x/vendor/y/vendor x/vendor/y/z/vendor
    	not x/vendor/y/vendor/z
    
    	pattern .../vendor/...
    	match x/vendor/y x/vendor/y/z x/vendor/y/vendor x/vendor/y/z/vendor
    `
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 16:43:40 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  3. maven-api-impl/src/test/java/org/apache/maven/internal/impl/model/MavenModelMergerTest.java

        @Test
        void testMergeModel_ModelVersion() {
            Model parent = Model.newBuilder().modelVersion("4.0.0").build();
            Model model = Model.newInstance();
            Model.Builder builder = Model.newBuilder(model);
            modelMerger.mergeModel_ModelVersion(builder, model, parent, false, null);
            assertNull(builder.build().getModelVersion());
    
            model = Model.newBuilder().modelVersion("5.0.0").build();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. maven-model-builder/src/main/java/org/apache/maven/model/building/ModelData.java

        private final Model model;
    
        private String groupId;
    
        private String artifactId;
    
        private String version;
    
        /**
         * Creates a new container for the specified model.
         *
         * @param model The model to wrap, may be {@code null}.
         */
        ModelData(Source source, Model model) {
            this.source = source;
            this.model = model;
        }
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  5. maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingResult.java

        /**
         * Gets the assembled model.
         *
         * @return The assembled model, never {@code null}.
         */
        Model getEffectiveModel();
    
        /**
         * Gets the raw model as it was read from the input model source. Apart from basic validation, the raw model has not
         * undergone any updates by the model builder, e.g. reflects neither inheritance nor interpolation.
         *
         * @return The raw model, never {@code null}.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelBuilderResult.java

         *
         * @return The assembled model, never {@code null}.
         */
        @Nonnull
        Model getEffectiveModel();
    
        /**
         * Gets the specified raw model as it was read from a model source. Apart from basic validation, a raw model has not
         * undergone any updates by the model builder, e.g. reflects neither inheritance nor interpolation. The model
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  7. subprojects/core/src/main/resources/org/gradle/initialization/converted-types.txt

    org.gradle.plugins.ide.idea.model.IdeaModule
    org.gradle.plugins.ide.idea.model.IdeaModuleIml
    org.gradle.plugins.ide.idea.model.IdeaProject
    org.gradle.plugins.ide.idea.model.IdeaWorkspace
    org.gradle.plugins.ide.idea.model.JarDirectory
    org.gradle.plugins.ide.idea.model.Jdk
    org.gradle.plugins.ide.idea.model.Module
    org.gradle.plugins.ide.idea.model.ModuleDependency
    org.gradle.plugins.ide.idea.model.ModuleLibrary
    org.gradle.plugins.ide.idea.model.Path
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 08 10:41:04 UTC 2021
    - 4.8K bytes
    - Viewed (0)
  8. maven-model/pom.xml

        <version>4.0.0-beta-4-SNAPSHOT</version>
      </parent>
    
      <artifactId>maven-model</artifactId>
    
      <name>Maven Model</name>
      <description>Model for Maven POM (Project Object Model)</description>
    
      <dependencies>
        <dependency>
          <groupId>org.apache.maven</groupId>
          <artifactId>maven-api-model</artifactId>
        </dependency>
        <dependency>
          <groupId>org.apache.maven</groupId>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/ModelProblemUtils.java

     */
    package org.apache.maven.internal.impl.model;
    
    import java.nio.file.Path;
    
    import org.apache.maven.api.model.Model;
    import org.apache.maven.api.services.ModelProblem;
    
    /**
     * Assists in the handling of model problems.
     *
     */
    public class ModelProblemUtils {
    
        /**
         * Creates a user-friendly source hint for the specified model.
         *
         * @param model The model to create a source hint for, may be {@code null}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  10. .teamcity/src/main/kotlin/configurations/StagePasses.kt

    import jetbrains.buildServer.configs.kotlin.triggers.vcs
    import model.CIBuildModel
    import model.Stage
    import model.StageName
    import model.Trigger
    import projects.StageProject
    
    class StagePasses(model: CIBuildModel, stage: Stage, prevStage: Stage?, stageProject: StageProject) : BaseGradleBuildType(init = {
        id(stageTriggerId(model, stage))
        uuid = stageTriggerUuid(model, stage)
        name = stage.stageName.stageName + " (Trigger)"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 05 00:08:14 UTC 2023
    - 3.8K bytes
    - Viewed (0)
Back to top