Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 3,834 for objectOps (1.74 sec)

  1. src/go/types/scope.go

    // This file implements Scopes.
    
    package types
    
    import (
    	"fmt"
    	"go/token"
    	"io"
    	"sort"
    	"strings"
    	"sync"
    )
    
    // A Scope maintains a set of objects and links to its containing
    // (parent) and contained (children) scopes. Objects may be inserted
    // and looked up by name. The zero value for Scope is a ready-to-use
    // empty scope.
    type Scope struct {
    	parent   *Scope
    	children []*Scope
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  2. cmd/object-handlers.go

    		writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
    		return
    	}
    
    	// Fetch object stat info.
    	objectAPI := api.ObjectAPI()
    	if objectAPI == nil {
    		writeErrorResponse(ctx, w, errorCodes.ToAPIErr(ErrServerNotInitialized), r.URL)
    		return
    	}
    
    	getObjectInfo := objectAPI.GetObjectInfo
    
    	// Check for auth type to return S3 compatible error.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/SettingsInternal.java

        List<IncludedBuildSpec> getIncludedBuilds();
    
        /**
         * The parent scope for this and all settings objects.
         *
         * Gradle runtime.
         */
        ClassLoaderScope getBaseClassLoaderScope();
    
        /**
         * The scope for this settings object.
         *
         * Gradle runtime + this object's script's additions.
         */
        ClassLoaderScope getClassLoaderScope();
    
        ServiceRegistry getServices();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 08:36:37 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/util/ConfigureUtil.java

            }
    
            return new WrappedConfigureAction<T>(configureClosure);
        }
    
        /**
         * Called from an object's {@link Configurable#configure} method.
         */
        public static <T> T configureSelf(@Nullable Closure configureClosure, T target) {
            logDeprecation();
            if (configureClosure == null) {
                return target;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/storage/v1alpha1/types.go

    	// Standard object's metadata. The name has no particular meaning. It must be
    	// be a DNS subdomain (dots allowed, 253 characters). To ensure that
    	// there are no conflicts with other CSI drivers on the cluster, the recommendation
    	// is to use csisc-<uuid>, a generated name, or a reverse-domain name which ends
    	// with the unique CSI driver name.
    	//
    	// Objects are namespaced.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:32 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  6. pkg/apis/flowcontrol/internalbootstrap/default-internal.go

    var MandatoryFlowSchemas = internalizeFSes(bootstrap.MandatoryFlowSchemas)
    
    // MandatoryPriorityLevelConfigurations holds the untyped renditions of the
    // mandatory priority level configuration objects.  In this map the
    // key is the object's name and the value is the
    // `*PriorityLevelConfiguration`.  Nobody should mutate anything
    // reachable from this map.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/main/java/org/gradle/api/Named.java

     */
    package org.gradle.api;
    
    /**
     * Types can implement this interface and use the embedded {@link Namer} implementation, to satisfy API that calls for a namer.
     */
    public interface Named {
    
        /**
         * The object's name.
         * <p>
         * Must be constant for the life of the object.
         *
         * @return The name. Never null.
         */
        String getName();
    
        // -- Internal note --
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/decl.go

    				break loop
    			}
    
    			// Determine if the type name is an alias or not. For
    			// package-level objects, use the object map which
    			// provides syntactic information (which doesn't rely
    			// on the order in which the objects are set up). For
    			// local objects, we can rely on the order, so use
    			// the object's predicate.
    			// TODO(gri) It would be less fragile to always access
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/runtime/embedded_test.go

    		t.Errorf("Expected objects to have type info set, got %#v", externalViaJSON)
    	}
    	if len(externalViaJSON.EmptyObject.Raw) > 0 {
    		t.Errorf("Expected deserialization of empty nested objects into empty bytes, got %#v", externalViaJSON)
    	}
    
    	// test JSON decoding, too, since Decode uses yaml unmarshalling.
    	// Generic Unmarshalling of JSON cannot load the nested objects because there is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 06 16:07:10 UTC 2020
    - 9.2K bytes
    - Viewed (0)
  10. src/go/types/decl.go

    				break loop
    			}
    
    			// Determine if the type name is an alias or not. For
    			// package-level objects, use the object map which
    			// provides syntactic information (which doesn't rely
    			// on the order in which the objects are set up). For
    			// local objects, we can rely on the order, so use
    			// the object's predicate.
    			// TODO(gri) It would be less fragile to always access
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31K bytes
    - Viewed (0)
Back to top