Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 66 for plans (0.13 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheAwareBuildModelController.kt

                delegate.prepareToScheduleTasks()
            } // Else, already done
        }
    
        override fun scheduleRequestedTasks(selector: EntryTaskSelector?, plan: ExecutionPlan) {
            if (!maybeLoadFromCache()) {
                delegate.scheduleRequestedTasks(selector, plan)
            } // Else, already scheduled
        }
    
        private
        fun maybeLoadFromCache(): Boolean {
            return configurationCache.isLoaded
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/CrossProjectConfigurationReportingTaskExecutionGraph.kt

            ******@****.***e(wrappedGraph)
        }
    
        // region overridden by delegation
    
        override fun populate(plan: FinalizedExecutionPlan?) {
            delegate.populate(plan)
        }
    
        override fun execute(plan: FinalizedExecutionPlan?): ExecutionResult<Void>? =
            delegate.execute(plan)
    
        override fun visitScheduledNodes(visitor: BiConsumer<List<Node>, Set<Node>>) =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  3. pkg/config/constants/constants.go

    	CertProviderKubernetesSignerPrefix = "k8s.io/"
    	// CertProviderCustom uses the custom root certificate mounted in a well known location for the control plane
    	CertProviderCustom = "custom"
    	// CertProviderNone does not create any certificates for the control plane. It is assumed that some external
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. pilot/pkg/model/telemetry_logging.go

    	"strings"
    
    	accesslog "github.com/envoyproxy/go-control-plane/envoy/config/accesslog/v3"
    	core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    	fileaccesslog "github.com/envoyproxy/go-control-plane/envoy/extensions/access_loggers/file/v3"
    	grpcaccesslog "github.com/envoyproxy/go-control-plane/envoy/extensions/access_loggers/grpc/v3"
    	otelaccesslog "github.com/envoyproxy/go-control-plane/envoy/extensions/access_loggers/open_telemetry/v3"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 23K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/accesslog_test.go

    import (
    	"testing"
    
    	accesslog "github.com/envoyproxy/go-control-plane/envoy/config/accesslog/v3"
    	core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    	listener "github.com/envoyproxy/go-control-plane/envoy/config/listener/v3"
    	fileaccesslog "github.com/envoyproxy/go-control-plane/envoy/extensions/access_loggers/file/v3"
    	hcm "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/network/http_connection_manager/v3"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/OrdinalNodeCodec.kt

    import org.gradle.internal.serialize.graph.WriteContext
    import org.gradle.internal.serialize.graph.readEnum
    import org.gradle.internal.serialize.graph.writeEnum
    import org.gradle.execution.plan.OrdinalGroupFactory
    import org.gradle.execution.plan.OrdinalNode
    
    
    class OrdinalNodeCodec(
        private val ordinalGroups: OrdinalGroupFactory
    ) : Codec<OrdinalNode> {
        override suspend fun WriteContext.encode(value: OrdinalNode) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  7. releasenotes/notes/51506.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    issue:
      - 51506
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 17:37:53 UTC 2024
    - 242 bytes
    - Viewed (0)
  8. pilot/pkg/networking/util/util.go

    	"sort"
    	"strconv"
    	"strings"
    
    	core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    	endpoint "github.com/envoyproxy/go-control-plane/envoy/config/endpoint/v3"
    	listener "github.com/envoyproxy/go-control-plane/envoy/config/listener/v3"
    	route "github.com/envoyproxy/go-control-plane/envoy/config/route/v3"
    	statefulsession "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/stateful_session/v3"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/VintageGradleBuild.kt

     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl
    
    import org.gradle.api.internal.GradleInternal
    import org.gradle.execution.plan.ScheduledWork
    import org.gradle.internal.build.BuildState
    
    
    interface VintageGradleBuild {
        val isRootBuild: Boolean
        val state: BuildState
        val gradle: GradleInternal
        val hasScheduledWork: Boolean
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 983 bytes
    - Viewed (0)
  10. pilot/pkg/simulation/traffic.go

    	"regexp"
    	"strings"
    	"testing"
    
    	cluster "github.com/envoyproxy/go-control-plane/envoy/config/cluster/v3"
    	envoycore "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    	listener "github.com/envoyproxy/go-control-plane/envoy/config/listener/v3"
    	route "github.com/envoyproxy/go-control-plane/envoy/config/route/v3"
    	tls "github.com/envoyproxy/go-control-plane/envoy/extensions/transport_sockets/tls/v3"
    	"github.com/google/go-cmp/cmp"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 19.4K bytes
    - Viewed (0)
Back to top