Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,595 for object3 (0.24 sec)

  1. staging/src/k8s.io/api/resource/v1alpha2/generated.proto

    }
    
    // PodSchedulingContextList is a collection of Pod scheduling objects.
    message PodSchedulingContextList {
      // Standard list metadata
      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
    
      // Items is the list of PodSchedulingContext objects.
      repeated PodSchedulingContext items = 2;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 22:07:50 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  2. docs/bucket/replication/setup_3site_replication.sh

    sleep 10
    
    ./mc stat sitea/bucket/new-test-encrypted-object
    ./mc stat siteb/bucket/new-test-encrypted-object
    ./mc stat sitec/bucket/new-test-encrypted-object
    
    ./mc ls -r sitea/bucket/
    ./mc ls -r siteb/bucket/
    ./mc ls -r sitec/bucket/
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/writing_build_scripts.adoc

    |===
    
    == Build Script structure
    
    The Build script is composed of `{ ... }`, a special object in both Groovy and Kotlin.
    This object is called a _lambda_ in Kotlin or a _closure_ in Groovy.
    
    Simply put, the `plugins{ }` block is a method invocation in which a Kotlin _lambda_ object or Groovy _closure_ object is passed as the argument.
    It is the short form for:
    
    [source]
    ----
    plugins(function() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 22:22:43 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  4. cmd/api-response.go

    			metaErr = metadata(object.Name, policy.GetObjectAction)
    			lastObjMetaName = object.Name
    		}
    		content := ObjectVersion{}
    		content.Key = s3EncodeName(object.Name, encodingType)
    		content.LastModified = amztime.ISO8601Format(object.ModTime.UTC())
    		if object.ETag != "" {
    			content.ETag = "\"" + object.ETag + "\""
    		}
    		content.Size = object.Size
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  5. operator/pkg/helmreconciler/prune.go

    	resources := PrunedResourcesSchemas()
    	for _, gvk := range resources {
    		// First, we collect all objects for the provided GVK
    		objects := &unstructured.UnstructuredList{}
    		objects.SetGroupVersionKind(gvk)
    		if err := h.client.List(context.TODO(), objects, client.MatchingLabelsSelector{Selector: selector}); err != nil {
    			// we only want to retrieve resources clusters
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/slf4j/DefaultContextAwareTaskLogger.java

            log(logLevel, throwable, format, new Object[]{arg});
        }
    
        private void log(LogLevel logLevel, Throwable throwable, String format, Object arg1, Object arg2) {
            log(logLevel, throwable, format, new Object[]{arg1, arg2});
        }
    
        private void log(LogLevel logLevel, Throwable throwable, String format, Object[] args) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/CollectionUtils.java

         * @param objects The objects to join the string representations of
         * @return The joined string
         */
        public static String join(String separator, Object[] objects) {
            return join(separator, objects == null ? null : Arrays.asList(objects));
        }
    
        /**
         * Creates a string with {@code toString()} of each transformed object with the given separator.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/dependencies/DefaultDependencyConstraintHandler.java

                                                  PlatformSupport platformSupport) {
            this.configurationContainer = configurationContainer;
            this.dependencyConstraintFactory = dependencyConstraintFactory;
            this.dynamicMethods = new DynamicAddDependencyMethods(configurationContainer, new DependencyConstraintAdder());
            this.objects = objects;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 00:10:09 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/types/objectpath/objectpath.go

    // The sequences represent a path through the package/object/type graph.
    // We classify these operators by their type:
    //
    //	PO package->object	Package.Scope.Lookup
    //	OT  object->type 	Object.Type
    //	TT    type->type 	Type.{Elem,Key,Params,Results,Underlying} [EKPRU]
    //	TO   type->object	Type.{At,Field,Method,Obj} [AFMO]
    //
    // All valid paths start with a package and end at an object
    // and thus may be defined by the regular language:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  10. pilot/test/xds/fake.go

    	for k8sCluster, clusterObjs := range opts.KubernetesObjectsByCluster {
    		objects[k8sCluster] = append(objects[k8sCluster], clusterObjs...)
    	}
    
    	if len(objects) == 0 {
    		return map[cluster.ID][]runtime.Object{opts.DefaultClusterName: {}}
    	}
    
    	return objects
    }
    
    func kubernetesObjectsFromString(s string) ([]runtime.Object, error) {
    	var objects []runtime.Object
    	decode := kubelib.IstioCodec.UniversalDeserializer().Decode
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 16:08:52 UTC 2024
    - 18.4K bytes
    - Viewed (0)
Back to top