Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,212 for Assigned (0.34 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/FilePropertyContainer.java

    import java.util.Iterator;
    import java.util.List;
    
    /**
     * Container for {@link TaskPropertyRegistration}s that might not have a name. The container
     * ensures that whenever parameters are iterated they are always assigned a name.
     */
    public class FilePropertyContainer<T extends TaskFilePropertyBuilder & TaskPropertyRegistration> implements Iterable<T> {
        private final List<T> properties = new ArrayList<>();
        private boolean changed;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/dependencies/SelfResolvingDependencyInternal.java

    public interface SelfResolvingDependencyInternal extends org.gradle.api.artifacts.SelfResolvingDependency {
        /**
         * Returns the id of the target component of this dependency, if known. If unknown, an arbitrary identifier is assigned to the files referenced by this dependency.
         */
        @Nullable
        ComponentIdentifier getTargetComponentId();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:17:37 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/assignments.go

    // This file implements initialization and assignment checks.
    
    package types2
    
    import (
    	"cmd/compile/internal/syntax"
    	"fmt"
    	. "internal/types/errors"
    	"strings"
    )
    
    // assignment reports whether x can be assigned to a variable of type T,
    // if necessary by attempting to convert untyped values to the appropriate
    // type. context describes the context in which the assignment takes place.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 23 21:21:43 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/gateway/testdata/grpc.status.yaml.golden

      conditions:
      - lastTransitionTime: fake
        message: Resource accepted
        reason: Accepted
        status: "True"
        type: Accepted
      - lastTransitionTime: fake
        message: Resource programmed, assigned to service(s) istio-ingressgateway.istio-system.svc.domain.suffix:80
        reason: Programmed
        status: "True"
        type: Programmed
      listeners:
      - attachedRoutes: 1
        conditions:
        - lastTransitionTime: fake
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/AssignMutableWorkspaceStepTest.groovy

            duration >> Duration.ZERO
            execution >> Try.successful(delegateExecution)
        }
        def step = new AssignMutableWorkspaceStep<>(delegate)
        def work = Stub(MutableUnitOfWork)
    
        def "delegates with assigned mutable workspace"() {
            def delegateOutput = new Object()
            def workspace = file("workspace")
            def workspaceProvider = Mock(MutableWorkspaceProvider)
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 18:58:57 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/IdentifyStepTest.groovy

        def delegateResult = Mock(Result)
        def inputFingerprinter = Mock(InputFingerprinter)
        def step = new IdentifyStep<>(buildOperationRunner, delegate)
    
    
        def "delegates with assigned workspace"() {
            def inputSnapshot = Mock(ValueSnapshot)
            def inputFilesFingerprint = Mock(CurrentFileCollectionFingerprint)
    
            when:
            def result = step.execute(work, context)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. architecture/standards/0005-introduce-core-ui-architecture-module.md

    This ADR does not specify the owner of this new architecture module. However, as a separate module, it can be assigned ownership independently of the other core services.
    
    ## Status
    
    ACCEPTED
    
    ## Consequences
    
    - Introduce the module and move the services and their implementations.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 23:19:15 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/testdata/tcp.status.yaml.golden

      conditions:
      - lastTransitionTime: fake
        message: Resource accepted
        reason: Accepted
        status: "True"
        type: Accepted
      - lastTransitionTime: fake
        message: Resource programmed, assigned to service(s) istio-ingressgateway.istio-system.svc.domain.suffix:34000
        reason: Programmed
        status: "True"
        type: Programmed
      listeners:
      - attachedRoutes: 1
        conditions:
        - lastTransitionTime: fake
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.Node.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  10. cluster/pre-existing/util.sh

    source "${KUBE_ROOT}/cluster/common.sh"
    source "${KUBE_ROOT}/hack/lib/util.sh"
    
    function detect-project() {
      if [[ -z "${MASTER_IP:-}" ]]; then
        echo "Set 'MASTER_IP' to the instance assigned to be the Kubernetes master" 1>&2
        exit 1
      fi
    
      if [[ -z "${PROJECT:-}" ]]; then
        echo "Set 'PROJECT' to the name of the container project: $CONTAINER_REGISTRY/$PROJECT/kubemark" >&2
        exit 1
      fi
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 25 21:33:22 UTC 2022
    - 1.6K bytes
    - Viewed (0)
Back to top