Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 80 for _encapsulate (0.19 sec)

  1. platforms/jvm/language-java/src/main/java/org/gradle/api/plugins/jvm/internal/JvmFeatureInternal.java

    import org.gradle.api.tasks.compile.JavaCompile;
    import org.gradle.internal.component.external.model.ImmutableCapabilities;
    
    import javax.annotation.Nullable;
    
    /**
     * A Jvm Feature wraps a source set to encapsulate the logic and domain objects required to
     * implement a feature of a JVM component. Features are used to model constructs like
     * production libraries, test suites, test fixtures, applications, etc. While features are not
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/tutorial/partr6_writing_tasks.adoc

                    // Write the license and the source code to the file
                    file.text = licenseText + '\n' + content
                }
            }
        }
    }
    ----
    =====
    
    The `LicenseTask` class encapsulates the task action logic and declares any inputs and outputs the task expects.
    
    The task action is annotated with `@TaskAction`.
    Inside, the logic first finds a file called "license.txt".
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 17:16:27 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/arch/arm.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 ARM
    // instruction set, to minimize its interaction with the core of the
    // assembler.
    
    package arch
    
    import (
    	"strings"
    
    	"cmd/internal/obj"
    	"cmd/internal/obj/arm"
    )
    
    var armLS = map[string]uint8{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 6.1K bytes
    - Viewed (0)
  4. src/internal/coverage/pods/pods.go

    // license that can be found in the LICENSE file.
    
    package pods
    
    import (
    	"cmp"
    	"fmt"
    	"internal/coverage"
    	"os"
    	"path/filepath"
    	"regexp"
    	"slices"
    	"strconv"
    	"strings"
    )
    
    // Pod encapsulates a set of files emitted during the executions of a
    // coverage-instrumented binary. Each pod contains a single meta-data
    // file, and then 0 or more counter data files that refer to that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/lifecycle_signals.go

    	- server.Shutdown is called, the HTTP Server stops listening immediately
        - the HTTP Server waits gracefully for existing requests to complete
          up to '2s' (it's hard coded right now)
    */
    
    // lifecycleSignal encapsulates a named apiserver event
    type lifecycleSignal interface {
    	// Signal signals the event, indicating that the event has occurred.
    	// Signal is idempotent, once signaled the event stays signaled and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 15:49:30 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache-base/src/main/kotlin/org/gradle/internal/cc/base/services/ConfigurationCacheEnvironmentChangeTracker.kt

        fun systemPropertiesCleared() = mode.toTrackingMode().systemPropertiesCleared()
    
        private
        inner class ModeHolder {
            // ModeHolder encapsulates concurrent mode updates.
            private
            var mode: TrackerMode = Initial()
    
            private
            inline fun <T : TrackerMode> setMode(transition: (TrackerMode) -> T): T {
                synchronized(this) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  7. pkg/kube/controllers/example_test.go

    // prefer a struct as input.
    func NewController(cl kube.Client) *Controller {
    	c := &Controller{events: atomic.NewInt32(0)}
    	// For each thing we watch, build a typed `client`. This encapsulates a variety of complex logic
    	// that would otherwise need to be dealt with manually with Informers and Listers.
    	// In general, you should *not* ever do a direct List or Get call to the api-server.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 7K bytes
    - Viewed (0)
  8. cmd/namespace-lock.go

    type localLockInstance struct {
    	ns     *nsLockMap
    	volume string
    	paths  []string
    	opsID  string
    }
    
    // NewNSLock - returns a lock instance for a given volume and
    // path. The returned lockInstance object encapsulates the nsLockMap,
    // volume, path and operation ID.
    func (n *nsLockMap) NewNSLock(lockers func() ([]dsync.NetLocker, string), volume string, paths ...string) RWLocker {
    	opsID := mustGetUUID()
    	if n.isDistErasure {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 05 23:56:35 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  9. src/cmd/go/internal/script/state.go

    package script
    
    import (
    	"bytes"
    	"context"
    	"fmt"
    	"internal/txtar"
    	"io"
    	"io/fs"
    	"os"
    	"os/exec"
    	"path/filepath"
    	"regexp"
    	"strings"
    )
    
    // A State encapsulates the current state of a running script engine,
    // including the script environment and any running background commands.
    type State struct {
    	engine *Engine // the engine currently executing the script, if any
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 31 20:33:02 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  10. src/internal/coverage/cformat/format.go

    	// maps function to index in slice above (index acts as function ID)
    	funcTable map[fnfile]uint32
    
    	// A table storing coverage counts for each coverable unit.
    	unitTable map[extcu]uint32
    }
    
    // extcu encapsulates a coverable unit within some function.
    type extcu struct {
    	fnfid uint32 // index into p.funcs slice
    	coverage.CoverableUnit
    }
    
    // fnfile is a function-name/file-name tuple.
    type fnfile struct {
    	file  string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.7K bytes
    - Viewed (0)
Back to top