Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for getStat (1.4 sec)

  1. pkg/scheduler/framework/plugins/interpodaffinity/filtering_test.go

    			// allPodsState is the state produced when all pods, including test.addedPod are given to prefilter.
    			_, _, allPodsState, _ := getState(append(test.existingPods, test.addedPod))
    
    			// state is produced for test.existingPods (without test.addedPod).
    			ipa, cycleState, state, snapshot := getState(test.existingPods)
    			// clone the state so that we can compare it later when performing Remove.
    			originalState := state.Clone()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 01 10:24:54 UTC 2023
    - 58.2K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultProject.java

        }
    
        @Override
        public void setDefaultTasks(List<String> defaultTasks) {
            this.defaultTasks = defaultTasks;
        }
    
        @Override
        public ProjectStateInternal getState() {
            return state;
        }
    
        @Inject
        @Override
        public abstract FileResolver getFileResolver();
    
        @Inject
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/ldap/LdapManager.java

                            .forEach(v -> modifyDeleteEntry(modifyList, attrInternationaliSDNNumber, v)));
            final String attrState = fessConfig.getLdapAttrState();
            OptionalUtil.ofNullable(user.getState()).filter(StringUtil::isNotBlank).ifPresent(s -> modifyReplaceEntry(modifyList, attrState, s))
                    .orElse(() -> getAttributeValueList(result, attrState).stream().forEach(v -> modifyDeleteEntry(modifyList, attrState, v)));
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

                view.setLenient(true)
            })
            lenientView.files.files // Force resolution
    
            then:
            configuration.getState() == RESOLVED_WITH_FAILURES
    
            when:
            configuration.resolve()
    
            then:
            def t = thrown(ResolveException)
            t == failure
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

            return arg -> mutationValidator.validateMutation(type);
        }
    
        @Override
        public String getName() {
            return name;
        }
    
        @Override
        public State getState() {
            Optional<ResolverResults> currentState = currentResolveState.get();
            if (!currentState.isPresent()) {
                return State.UNRESOLVED;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         * project, such as whether it has failed.
         *
         * @return the project state. Never returns null.
         */
        ProjectState getState();
    
        /**
         * <p>Creates a container for managing named objects of the specified type. The specified type must have a public constructor which takes the name as a String parameter.</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    // - https://github.com/kubernetes/kubernetes/pull/77619
    //   [DONE] Added TestValidateDeletionWithSuggestion for corresponding delete checks.
    // - https://github.com/kubernetes/kubernetes/pull/78713
    //   [DONE] Bug was in getState function which is shared with the new code.
    // - https://github.com/kubernetes/kubernetes/pull/78713
    //   [DONE] Added TestPreconditionalDeleteWithSuggestion
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  8. testing/architecture-test/src/changes/archunit-store/public-api-methods-return-allowed-types.txt

    Method <org.gradle.api.DefaultTask.getState()> has arguments/return type org.gradle.api.internal.tasks.TaskStateInternal that is not Gradle public API or primitive or built-in JDK classes or Kotlin classes in (DefaultTask.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:21:31 UTC 2024
    - 91.3K bytes
    - Viewed (0)
Back to top