Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,595 for object3 (1.09 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/internal/model/ObjectFactoryIntegrationTest.groovy

                    ObjectFactory objects
    
                    @javax.inject.Inject
                    CustomPlugin(ObjectFactory objects) {
                        this.objects = objects
                    }
    
                    void apply(Project project) {
                        project.tasks.create('thing1', CustomTask) {
                            thing = objects.newInstance(Thing, 'thing1')
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 07 02:25:12 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  2. src/runtime/pinner.go

    import (
    	"internal/abi"
    	"internal/runtime/atomic"
    	"unsafe"
    )
    
    // A Pinner is a set of Go objects each pinned to a fixed location in memory. The
    // [Pinner.Pin] method pins one object, while [Pinner.Unpin] unpins all pinned
    // objects. See their comments for more information.
    type Pinner struct {
    	*pinner
    }
    
    // Pin pins a Go object, preventing it from being moved or freed by the garbage
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 11K bytes
    - Viewed (0)
  3. cmd/utils.go

    	if HasSuffix(object, globalDirSuffix) {
    		return strings.TrimSuffix(object, globalDirSuffix) + slashSeparator
    	}
    	return object
    }
    
    func isDirObject(object string) bool {
    	if obj := encodeDirObject(object); obj != object {
    		object = obj
    	}
    	return HasSuffix(object, globalDirSuffix)
    }
    
    // Helper method to return total number of nodes in cluster
    func totalNodeCount() int {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 22:00:34 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  4. cmd/bucket-listobjects-handlers.go

    }
    
    // ListObjectsV2MHandler - GET Bucket (List Objects) Version 2 with metadata.
    // --------------------------
    // This implementation of the GET operation returns some or all (up to 1000)
    // of the objects in a bucket. You can use the request parameters as selection
    // criteria to return a subset of the objects in a bucket.
    //
    // NOTE: It is recommended that this API to be used for application development.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/generated.proto

      optional string uid = 1;
    
      // desiredAPIVersion is the version to convert given objects to. e.g. "myapi.example.com/v1"
      optional string desiredAPIVersion = 2;
    
      // objects is the list of custom resource objects to be converted.
      // +listType=atomic
      repeated .k8s.io.apimachinery.pkg.runtime.RawExtension objects = 3;
    }
    
    // ConversionResponse describes a conversion response.
    message ConversionResponse {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/interfaces.go

    type Versioner interface {
    	// UpdateObject sets storage metadata into an API object. Returns an error if the object
    	// cannot be updated correctly. May return nil if the requested object does not need metadata
    	// from database.
    	UpdateObject(obj runtime.Object, resourceVersion uint64) error
    	// UpdateList sets the resource version into an API list object. Returns an error if the object
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:53:48 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/generated.proto

      optional string uid = 1;
    
      // desiredAPIVersion is the version to convert given objects to. e.g. "myapi.example.com/v1"
      optional string desiredAPIVersion = 2;
    
      // objects is the list of custom resource objects to be converted.
      // +listType=atomic
      repeated .k8s.io.apimachinery.pkg.runtime.RawExtension objects = 3;
    }
    
    // ConversionResponse describes a conversion response.
    message ConversionResponse {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/Collectors.java

            @Override
            public boolean equals(Object o) {
                if (this == o) {
                    return true;
                }
                if (o == null || getClass() != o.getClass()) {
                    return false;
                }
                TypedCollector<?> that = (TypedCollector<?>) o;
                return Objects.equal(type, that.type) &&
                    Objects.equal(delegate, that.delegate);
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:15:09 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/internal/facts/facts.go

    			Object:  object,
    			Fact:    fact,
    		})
    	}
    	s.mu.Unlock()
    
    	// Sort facts by (package, object, type) for determinism.
    	sort.Slice(gobFacts, func(i, j int) bool {
    		x, y := gobFacts[i], gobFacts[j]
    		if x.PkgPath != y.PkgPath {
    			return x.PkgPath < y.PkgPath
    		}
    		if x.Object != y.Object {
    			return x.Object < y.Object
    		}
    		tx := reflect.TypeOf(x.Fact)
    		ty := reflect.TypeOf(y.Fact)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  10. maven-xml-impl/src/main/java/org/apache/maven/internal/xml/XmlNodeImpl.java

            }
            XmlNodeImpl that = (XmlNodeImpl) o;
            return Objects.equals(this.name, that.name)
                    && Objects.equals(this.value, that.value)
                    && Objects.equals(this.attributes, that.attributes)
                    && Objects.equals(this.children, that.children);
        }
    
        @Override
        public int hashCode() {
            return Objects.hash(name, value, attributes, children);
        }
    
        @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 03 17:49:40 UTC 2024
    - 18K bytes
    - Viewed (0)
Back to top