Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,240 for Supplied (0.17 sec)

  1. maven-compat/src/main/java/org/apache/maven/repository/metadata/GraphConflictResolver.java

    import org.apache.maven.artifact.ArtifactScopeEnum;
    
    /**
     * Resolves conflicts in the supplied dependency graph.
     * Different implementations will implement different conflict resolution policies.
     *
     */
    @Deprecated
    public interface GraphConflictResolver {
        String ROLE = GraphConflictResolver.class.getName();
    
        /**
         * Cleanses the supplied graph by leaving only one directed versioned edge\
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/PreprocessingTool.java

        /**
         * Defines a named preprocessor macros to use when compiling this binary.
         * The macro will be supplied to the compiler as '-D name'.
         */
        void define(String name);
    
        /**
         * Defines a named preprocessor macro with a value, which will be used when compiling this binary.
         * The macro will be supplied to the compiler as '-D name=definition'.
         */
        void define(String name, String definition);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/layout/AbstractRepositoryLayout.java

         *
         * @param baseUri The base URI for the repository.
         * @param builder The configuration builder to apply the changes to.
         */
        public abstract void apply(@Nullable URI baseUri, IvyRepositoryDescriptor.Builder builder);
    
        /**
         * Add any schemes registered as patterns in this layout, given the supplied base URI.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/vcs/VcsMappings.java

        /**
         * Adds a mapping rule that may define VCS information for any dependency. The supplied action is executed for all components.
         *
         * @since 4.6
         */
        VcsMappings all(Action<? super VcsMapping> rule);
    
        /**
         * Adds a mapping rule that may define VCS information for the given module. The supplied action is executed when the given module is required.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 19 20:09:56 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/eclipse/EclipseBuildCommand.java

         *
         * @return The name of the build command. Does not return null.
         */
        String getName();
    
        /**
         * The arguments supplied for the build command.
         * <p>
         * Corresponds to the {@code org.eclipse.core.resources.ICommand#getBuilderName()} method in the Eclipse platform API.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. istioctl/pkg/writer/compare/sds/writer.go

    package sdscompare
    
    import (
    	"encoding/json"
    	"fmt"
    	"io"
    	"strings"
    	"text/tabwriter"
    )
    
    // SDSWriter takes lists of SecretItem or SecretItemDiff and prints them through supplied output writer
    type SDSWriter interface {
    	PrintSecretItems([]SecretItem) error
    	PrintDiffs([]SecretItemDiff) error
    }
    
    type Format int
    
    const (
    	JSON Format = iota
    	TABULAR
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 21 14:17:23 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api-builders/src/test/groovy/org/gradle/tooling/internal/provider/runner/IntermediateBuildActionRunnerTest.groovy

            then:
            1 * buildModelParameters.isParallelToolingApiActions() >> true
            0 * _
        }
    
        def "runs supplied actions"() {
            given:
            def action1 = Mock(Supplier)
            def action2 = Mock(Supplier)
            def action3 = Mock(Supplier)
    
            when:
            def result = runner.run([action1, action2, action3])
    
            then:
            result == ["one", "two", "three"]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 20 17:58:18 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  8. internal/ioutil/wait_pipe.go

    }
    
    // CloseWithError close with supplied error the writer end.
    func (w *PipeWriter) CloseWithError(err error) error {
    	err = w.PipeWriter.CloseWithError(err)
    	w.once.Do(func() {
    		w.done()
    	})
    	return err
    }
    
    // PipeReader is similar to io.PipeReader with wait group
    type PipeReader struct {
    	*io.PipeReader
    	wait func()
    }
    
    // CloseWithError close with supplied error the reader end
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 27 14:55:36 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. platforms/core-execution/workers/src/main/java/org/gradle/workers/WorkerExecutor.java

         *
         * @since 5.6
         */
        WorkQueue noIsolation(Action<? super WorkerSpec> action);
    
        /**
         * Creates a {@link WorkQueue} to submit work for asynchronous execution with an isolated classloader and the requirements specified in the supplied {@link ClassLoaderWorkerSpec}.
         *
         * @since 5.6
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 4K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/componentconfigs/checksums.go

    package componentconfigs
    
    import (
    	"crypto/sha256"
    	"fmt"
    	"sort"
    
    	v1 "k8s.io/api/core/v1"
    
    	"k8s.io/kubernetes/cmd/kubeadm/app/constants"
    )
    
    // ChecksumForConfigMap calculates a checksum for the supplied config map. The exact algorithm depends on hash and prefix parameters
    func ChecksumForConfigMap(cm *v1.ConfigMap) string {
    	hash := sha256.New()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 17 14:40:46 UTC 2021
    - 2.2K bytes
    - Viewed (0)
Back to top