Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 153 for node_id (0.2 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilderResult.java

        public Optional<Model> getRawModel(String modelId) {
            return Optional.ofNullable(rawModels.get(modelId));
        }
    
        public DefaultModelBuilderResult setRawModel(String modelId, Model rawModel) {
            // Intentionally notNull because Super POM may not contain a modelId
            Objects.requireNonNull(modelId, "modelId cannot be null");
    
            rawModels.put(modelId, rawModel);
    
            return this;
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  2. api/maven-api-model/src/main/java/org/apache/maven/api/model/InputSource.java

        private final String modelId;
        private final String location;
        private final List<InputSource> inputs;
    
        public InputSource(String modelId, String location) {
            this.modelId = modelId;
            this.location = location;
            this.inputs = null;
        }
    
        public InputSource(Collection<InputSource> inputs) {
            this.modelId = null;
            this.location = null;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Sep 05 16:06:44 UTC 2023
    - 3K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/services/xml/XmlReaderRequest.java

            public XmlReaderRequestBuilder strict(boolean strict) {
                this.strict = strict;
                return this;
            }
    
            public XmlReaderRequestBuilder modelId(String modelId) {
                this.modelId = modelId;
                return this;
            }
    
            public XmlReaderRequestBuilder location(String location) {
                this.location = location;
                return this;
            }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Nov 17 15:52:15 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/modulecache/ModuleSourcesSerializer.java

        }
    
        private int assertValidId(int codecId) {
            assert codecId >= 0 : "Module source must have a strictly positive source id";
            return codecId;
        }
    
        @Override
        public ModuleSources read(Decoder decoder) throws IOException {
            MutableModuleSources sources = new MutableModuleSources();
            int codecId;
            while ((codecId = decoder.readSmallInt()) > 0) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuildingResult.java

        }
    
        @Override
        public Model getRawModel(String modelId) {
            return rawModels.get(modelId);
        }
    
        public DefaultModelBuildingResult setRawModel(String modelId, Model rawModel) {
            // Intentionally notNull because Super POM may not contain a modelId
            Objects.requireNonNull(modelId, "modelId cannot null");
    
            rawModels.put(modelId, rawModel);
    
            return this;
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  6. maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingException.java

            if (model != null) {
                DefaultModelBuildingResult tmp = new DefaultModelBuildingResult();
                if (modelId == null) {
                    modelId = "";
                }
                tmp.addModelId(modelId);
                tmp.setRawModel(modelId, model);
                tmp.setProblems(problems);
                result = tmp;
            } else {
                result = null;
            }
        }
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:40:37 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelProblem.java

                int columnNumber,
                String modelId,
                Exception exception) {
            this.message = message;
            this.severity = (severity != null) ? severity : Severity.ERROR;
            this.source = (source != null) ? source : "";
            this.lineNumber = lineNumber;
            this.columnNumber = columnNumber;
            this.modelId = (modelId != null) ? modelId : "";
            this.exception = exception;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Feb 01 16:25:04 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  8. tools/packaging/common/gcp_envoy_bootstrap.json

        {{ else if (index .metadata.Labels "td.networking.gke.io/gateway-name") }}
          "id": "projects/{{ .gcp_project_number }}/networks/scope:{{ (index .metadata.Labels "td.networking.gke.io/gateway-name") }}/nodes/{{ .nodeID}}",
        {{ else }}
          "id": "projects/{{ .gcp_project_number }}/networks/default/nodes/{{ .nodeID}}",
        {{ end }}
        "cluster": "{{ .cluster }}",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  9. test/fixedbugs/issue16008.go

    package foo
    
    const benchmarkNumNodes = 10000
    
    func BenchmarkUpdateNodeTransaction(b B) {
    	s, nodeIDs := setupNodes(benchmarkNumNodes)
    	b.ResetTimer()
    	for i := 0; i < b.N(); i++ {
    		_ = s.Update(func(tx1 Tx) error {
    			_ = UpdateNode(tx1, &Node{
    				ID: nodeIDs[i%benchmarkNumNodes],
    			})
    			return nil
    		})
    	}
    }
    
    type B interface {
    	ResetTimer()
    	N() int
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1K bytes
    - Viewed (0)
  10. maven-model-builder/src/test/java/org/apache/maven/model/building/ModelBuildingExceptionTest.java

            DefaultModelProblem pb2 =
                    new DefaultModelProblem("message2", ModelProblem.Severity.ERROR, null, "source", 0, 0, "modelId", null);
            String msg = ModelBuildingException.toMessage("modelId", Arrays.asList(pb1, pb2));
            assertEquals(
                    "2 problems were encountered while building the effective model for modelId" + System.lineSeparator()
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Sep 22 10:54:27 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top