Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,457 for predates (0.14 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/pkg/client/clientset/versioned/typed/cr/v1/cr_client.go

    		return nil, err
    	}
    	return &CrV1Client{client}, nil
    }
    
    // NewForConfigOrDie creates a new CrV1Client for the given config and
    // panics if there is an error in the config.
    func NewForConfigOrDie(c *rest.Config) *CrV1Client {
    	client, err := NewForConfig(c)
    	if err != nil {
    		panic(err)
    	}
    	return client
    }
    
    // New creates a new CrV1Client for the given RESTClient.
    func New(c rest.Interface) *CrV1Client {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 20 04:39:39 UTC 2021
    - 3K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/artifact/resolver/filter/ExclusionArtifactFilter.java

        private final List<Predicate<Artifact>> predicates;
    
        public ExclusionArtifactFilter(List<Exclusion> exclusions) {
            this.exclusions = exclusions;
            this.predicates =
                    exclusions.stream().map(ExclusionArtifactFilter::toPredicate).collect(Collectors.toList());
        }
    
        @Override
        public boolean include(Artifact artifact) {
            return predicates.stream().noneMatch(p -> p.test(artifact));
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Aug 29 15:25:58 UTC 2023
    - 3K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/file/FileSystemOperations.java

     *
     * @since 6.0
     */
    @ServiceScope({Scope.Build.class, Scope.Project.class})
    public interface FileSystemOperations {
    
        /**
         * Creates a {@link CopySpec} which can later be used to copy files or create an archive. The given action is used
         * to configure the {@link CopySpec} before it is returned by this method.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 15 08:02:27 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/testing/testing.go

    	frameworkruntime "k8s.io/kubernetes/pkg/scheduler/framework/runtime"
    )
    
    // SetupPluginWithInformers creates a plugin using a framework handle that includes
    // the provided sharedLister and a SharedInformerFactory with the provided objects.
    // The function also creates an empty namespace (since most tests creates pods with
    // empty namespace), and start informer factory.
    func SetupPluginWithInformers(
    	ctx context.Context,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 20 09:49:54 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/DescribablesTest.groovy

            value.capitalizedDisplayName == "F two three"
        }
    
        def "creates from type and name"() {
            expect:
            def value = Describables.withTypeAndName("some type", "name")
            value.displayName == "some type 'name'"
            value.toString() == "some type 'name'"
            value.capitalizedDisplayName == "Some type 'name'"
        }
    
        def "creates from description and value"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/build/BuildStateRegistry.java

         */
        void finalizeIncludedBuilds();
    
        /**
         * Creates an included build. An included build is-a nested build whose projects and outputs are treated as part of the composite build.
         */
        IncludedBuildState addIncludedBuild(BuildDefinition buildDefinition);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:19 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  7. platforms/enterprise/enterprise-logging/src/main/java/org/gradle/internal/logging/progress/ProgressLoggerFactory.java

    @ServiceScope(Scope.Global.class)
    public interface ProgressLoggerFactory {
        /**
         * Creates a new long-running operation which has not been started.
         *
         * @param loggerCategory The logger category.
         * @return The progress logger for the operation.
         */
        ProgressLogger newOperation(String loggerCategory);
    
        /**
         * Creates a new long-running operation which has not been started.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 2K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/NodePredicate.java

     * limitations under the License.
     */
    
    package org.gradle.model.internal.core;
    
    import com.google.common.base.Predicate;
    import com.google.common.base.Predicates;
    import org.gradle.model.internal.type.ModelType;
    
    import javax.annotation.Nullable;
    
    /**
     * Criteria for selecting the descendants of a particular node.
     */
    public abstract class NodePredicate {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1beta1/apiextensions_client.go

    	return &ApiextensionsV1beta1Client{client}, nil
    }
    
    // NewForConfigOrDie creates a new ApiextensionsV1beta1Client for the given config and
    // panics if there is an error in the config.
    func NewForConfigOrDie(c *rest.Config) *ApiextensionsV1beta1Client {
    	client, err := NewForConfig(c)
    	if err != nil {
    		panic(err)
    	}
    	return client
    }
    
    // New creates a new ApiextensionsV1beta1Client for the given RESTClient.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 20 04:39:39 UTC 2021
    - 3.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/core-plugins/distribution_plugin.adoc

    `distZip` — link:{groovyDslPath}/org.gradle.api.tasks.bundling.Zip.html[Zip]::
    Creates a ZIP archive of the distribution contents.
    
    `distTar` — link:{groovyDslPath}/org.gradle.api.Task.html[Task]::
    Creates a TAR archive of the distribution contents.
    
    `assembleDist` — link:{groovyDslPath}/org.gradle.api.Task.html[Task]::
    _Depends on_: `distTar`, `distZip`
    +
    Creates ZIP and TAR archives of the distribution contents.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.8K bytes
    - Viewed (0)
Back to top