Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,217 for inform (0.31 sec)

  1. pkg/controller/namespace/deletion/namespaced_resources_deleter.go

    			if !verbs.Has("delete") {
    				logger.V(6).Info("Skipping resource because it cannot be deleted", "resource", gvr)
    			}
    
    			for _, op := range []operation{operationList, operationDeleteCollection} {
    				if !verbs.Has(string(op)) {
    					d.opCache.setNotSupported(operationKey{operation: op, gvr: gvr})
    				}
    			}
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 07:34:23 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  2. pkg/apis/resource/types.go

    	//
    	// +listType=atomic
    	// +optional
    	ResourceHandles []ResourceHandle
    
    	// This field will get set by the resource driver after it has allocated
    	// the resource to inform the scheduler where it can schedule Pods using
    	// the ResourceClaim.
    	//
    	// Setting this field is optional. If null, the resource is available
    	// everywhere.
    	// +optional
    	AvailableOnNodes *core.NodeSelector
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/resource/v1alpha2/generated.proto

      //
      // +listType=atomic
      // +optional
      repeated ResourceHandle resourceHandles = 1;
    
      // This field will get set by the resource driver after it has allocated
      // the resource to inform the scheduler where it can schedule Pods using
      // the ResourceClaim.
      //
      // Setting this field is optional. If null, the resource is available
      // everywhere.
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 22:07:50 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    * a dependency is available in multiple sources with slightly different binaries (additional whitespace, ...)
    ** please inform the maintainers of the library that they have such an issue
    ** you can use <<#sec:trusting-several-checksums,`also-trust`>> to accept the additional checksums
    * the dependency was compromised
    ** immediately inform the maintainers of the library
    ** notify the repository maintainers of the compromised library
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/resource/v1alpha2/types.go

    	// +optional
    	ResourceHandles []ResourceHandle `json:"resourceHandles,omitempty" protobuf:"bytes,1,opt,name=resourceHandles"`
    
    	// This field will get set by the resource driver after it has allocated
    	// the resource to inform the scheduler where it can schedule Pods using
    	// the ResourceClaim.
    	//
    	// Setting this field is optional. If null, the resource is available
    	// everywhere.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 27 10:22:35 UTC 2024
    - 30K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/implementing_custom_tasks.adoc

    For instance, the `javaCompile` produces class files as output.
    
    Then, the `jar` task takes these class files as input and produces a JAR archive.
    
    Clearly defined task inputs and outputs serve two purposes:
    
    1. They inform Gradle about task dependencies. +
    For example, if Gradle understands that the output of the `compileJava` task serves as the input for the `jar` task, it will prioritize running `compileJava` first.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:34:54 UTC 2024
    - 37.2K bytes
    - Viewed (0)
  7. LICENSE

    menu, a prominent item in the list meets this criterion.
    
      1. Source Code.
    
      The "source code" for a work means the preferred form of the work
    for making modifications to it.  "Object code" means any non-source
    form of a work.
    
      A "Standard Interface" means an interface that either is an official
    standard defined by a recognized standards body, or, in the case of
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 23 18:58:53 UTC 2021
    - 33.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/internal/generic/informer.go

    // as they will be casted.
    func NewInformer[T runtime.Object](informe cache.SharedIndexInformer) Informer[T] {
    	return informer[T]{
    		SharedIndexInformer: informe,
    		lister:              NewLister[T](informe.GetIndexer()),
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 12 18:58:24 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  9. pilot/pkg/bootstrap/server.go

    		}
    		go func() {
    			log.Infof("starting gRPC discovery service at %s", grpcListener.Addr())
    			if err := s.grpcServer.Serve(grpcListener); err != nil {
    				log.Errorf("error serving GRPC server: %v", err)
    			}
    		}()
    	}
    
    	if s.httpsServer != nil {
    		httpsListener, err := net.Listen("tcp", s.httpsServer.Addr)
    		if err != nil {
    			return err
    		}
    		go func() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  10. apache-maven/src/main/appended-resources/licenses/CDDL+GPLv2-with-classpath-exception.txt

        in Executable form must also be made available in Source Code form
        and that Source Code form must be distributed only under the terms
        of this License. You must include a copy of this License with every
        copy of the Source Code form of the Covered Software You distribute
        or otherwise make available. You must inform recipients of any such
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 17 19:14:22 UTC 2024
    - 38.5K bytes
    - Viewed (0)
Back to top