Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 524 for unprocessed (0.26 sec)

  1. pilot/pkg/security/authz/builder/logger.go

    		al.errMsg.ErrorFormat = istiomultierror.MultiErrorFormat()
    		authzLog.Errorf("Processed authorization policy: %s", al.errMsg)
    	}
    	if authzLog.DebugEnabled() && len(al.debugMsg) != 0 {
    		out := strings.Join(al.debugMsg, "\n\t* ")
    		authzLog.Debugf("Processed authorization policy with details:\n\t* %v", out)
    	} else {
    		authzLog.Debugf("Processed authorization policy")
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/internal/scripts/CompileScriptBuildOperationType.java

            String getLanguage();
    
            /**
             * The compile stage as a descriptive String.
             * Build scripts can be processed in multiple stages, depending on the language.
             * Groovy backed build scripts are processed in two stages.
             * Kotlin backed build scripts are processed in three stages
             * */
            String getStage();
        }
    
        public interface Result {
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top