Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 20 for getConfigurations (0.36 sec)

  1. maven-plugin-api/src/main/java/org/apache/maven/plugin/lifecycle/Execution.java

        } // -- void addGoal( String )
    
        /**
         * Get configuration to pass to the goals.
         *
         * @return Object
         */
        public Object getConfiguration() {
            return this.configuration;
        } // -- Object getConfiguration()
    
        /**
         * Method getGoals.
         *
         * @return List
         */
        public java.util.List<String> getGoals() {
            if (this.goals == null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 19:51:46 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. maven-plugin-api/src/main/java/org/apache/maven/plugin/lifecycle/Phase.java

        } // -- void addExecution( Execution )
    
        /**
         * Get configuration to pass to all goals run in this phase.
         *
         * @return Object
         */
        public Object getConfiguration() {
            return this.configuration;
        } // -- Object getConfiguration()
    
        /**
         * Method getExecutions.
         *
         * @return List
         */
        public java.util.List<Execution> getExecutions() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 19:51:46 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/DefaultResolvedDependency.java

            return moduleVersionId.getName();
        }
    
        @Override
        public String getModuleVersion() {
            return moduleVersionId.getVersion();
        }
    
        @Override
        public String getConfiguration() {
            return variantName;
        }
    
        @Override
        public ResolvedModuleVersion getModule() {
            return new DefaultResolvedModuleVersion(moduleVersionId);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  4. testing/architecture-test/src/changes/archunit-store/public-api-mutable-file-collection.txt

    Method <org.gradle.api.tasks.compile.CompileOptions.getSourcepath()> does not have raw return type assignable to org.gradle.api.file.ConfigurableFileCollection in (CompileOptions.java:0)
    Method <org.gradle.plugins.signing.SigningExtension.getConfiguration()> does not have raw return type assignable to org.gradle.api.file.ConfigurableFileCollection in (SigningExtension.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. testing/architecture-test/src/changes/archunit-store/provider-task-file-collection.txt

    Method <org.gradle.api.tasks.SourceTask.getSource()> does not have raw return type assignable to org.gradle.api.file.ConfigurableFileCollection in (SourceTask.java:0)
    Method <org.gradle.api.tasks.Upload.getConfiguration()> does not have raw return type assignable to org.gradle.api.file.ConfigurableFileCollection in (Upload.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java

            } catch (Exception e) {
                throw new PluginContainerException(mojoDescriptor, pluginRealm, "Unable to lookup Mojo", e);
            }
    
            XmlNode dom = mojoExecution.getConfiguration() != null
                    ? mojoExecution.getConfiguration().getDom()
                    : null;
    
            PlexusConfiguration pomConfiguration;
    
            if (dom == null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/moduleconverter/DefaultRootComponentMetadataBuilder.java

            LocalComponentGraphResolveState state = getComponentState(module, componentIdentifier);
            ConfigurationGraphResolveState configuration = state.getConfiguration(configurationName);
            if (configuration == null) {
                throw new IllegalArgumentException(String.format("Expected configuration '%s' to be present in %s", configurationName, componentIdentifier));
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  8. maven-embedder/src/main/java/org/apache/maven/cli/internal/BootstrapCoreExtensionManager.java

                    realm,
                    Collections.singleton(artifacts.get(0).getFile()),
                    extension.getGroupId() + ":" + extension.getArtifactId(),
                    extension.getConfiguration());
        }
    
        private List<Artifact> resolveExtension(
                CoreExtension extension,
                RepositorySystemSession repoSession,
                List<RemoteRepository> repositories,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jun 12 07:49:10 UTC 2024
    - 13K bytes
    - Viewed (0)
  9. pilot/pkg/model/telemetry_test.go

    					} else {
    						w := &httpwasm.Wasm{}
    
    						if err := f.GetTypedConfig().UnmarshalTo(w); err != nil {
    							t.Fatal(err)
    						}
    						cfg := &wrappers.StringValue{}
    						if err := w.GetConfig().GetConfiguration().UnmarshalTo(cfg); err != nil {
    							t.Fatal(err)
    						}
    						if _, dupe := res[f.GetName()]; dupe {
    							t.Fatalf("duplicate filter found: %v", f.GetName())
    						}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet.go

    	kl.oneTimeInitializer.Do(kl.initializeRuntimeDependentModules)
    	kl.runtimeState.setRuntimeSync(kl.clock.Now())
    }
    
    // GetConfiguration returns the KubeletConfiguration used to configure the kubelet.
    func (kl *Kubelet) GetConfiguration() kubeletconfiginternal.KubeletConfiguration {
    	return kl.kubeletConfiguration
    }
    
    // BirthCry sends an event that the kubelet has started up.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
Back to top