Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 142 for getNodes (0.14 sec)

  1. docs/fr/docs/features.md

    * Documentation automatique des modèles de données avec <a href="http://json-schema.org/" class="external-link" target="_blank"><strong>JSON...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultSession.java

        public Map<String, String> getEffectiveProperties(@Nullable Project project) {
            HashMap<String, String> result = new HashMap<>(getSystemProperties());
            if (project != null) {
                result.putAll(project.getModel().getProperties());
            }
            result.putAll(getUserProperties());
            return result;
        }
    
        @Nonnull
        @Override
        public Version getMavenVersion() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 16 08:45:24 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/importer_test_min_max.cc

      auto model_ptr = tflite::FlatBufferModel::VerifyAndBuildFromBuffer(
          buffer.data(), buffer.size());
      if (nullptr == model_ptr) {
        return std::nullopt;
      }
      std::unique_ptr<tflite::ModelT> model(model_ptr->GetModel()->UnPack());
    
      // FB-LABEL:     name: "arg0",
      // FB-NEXT:      quantization: {
      // FB-NEXT:              min: [ -1.0 ],
      // FB-NEXT:              max: [ 1.0 ]
      // FB-NEXT:      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultProjectBuilder.java

                        return Optional.ofNullable(res.getDependencyResolutionResult())
                                .map(r -> new DefaultDependencyResolverResult(
                                        null, r.getCollectionErrors(), session.getNode(r.getDependencyGraph()), 0));
                    }
                };
            } catch (ProjectBuildingException e) {
                throw new ProjectBuilderException("Unable to build project", e);
            }
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 8K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/DefaultModelRegistry.java

            ModelBinding subjectBinding = boundMutator.getSubjectBinding();
            final ModelNodeInternal node = subjectBinding.getNode();
            final ModelAction mutator = boundMutator.getAction();
            ModelRuleDescriptor descriptor = mutator.getDescriptor();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 45.7K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/ModelNodeInternal.java

            assert binder.isBound() : "RuleBinder must be in a bound state";
            for (ModelBinding inputBinding : binder.getInputBindings()) {
                ModelNodeInternal node = inputBinding.getNode();
                if (dependencies == null) {
                    dependencies = new HashSet<>();
                }
                dependencies.add(node);
                if (node.dependents == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 12:51:08 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/m5/ToolingApiIdeaModelCrossVersionSpec.groovy

        }
    }
    """
            settingsFile.text = "include 'api', 'impl'"
    
            when:
            BasicIdeaProject project = withConnection { connection -> connection.getModel(BasicIdeaProject.class) }
            def impl = project.children.find { it.name == 'impl' }
    
            then:
            def libs = impl.dependencies
            if (targetVersion >= GradleVersion.version("3.4")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  8. pkg/kubelet/volumemanager/cache/desired_state_of_world.go

    	// current desired state of the world.
    	GetVolumesToMount() []VolumeToMount
    
    	// GetPods generates and returns a map of pods in which map is indexed
    	// with pod's unique name. This map can be used to determine which pod is currently
    	// in desired state of world.
    	GetPods() map[types.UniquePodName]bool
    
    	// VolumeExistsWithSpecName returns true if the given volume specified with the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/moduleconverter/DefaultRootComponentMetadataBuilder.java

                    AttributesSchemaInternal schema = (AttributesSchemaInternal) project.getDependencies().getAttributesSchema();
                    return createRootComponentMetadata(module, componentIdentifier, schema, project.getModel());
                });
            } else {
                return createRootComponentMetadata(module, componentIdentifier, EmptySchema.INSTANCE, RootScriptDomainObjectContext.INSTANCE);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  10. pkg/controller/testutil/test_utils.go

    	for i := 0; i < len(nodes); i++ {
    		if node.Name == nodes[i].Name {
    			return true
    		}
    	}
    	return false
    }
    
    // GetZones returns list of zones for all Nodes stored in FakeNodeHandler
    func GetZones(nodeHandler *FakeNodeHandler) []string {
    	nodes, _ := nodeHandler.List(context.TODO(), metav1.ListOptions{})
    	zones := sets.NewString()
    	for _, node := range nodes.Items {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 15.6K bytes
    - Viewed (0)
Back to top