Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,101 for Managed (0.19 sec)

  1. pkg/scheduler/apis/config/types.go

    	// assuming that the extender already cached full details of all nodes in the cluster
    	NodeCacheCapable bool
    	// ManagedResources is a list of extended resources that are managed by
    	// this extender.
    	// - A pod will be sent to the extender on the Filter, Prioritize and Bind
    	//   (if the extender is the binder) phases iff the pod requests at least
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 18:47:23 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  2. platforms/software/platform-base/src/main/java/org/gradle/platform/base/binary/BaseBinarySpec.java

    import java.io.File;
    import java.util.Set;
    
    /**
     * Base class that may be used for custom {@link BinarySpec} implementations. However, it is generally better to use an
     * interface annotated with {@link org.gradle.model.Managed} and not use an implementation class at all.
     */
    @Incubating
    public class BaseBinarySpec extends AbstractBuildableComponentSpec implements BinarySpecInternal {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/managedfields/node.yaml

    apiVersion: v1
    kind: Node
    metadata:
      annotations:
        container.googleapis.com/instance_id: "123456789321654789"
        node.alpha.kubernetes.io/ttl: "0"
        volumes.kubernetes.io/controller-managed-attach-detach: "true"
      creationTimestamp: "2019-07-09T16:17:29Z"
      labels:
        kubernetes.io/arch: amd64
        beta.kubernetes.io/fluentd-ds-ready: "true"
        beta.kubernetes.io/instance-type: n1-standard-4
        kubernetes.io/os: linux
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 20:22:50 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  4. pkg/apis/resource/validation/validation_resourceclaimparameters_test.go

    				}
    				return parameters
    			}(),
    		},
    		"managed-fields": {
    			parameters: func() *resource.ResourceClaimParameters {
    				parameters := testResourceClaimParameters(goodName, goodName, goodRequests)
    				parameters.ManagedFields = []metav1.ManagedFieldsEntry{
    					{
    						FieldsType: "FieldsV1",
    						Operation:  "Apply",
    						APIVersion: "apps/v1",
    						Manager:    "foo",
    					},
    				}
    				return parameters
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:21:16 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  5. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorIntegrationTest.groovy

            """.stripIndent()
    
            when:
            fails 'runInWorker'
    
            then:
            failure.assertHasCause 'An attempt was made to submit work from a thread not managed by Gradle.  Work may only be submitted from a Gradle-managed thread.'
    
            where:
            workerMethod << ISOLATION_MODES
        }
    
        def "uses an inferred display name for work items in #isolationMode"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 31K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/BuilderCommon.java

                            && defaulModelId.equals(
                                    p.getLocation("version").getSource().getModelId()))
                    .distinct()
                    .map(Plugin::getArtifactId) // managed by us, groupId is always o.a.m.plugins
                    .collect(Collectors.toList());
    
            if (!unversionedPlugins.isEmpty()) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_node_status.go

    // the API server, returning a boolean indicating whether the attempt was
    // successful.  If a node with the same name already exists, it reconciles the
    // value of the annotation for controller-managed attach-detach of attachable
    // persistent volumes for the node.
    func (kl *Kubelet) tryRegisterWithAPIServer(node *v1.Node) bool {
    	_, err := kl.kubeClient.CoreV1().Nodes().Create(context.TODO(), node, metav1.CreateOptions{})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  8. pkg/apis/resource/validation/validation_podschedulingcontext_test.go

    				return schedulingCtx
    			}(),
    		},
    		"managed-fields": {
    			schedulingCtx: func() *resource.PodSchedulingContext {
    				schedulingCtx := testPodSchedulingContexts(goodName, goodNS, goodPodSchedulingSpec)
    				schedulingCtx.ManagedFields = []metav1.ManagedFieldsEntry{
    					{
    						FieldsType: "FieldsV1",
    						Operation:  "Apply",
    						APIVersion: "apps/v1",
    						Manager:    "foo",
    					},
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 09:18:08 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  9. pkg/apis/resource/validation/validation_resourceclaimtemplate_test.go

    				}
    				return template
    			}(),
    		},
    		"managed-fields": {
    			template: func() *resource.ResourceClaimTemplate {
    				template := testClaimTemplate(goodName, goodNS, goodClaimSpec)
    				template.ManagedFields = []metav1.ManagedFieldsEntry{
    					{
    						FieldsType: "FieldsV1",
    						Operation:  "Apply",
    						APIVersion: "apps/v1",
    						Manager:    "foo",
    					},
    				}
    				return template
    			}(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/create.go

    	return c.Creater.Create(ctx, obj, createValidatingAdmission, options)
    }
    
    // manager is assumed to be already a valid value, we need to make
    // userAgent into a valid value too.
    func managerOrUserAgent(manager, userAgent string) string {
    	if manager != "" {
    		return manager
    	}
    	return prefixFromUserAgent(userAgent)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:19:46 UTC 2023
    - 10.1K bytes
    - Viewed (0)
Back to top