Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,303 for Managed (0.14 sec)

  1. pkg/apis/resource/namedresources.go

    }
    
    // NamedResourcesInstance represents one individual hardware instance that can be selected based
    // on its attributes.
    type NamedResourcesInstance struct {
    	// Name is unique identifier among all resource instances managed by
    	// the driver on the node. It must be a DNS subdomain.
    	Name string
    
    	// Attributes defines the attributes of this resource instance.
    	// The name of each attribute must be unique.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 12:18:45 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/build/BuildStateRegistry.java

        /**
         * Notification that the settings have been loaded for the root build.
         *
         * <p>This shouldn't be on this interface, as this is state for the root build that should be managed internally by the {@link RootBuildState} instance instead. This method is here to allow transition towards that structure.
         */
        void finalizeIncludedBuilds();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:19 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/extender.go

    	extenderv1 "k8s.io/kube-scheduler/extender/v1"
    )
    
    // Extender is an interface for external processes to influence scheduling
    // decisions made by Kubernetes. This is typically needed for resources not directly
    // managed by Kubernetes.
    type Extender interface {
    	// Name returns a unique name that identifies the extender.
    	Name() string
    
    	// Filter based on extender-implemented predicate functions. The filtered list is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 19:07:19 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/internal/model/ObjectFactoryIntegrationTest.groovy

                assert container.size() == 1
            """
    
            expect:
            succeeds()
        }
    
        def "plugin can create NamedDomainObjectContainer instances that creates decorated elements of a named managed type"() {
            given:
            buildFile """
                interface NamedThing extends Named {
                    Property<String> getProp()
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 07 02:25:12 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  5. operator/cmd/mesh/testdata/manifest-generate/input-extra-resources/envoyfilter.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: EnvoyFilter
    metadata:
      labels:
        app.kubernetes.io/managed-by: Helm
        istio.io/rev: default
      name: stats-filter-1.19
      namespace: istio-system
    spec:
      configPatches:
      - applyTo: HTTP_FILTER
        match:
          context: SIDECAR_OUTBOUND
          listener:
            filterChain:
              filter:
                name: envoy.filters.network.http_connection_manager
                subFilter:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 18:26:24 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  6. pkg/scheduler/extender_test.go

    		want     bool
    	}{
    		{
    			label: "Empty managed resources",
    			extender: &HTTPExtender{
    				managedResources: sets.New[string](),
    			},
    			pod:  &v1.Pod{},
    			want: true,
    		},
    		{
    			label:    "Managed memory, empty resources",
    			extender: mem,
    			pod:      st.MakePod().Container("app").Obj(),
    			want:     false,
    		},
    		{
    			label:    "Managed memory, container memory with Requests",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 19:07:19 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  7. platforms/core-runtime/concurrent/build.gradle.kts

     * limitations under the License.
     */
    
    plugins {
        id("gradlebuild.distribution.implementation-java")
        id("gradlebuild.publish-public-libraries")
    }
    
    description = "Tools to work with managed executors"
    
    gradlebuildJava.usedInWorkers()
    
    dependencies {
        api(libs.jsr305)
        api(projects.stdlibJavaExtensions)
    
        implementation(libs.slf4jApi)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 931 bytes
    - Viewed (0)
  8. manifests/addons/dashboards/ztunnel.libsonnet

              Count of XDS connection terminations.
              This will typically spike every 30min for each instance.
            |||
          ),
          panels.timeSeries.base('Workload Manager', queries.workloadManager, |||
            Count of active and pending proxies managed by each instance.
            Pending is expected to converge to zero.
          |||
          ),
        ]),
      ], panelHeight=8)
    )
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/testng/TestNGTestFramework.java

            // The user must add their TestNG dependency to the test's runtimeClasspath themselves
            // or preferably use test suites where the dependencies are automatically managed.
            return false;
        }
    
        @Override
        public TestNGOptions getOptions() {
            return options;
        }
    
        @Override
        public TestNGDetector getDetector() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/invocation/GradleLifecycleIntegrationTest.groovy

        }
    
        def configuredTaskRunsCorrectly() {
            run 'test'
            outputContains 'The parameter is `42`'
            true
        }
    
        def 'isolated beforeProject action given as Kotlin lambda can capture managed value'() {
            given:
            withSettingsPluginInBuildLogic()
    
            createDir('build-logic') {
                file('settings.gradle.kts') << ''
                file('build.gradle.kts') << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 16:52:09 UTC 2024
    - 6.9K bytes
    - Viewed (0)
Back to top