Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 513 for ProcessId (0.23 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/modulecache/DefaultCachedMetadata.java

            }
            return null;
        }
    
        @Override
        public synchronized void putProcessedMetadata(int hash, ModuleComponentGraphResolveState processed) {
            if (processedMetadataByRules == null) {
                processedMetadataByRules = Collections.singletonMap(hash, processed);
                return;
            } else if (processedMetadataByRules.size() == 1) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  2. pilot/pkg/xds/pushqueue_test.go

    					return l < r
    				})
    				processed = append(processed, updated...)
    				if len(processed) == 100 {
    					done <- struct{}{}
    				}
    				p.MarkDone(con)
    			}
    		}()
    
    		select {
    		case <-done:
    		case <-time.After(time.Second * 10):
    			t.Fatalf("failed to get all updates, still pending:  got %v", len(processed))
    		}
    
    		if !reflect.DeepEqual(expected, processed) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/tasks/util/PatternFilterable.java

         *
         * If includes are not provided, then all files in this container will be included. If includes are provided, then a
         * file must match at least one of the include patterns to be processed.
         *
         * @param includes a vararg list of include patterns
         * @return this
         * @see PatternFilterable Pattern Format
         */
        PatternFilterable include(String... includes);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 15 16:06:48 UTC 2017
    - 8K bytes
    - Viewed (0)
  4. pkg/registry/core/service/ipallocator/cidrallocator_test.go

    	_, err = r.client.ServiceCIDRs().Create(context.Background(), cidr, metav1.CreateOptions{})
    	if err != nil {
    		t.Fatal(err)
    	}
    	r.addServiceCIDR(cidr)
    	// wait for the cidr to be processed and set the informer synced
    	err = wait.PollUntilContextTimeout(context.Background(), 100*time.Millisecond, 5*time.Second, true, func(ctx context.Context) (bool, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/phases/util_test.go

    	ver := version.Get().String()
    
    	tests := []struct {
    		name   string
    		input  string
    		output string
    	}{
    		{
    			name:   "empty version is processed",
    			input:  "",
    			output: ver,
    		},
    		{
    			name:   "default version is processed",
    			input:  kubeadmapiv1.DefaultKubernetesVersion,
    			output: ver,
    		},
    		{
    			name:   "any other version is skipped",
    			input:  "v1.12.0",
    			output: "v1.12.0",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 17 14:40:46 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  6. pkg/controller/nodelifecycle/scheduler/rate_limited_queue.go

    // action and leak is true. Otherwise, requeues the item to be
    // processed. Each value is processed once if fn returns true,
    // otherwise it is added back to the queue. The returned remaining is
    // used to identify the minimum time to execute the next item in the
    // queue. The same value is processed only once unless Remove is
    // explicitly called on it (it's done by the cancelPodEviction
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 07:50:01 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  7. maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingEvent.java

         *
         * @return The model being built, never {@code null}.
         */
        Model getModel();
    
        /**
         * Gets the model building request being processed.
         *
         * @return The model building request being processed, never {@code null}.
         */
        ModelBuildingRequest getRequest();
    
        /**
         * Gets the container used to collect problems that were encountered while processing the event.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  8. subprojects/composite-builds/src/main/java/org/gradle/composite/internal/IncludedBuildDependencySubstitutionsBuilder.java

        private final NotationParser<Object, ComponentSelector> moduleSelectorNotationParser;
        private final NotationParser<Object, Capability> capabilitiesParser;
        private final Set<IncludedBuildState> processed = new HashSet<>();
    
        public IncludedBuildDependencySubstitutionsBuilder(
            CompositeBuildContext context,
            Instantiator instantiator,
            ObjectFactory objectFactory,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 13 02:04:28 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/api/services/model/ModelBuildingEvent.java

         * @return The model being built, never {@code null}.
         */
        Model model();
    
        Consumer<Model> update();
    
        /**
         * Gets the model building request being processed.
         *
         * @return The model building request being processed, never {@code null}.
         */
        ModelBuilderRequest request();
    
        /**
         * Gets the container used to collect problems that were encountered while processing the event.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. maven-model-builder/src/main/java/org/apache/maven/model/path/ModelPathTranslator.java

     *
     */
    public interface ModelPathTranslator {
    
        /**
         * Resolves the well-known paths of the specified model against the given base directory. Paths within plugin
         * configuration are not processed.
         *
         * @param model The model whose paths should be resolved, may be {@code null}.
         * @param basedir The base directory to resolve relative paths against, may be {@code null}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top