Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 153 for _encapsulate (0.15 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/ConstructorSelector.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.instantiation.generator;
    
    /**
     * Encapsulates the differences, due to backwards compatibility, in instantiation for several different types.
     */
    interface ConstructorSelector {
        /**
         * Allows this selector to veto the parameters to use with the given constructor.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. platforms/core-runtime/build-state/src/main/java/org/gradle/internal/session/BuildSessionState.java

    import org.gradle.internal.service.scopes.GradleUserHomeScopeServiceRegistry;
    import org.gradle.internal.service.scopes.Scope;
    
    import java.io.Closeable;
    import java.util.function.Function;
    
    /**
     * Encapsulates the state for a build session.
     */
    public class BuildSessionState implements Closeable {
        private final GradleUserHomeScopeServiceRegistry userHomeScopeServiceRegistry;
        private final ServiceRegistry userHomeServices;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 21:54:27 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/model/ModelContainer.java

     * limitations under the License.
     */
    
    package org.gradle.internal.model;
    
    import javax.annotation.Nullable;
    import java.util.function.Consumer;
    import java.util.function.Function;
    
    /**
     * Encapsulates some mutable model, and provides synchronized access to the model.
     */
    public interface ModelContainer<T> {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:24 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/internal/passes/clustering_passes.h

    // cluster) ops to a separate parallel_execute region to run on CPU.
    std::unique_ptr<mlir::OperationPass<mlir::ModuleOp>>
    CreateExtractOutsideCompilationPass();
    
    // Create a pass that encapsulates StatefulPartitionedCallOp within a cluster.
    std::unique_ptr<mlir::OperationPass<mlir::ModuleOp>>
    CreateXlaClusterFormationPass();
    
    // Creates a pass that marks unsupported ops in device cluster for outside
    // compilation.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 02:01:13 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. src/cmd/covdata/merge.go

    	pcombineflag = flag.Bool("pcombine", false, "Combine profiles derived from distinct program executables")
    	m := &mstate{
    		mm: newMetaMerge(),
    	}
    	return m
    }
    
    // mstate encapsulates state and provides methods for implementing the
    // merge operation. This type implements the CovDataVisitor interface,
    // and is designed to be used in concert with the CovDataReader
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:36:37 UTC 2023
    - 3.2K bytes
    - Viewed (0)
Back to top