Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 5,626 for object3 (0.66 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/plugins/ObjectConfigurationAction.java

     * or objects.</p>
     */
    public interface ObjectConfigurationAction {
        /**
         * <p>Specifies some target objects to be configured. Any collections or arrays in the given parameters will be
         * flattened, and the script applied to each object in the result, in the order given. Each call to this method adds
         * some additional target objects.</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/model/ProjectLibrary.java

            }
            ProjectLibrary that = (ProjectLibrary) obj;
            return Objects.equal(name, that.name)
                && Objects.equal(type, that.type)
                && Objects.equal(compilerClasspath, that.compilerClasspath)
                && Objects.equal(classes, that.classes)
                && Objects.equal(javadoc, that.javadoc)
                && Objects.equal(sources, that.sources);
        }
    
        @Override
        public int hashCode() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  3. src/go/ast/resolve.go

    			continue // ignore this file
    		}
    
    		// collect top-level file objects in package scope
    		for _, obj := range file.Scope.Objects {
    			p.declare(pkgScope, nil, obj)
    		}
    	}
    
    	// package global mapping of imported package ids to package objects
    	imports := make(map[string]*Object)
    
    	// complete file scopes with imports and resolve identifiers
    	for _, file := range files {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/meta.go

    	"k8s.io/apimachinery/pkg/types"
    )
    
    // TODO: move this, Object, List, and Type to a different package
    type ObjectMetaAccessor interface {
    	GetObjectMeta() Object
    }
    
    // Object lets you work with object metadata from any of the versioned or
    // internal API objects. Attempting to set or retrieve a field on an object that does
    // not support that field (Name, UID, Namespace on lists) will be a no-op and return
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 20:12:50 UTC 2022
    - 7.7K bytes
    - Viewed (0)
  5. docs/iam/policies/deny-objects-with-invalid-sse-kms-key-id.json

    Shubhendu <******@****.***> 1715701387 +0530
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 14 15:43:07 UTC 2024
    - 439 bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/plugin/CacheUtils.java

                hash = hash * 31 + Objects.hashCode(dependency.getGroupId());
                hash = hash * 31 + Objects.hashCode(dependency.getArtifactId());
                hash = hash * 31 + Objects.hashCode(dependency.getVersion());
                hash = hash * 31 + Objects.hashCode(dependency.getType());
                hash = hash * 31 + Objects.hashCode(dependency.getClassifier());
                hash = hash * 31 + Objects.hashCode(dependency.getScope());
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  7. pkg/kube/kubetypes/types.go

    // Not all types have status, so they need to be split out
    type WriteStatusAPI[T runtime.Object] interface {
    	UpdateStatus(ctx context.Context, object T, opts metav1.UpdateOptions) (T, error)
    }
    
    // ReadAPI exposes a generic API for a client go type for read operations.
    type ReadAPI[T runtime.Object, TL runtime.Object] interface {
    	Get(ctx context.Context, name string, opts metav1.GetOptions) (T, error)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/collections.adoc

    These types are commonly used in Gradle plugins and build scripts to manage collections of objects, such as tasks, configurations, or custom domain objects.
    
    [[domainobjectset]]
    == 1. `DomainObjectSet`
    
    A link:{javadocPath}/org/gradle/api/DomainObjectSet.html[`DomainObjectSet`] simply holds a set of configurable objects.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  9. docs/debugging/hash-set/main.go

    	}
    	return nums
    }
    
    var (
    	file, object, deploymentID, prefix string
    	setCount, shards                   int
    	verbose                            bool
    )
    
    func main() {
    	flag.StringVar(&file, "file", "", "Read all objects from file, newline separated")
    	flag.StringVar(&prefix, "prefix", "", "Add prefix to all objects")
    	flag.StringVar(&object, "object", "", "Select an object")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 19 18:05:16 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/ForwardingMapEntry.java

       */
      protected boolean standardEquals(@CheckForNull Object object) {
        if (object instanceof Entry) {
          Entry<?, ?> that = (Entry<?, ?>) object;
          return Objects.equal(this.getKey(), that.getKey())
              && Objects.equal(this.getValue(), that.getValue());
        }
        return false;
      }
    
      /**
       * A sensible definition of {@link #hashCode()} in terms of {@link #getKey()} and {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Mar 19 19:28:11 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top