Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for SetState (0.28 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

                state = LenientPlatformGraphResolveState.of(resolveState.getIdGenerator(), platformComponentIdentifier, potentialEdge.toModuleVersionId, virtualPlatformState, this, resolveState);
                potentialEdge.component.setState(state, ComponentGraphSpecificResolveState.EMPTY_STATE);
                // And now let's make sure we do not have another version of that virtual platform missing its metadata
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/regalloc.go

    	}
    	d := u.dist
    	for u != nil && u.dist == d {
    		u = u.next
    	}
    	return u != nil && u.dist > d
    }
    
    // Sets the state of the registers to that encoded in regs.
    func (s *regAllocState) setState(regs []endReg) {
    	s.freeRegs(s.used)
    	for _, x := range regs {
    		s.assignReg(x.r, x.v, x.c)
    	}
    }
    
    // compatRegs returns the set of registers which can store a type t.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/ldap/LdapManager.java

                            o -> user.setInternationaliSDNNumber(o.toString()));
                    setAttributeValue(result, fessConfig.getLdapAttrState(), o -> user.setState(o.toString()));
                    setAttributeValue(result, fessConfig.getLdapAttrEmployeeType(), o -> user.setEmployeeType(o.toString()));
                    setAttributeValue(result, fessConfig.getLdapAttrFacsimileTelephoneNumber(),
    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. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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