Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 91 for _objects (0.24 sec)

  1. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

    import java.util.ArrayList;
    import java.util.Collection;
    import java.util.HashMap;
    import java.util.Iterator;
    import java.util.LinkedHashSet;
    import java.util.List;
    import java.util.Map;
    import java.util.Objects;
    import java.util.Optional;
    import java.util.Properties;
    import java.util.concurrent.Callable;
    import java.util.function.Supplier;
    import java.util.function.UnaryOperator;
    import java.util.stream.Collectors;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  2. pilot/pkg/model/push_context.go

    }
    
    // initSidecarScopes synthesizes Sidecar CRDs into objects called
    // SidecarScope.  The SidecarScope object is a semi-processed view of the
    // service registry, and config state associated with the sidecar CRD. The
    // scope contains a set of inbound and outbound listeners, services/configs
    // per listener, etc. The sidecar scopes are precomputed based on the
    // Sidecar API objects in each namespace. If there is no sidecar api object
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Multimaps.java

      }
    
      static boolean equalsImpl(Multimap<?, ?> multimap, @CheckForNull Object object) {
        if (object == multimap) {
          return true;
        }
        if (object instanceof Multimap) {
          Multimap<?, ?> that = (Multimap<?, ?>) object;
          return multimap.asMap().equals(that.asMap());
        }
        return false;
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 86.3K bytes
    - Viewed (0)
  4. cmd/xl-storage-format-v2.go

    }
    
    // The []journal contains all the different versions of the object.
    //
    // This array can have 3 kinds of objects:
    //
    // ``object``: If the object is uploaded the usual way: putobject, multipart-put, copyobject
    //
    // ``delete``: This is the delete-marker
    //
    // ``legacyObject``: This is the legacy object in xlV1 format, preserved until its overwritten
    //
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  5. pkg/controller/volume/persistentvolume/pv_controller.go

    	// claim in the informers (it has not been updated from API server events
    	// yet) and it would try to fix these objects to be bound together.
    	// Any write to API server would fail with version conflict - these objects
    	// have been already written.
    	volumes persistentVolumeOrderedIndex
    	claims  cache.Store
    
    	// Work queues of claims and volumes to process. Every queue should have
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/DefaultServiceRegistry.java

                }
            }
    
            @Override
            protected Object createServiceInstance() {
                Object[] params = assembleParameters();
                Object result = invokeMethod(params);
                // Can discard the state required to create instance
                paramServices = null;
                return result;
            }
    
            private Object[] assembleParameters() {
                if (paramServices == NO_DEPENDENTS) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

    import java.util.Collection;
    import java.util.Collections;
    import java.util.HashMap;
    import java.util.HashSet;
    import java.util.LinkedHashSet;
    import java.util.List;
    import java.util.Map;
    import java.util.Objects;
    import java.util.Set;
    import java.util.stream.Collectors;
    
    /**
     * Represents a node in the dependency graph.
     */
    public class NodeState implements DependencyGraphNode {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/DefaultServiceRegistryTest.groovy

            void stop() {
                throw new UnsupportedOperationException()
            }
    
            Service serviceFor(Object object) {
                def service = services.get(object)
                if (service == null) {
                    service = new MockServiceWrapper(object)
                    services.put(object, service)
                }
                return service
            }
        }
    
        @NonNullApi
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:53:25 UTC 2024
    - 59.8K bytes
    - Viewed (0)
  9. src/cmd/link/internal/loader/loader.go

    	}
    	return b
    }
    
    type symAndSize struct {
    	sym  Sym
    	size uint32
    }
    
    // A Loader loads new object files and resolves indexed symbol references.
    //
    // Notes on the layout of global symbol index space:
    //
    //   - Go object files are read before host object files; each Go object
    //     read adds its defined package symbols to the global index space.
    //     Nonpackage symbols are not yet added.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  10. cmd/api-errors.go

    	},
    	ErrObjectLockInvalidHeaders: {
    		Code:           "InvalidRequest",
    		Description:    "x-amz-object-lock-retain-until-date and x-amz-object-lock-mode must both be supplied",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrObjectRestoreAlreadyInProgress: {
    		Code:           "RestoreAlreadyInProgress",
    		Description:    "Object restore is already in progress",
    		HTTPStatusCode: http.StatusConflict,
    	},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
Back to top