Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for demand (0.14 sec)

  1. pkg/workloadapi/workload.proto

    // These resources cannot be looked up on-demand.
    //
    // In some cases, we do not know the IP address of a Service. These services cannot be used for matching
    // outbound traffic, as we only have L4 attributes to route based on. However,
    // they can be used for Gateways.
    // In this case, the key format will be "network/hostname".
    // These resources cannot be looked up on-demand.
    message Address {
      oneof type {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsIntegrationTest.groovy

            then:
            failure.assertHasDescription("The configuration cache cannot be disabled when isolated projects is enabled.")
        }
    
        def "projects are configured on demand"() {
            settingsFile << """
                println "configuring settings"
                include "a", "b", "c"
            """
            buildFile("""
                println "configuring root project"
            """)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DefaultBuildTreeModelControllerServices.kt

            val modelParameters = if (requirements.isCreatesModel) {
                // When creating a model, disable certain features - only enable configure on demand and configuration cache when isolated projects is enabled
                BuildModelParameters(
                    parallelProjectExecution,
                    isolatedProjects,
                    isolatedProjects,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  4. pkg/workloadapi/workload.pb.go

    // These resources cannot be looked up on-demand.
    //
    // In some cases, we do not know the IP address of a Service. These services cannot be used for matching
    // outbound traffic, as we only have L4 attributes to route based on. However,
    // they can be used for Gateways.
    // In this case, the key format will be "network/hostname".
    // These resources cannot be looked up on-demand.
    type Address struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  5. pilot/pkg/xds/delta.go

    	// server should treat that identically to how it would treat the client having explicitly
    	// subscribed to *"
    	// NOTE: this means you cannot subscribe to nothing, which is useful for on-demand loading; to workaround this
    	// Istio clients will send and initial request both subscribing+unsubscribing to `*`.
    	if len(request.ResourceNamesSubscribe) == 0 {
    		wildcard = true
    	}
    	return res.UnsortedList(), wildcard
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/StartParameter.java

         */
        @Override
        public void setMaxWorkerCount(int maxWorkerCount) {
            parallelismConfiguration.setMaxWorkerCount(maxWorkerCount);
        }
    
        /**
         * If the configure-on-demand mode is active
         */
        @Incubating
        public boolean isConfigureOnDemand() {
            return configureOnDemand;
        }
    
        @Override
        public String toString() {
            return "StartParameter{"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 06:24:50 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  7. cmd/iam-store.go

    	// map of regular username to credentials
    	iamUsersMap map[string]UserIdentity
    	// map of regular username to policy names
    	iamUserPolicyMap *xsync.MapOf[string, MappedPolicy]
    
    	// STS accounts are loaded on demand and not via the periodic IAM reload.
    	// map of STS access key to credentials
    	iamSTSAccountsMap map[string]UserIdentity
    	// map of STS access key to policy names
    	iamSTSPolicyMap *xsync.MapOf[string, MappedPolicy]
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  8. src/cmd/go/internal/work/exec.go

    		// Note: coverage granularity is currently hard-wired to
    		// 'perblock'; there isn't a way using "go build -cover" or "go
    		// test -cover" to select it. This may change in the future
    		// depending on user demand.
    		Granularity: "perblock",
    		OutConfig:   p.Internal.Cover.Cfg,
    		Local:       p.Internal.Local,
    	}
    	if ba, ok := a.Actor.(*buildActor); ok && ba.covMetaFileName != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet.go

    	if err := kl.cadvisor.Start(); err != nil {
    		// Fail kubelet and rely on the babysitter to retry starting kubelet.
    		klog.ErrorS(err, "Failed to start cAdvisor")
    		os.Exit(1)
    	}
    
    	// trigger on-demand stats collection once so that we have capacity information for ephemeral storage.
    	// ignore any errors, since if stats collection is not successful, the container manager will fail to start below.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  10. platforms/core-runtime/daemon-protocol/build.gradle.kts

        api(project(":base-services"))
        api(project(":logging-api"))
        api(project(":serialization"))
        api(project(":logging"))
        api(project(":stdlib-java-extensions"))
    
        // The client should not depend on core or core-api, but core still contains some types that are shared between the client and daemon
        api(project(":core-api"))
        api(project(":core"))
    
        implementation(libs.guava)
        implementation(libs.slf4jApi)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top