Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 3,005 for predates (0.14 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/file/ArchiveOperations.java

    public interface ArchiveOperations {
    
        /**
         * Creates resource that points to a gzip compressed file at the given path.
         * The path is evaluated as per {@link Project#file(Object)}.
         *
         * @param path The path evaluated as per {@link Project#file(Object)}.
         * @since 7.0
         */
        ReadableResource gzip(Object path);
    
        /**
         * Creates resource that points to a bzip2 compressed file at the given path.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/Queues.java

      // ArrayBlockingQueue
    
      /**
       * Creates an empty {@code ArrayBlockingQueue} with the given (fixed) capacity and nonfair access
       * policy.
       */
      @J2ktIncompatible
      @GwtIncompatible // ArrayBlockingQueue
      public static <E> ArrayBlockingQueue<E> newArrayBlockingQueue(int capacity) {
        return new ArrayBlockingQueue<>(capacity);
      }
    
      // ArrayDeque
    
      /**
       * Creates an empty {@code ArrayDeque}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 18K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ModuleComponentResolveMetadata.java

        ModuleComponentIdentifier getId();
    
        /**
         * Creates a mutable copy of this metadata.
         *
         * Note that this method can be expensive. Often it is more efficient to use a more specialised mutation method such as {@link #withSources(ModuleSources)} rather than this method.
         */
        MutableModuleComponentResolveMetadata asMutable();
    
        /**
         * Creates a copy of this meta-data with the given sources.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 17:38:42 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. operator/pkg/component/component.go

    func (c *IstioComponentBase) Run() error {
    	return runComponent(c.CommonComponentFields)
    }
    
    func (c *IstioComponentBase) RenderManifest() (string, error) {
    	return renderManifest(c)
    }
    
    // NewCoreComponent creates a new IstioComponent with the given componentName and options.
    func NewCoreComponent(cn name.ComponentName, opts *Options) IstioComponent {
    	var component IstioComponent
    	switch cn {
    	case name.IstioBaseComponentName:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 10 15:35:03 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/container_manager.go

    	// GetNodeAllocatableAbsolute returns the absolute value of Node Allocatable which is primarily useful for enforcement.
    	GetNodeAllocatableAbsolute() v1.ResourceList
    
    	// PrepareDynamicResource prepares dynamic pod resources
    	PrepareDynamicResources(*v1.Pod) error
    
    	// UnrepareDynamicResources unprepares dynamic pod resources
    	UnprepareDynamicResources(*v1.Pod) error
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:13 UTC 2024
    - 9K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/JavaLibraryInitIntegrationTest.groovy

        def "defaults to Kotlin build scripts"() {
            when:
            run ('init', '--type', 'java-library' )
    
            then:
            dslFixtureFor(KOTLIN).assertGradleFilesGenerated()
        }
    
        def "creates sample source if no source present with #scriptDsl build scripts"() {
            def dslFixture = dslFixtureFor(scriptDsl)
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 03:26:38 UTC 2024
    - 11.8K bytes
    - Viewed (1)
  10. 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)
Back to top