Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 80 for _encapsulate (0.13 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/buildtree/BuildTreeState.java

    import org.gradle.internal.service.scopes.ServiceScope;
    import org.gradle.internal.work.ProjectParallelExecutionController;
    
    import java.io.Closeable;
    import java.util.function.Function;
    
    /**
     * Encapsulates the state for a particular build tree.
     */
    @ServiceScope(Scope.BuildTree.class)
    public class BuildTreeState implements Closeable {
        private final ServiceRegistry services;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. android/guava-testlib/src/com/google/common/collect/testing/AbstractCollectionTester.java

      // TODO: replace this with an accessor.
      protected Collection<E> collection;
    
      @Override
      protected Collection<E> actualContents() {
        return collection;
      }
    
      // TODO: dispose of this once collection is encapsulated.
      @Override
      @CanIgnoreReturnValue
      protected Collection<E> resetContainer(Collection<E> newContents) {
        collection = super.resetContainer(newContents);
        return collection;
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. guava-testlib/src/com/google/common/collect/testing/AbstractCollectionTester.java

      // TODO: replace this with an accessor.
      protected Collection<E> collection;
    
      @Override
      protected Collection<E> actualContents() {
        return collection;
      }
    
      // TODO: dispose of this once collection is encapsulated.
      @Override
      @CanIgnoreReturnValue
      protected Collection<E> resetContainer(Collection<E> newContents) {
        collection = super.resetContainer(newContents);
        return collection;
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/Transform.java

    import org.gradle.work.InputChanges;
    
    import javax.annotation.Nullable;
    import java.io.File;
    
    /**
     * The actual code which needs to be executed to transform a file.
     *
     * This encapsulates the public interface {@link org.gradle.api.artifacts.transform.TransformAction} into an internal type.
     */
    public interface Transform extends Describable, TaskDependencyContainer {
        Class<?> getImplementationClass();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/cli-runtime/pkg/resource/fallback_query_param_verifier.go

    limitations under the License.
    */
    
    package resource
    
    import (
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/klog/v2"
    )
    
    // fallbackQueryParamVerifier encapsulates the primary Verifier that
    // is invoked, and the secondary/fallback Verifier.
    type fallbackQueryParamVerifier struct {
    	primary   Verifier
    	secondary Verifier
    }
    
    var _ Verifier = &fallbackQueryParamVerifier{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 10 19:13:54 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/execution/MojoExecutionEvent.java

     */
    package org.apache.maven.execution;
    
    import org.apache.maven.plugin.Mojo;
    import org.apache.maven.plugin.MojoExecution;
    import org.apache.maven.project.MavenProject;
    
    /**
     * <p>
     * Encapsulates parameters of MojoExecutionListener callback methods and is meant to provide API evolution path should
     * it become necessary to introduce new parameters in the existing callbacks in the future.
     * </p>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 22 13:26:01 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  7. security/pkg/pki/error/error.go

    	// CAIllegalConfig means the configuration/deployment parameters for CA are incorrect
    	CAIllegalConfig
    	// CAInitFail means some other unexpected and fatal initilization failure
    	CAInitFail
    )
    
    // Error encapsulates the short and long errors.
    type Error struct {
    	t   ErrType
    	err error
    }
    
    // Error returns the string error message.
    func (e Error) Error() string {
    	return e.err.Error()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 13 17:41:21 UTC 2020
    - 2.1K bytes
    - Viewed (0)
  8. src/cmd/asm/internal/arch/ppc64.go

    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This file encapsulates some of the odd characteristics of the
    // 64-bit PowerPC (PPC64) instruction set, to minimize its interaction
    // with the core of the assembler.
    
    package arch
    
    import (
    	"cmd/internal/obj"
    	"cmd/internal/obj/ppc64"
    )
    
    func jumpPPC64(word string) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 21:53:50 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DaemonProcessState.java

    import org.gradle.launcher.daemon.registry.DaemonRegistryServices;
    
    import java.io.Closeable;
    import java.util.concurrent.atomic.AtomicReference;
    
    /**
     * Encapsulates the state of the daemon process.
     */
    public class DaemonProcessState implements Closeable {
        private final BuildProcessState buildProcessState;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/launcher/exec/BuildActionResult.java

     * limitations under the License.
     */
    
    package org.gradle.launcher.exec;
    
    import org.gradle.tooling.internal.provider.serialization.SerializedPayload;
    
    import javax.annotation.Nullable;
    
    /**
     * Encapsulates either a result object, or a failure as an exception or a serialized exception.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top