Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 153 for _encapsulate (0.22 sec)

  1. pkg/registry/core/service/portallocator/operation.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package portallocator
    
    // Encapsulates the semantics of a port allocation 'transaction':
    // It is better to leak ports than to double-allocate them,
    // so we allocate immediately, but defer release.
    // On commit we best-effort release the deferred releases.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  2. android/guava-testlib/src/com/google/common/collect/testing/google/AbstractMultimapTester.java

            .sampleValues();
      }
    
      @Override
      protected Collection<Entry<K, V>> actualContents() {
        return multimap.entries();
      }
    
      // TODO: dispose of this once collection is encapsulated.
      @Override
      @CanIgnoreReturnValue
      protected M resetContainer(M newContents) {
        multimap = super.resetContainer(newContents);
        return multimap;
      }
    
      @CanIgnoreReturnValue
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 6K bytes
    - Viewed (0)
  3. ci/official/utilities/setup.sh

    # Therefore, "tfrun" commands cannot include pipes -- which is
    # probably for the better. If a pipe is necessary for something, it is probably
    # complex. Write a well-documented script under utilities/ to encapsulate the
    # functionality instead.
    tfrun() { "$@"; }
    
    # Run all "tfrun" commands under Docker. See setup_docker.sh for details
    if [[ "$TFCI_DOCKER_ENABLE" == 1 ]]; then
      source ./ci/official/utilities/setup_docker.sh
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 26 00:33:34 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/cli-runtime/pkg/resource/query_param_verifier_v3.go

    	return &queryParamVerifierV3{
    		finder:     NewCRDFinder(CRDFromDynamic(dynamicClient)),
    		root:       openapi3.NewRoot(oapiClient),
    		queryParam: queryParam,
    	}
    }
    
    // queryParamVerifierV3 encapsulates info necessary to determine if
    // the queryParam is a parameter for the Patch endpoint for a
    // passed GVK.
    type queryParamVerifierV3 struct {
    	finder     CRDFinder
    	root       openapi3.Root
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 01:23:27 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/plugin_basics.adoc

    Custom or local plugins are developed and used within a specific project or organization.
    These plugins are not shared publicly and are tailored to the specific needs of the project or organization.
    
    Local plugins can encapsulate common build logic, provide integrations with internal systems or tools, or abstract complex functionality into reusable components.
    
    Gradle provides users with the ability to develop custom plugins using APIs.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 00:36:58 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/telemetry/internal/upload/run.go

    			log.Printf("upload recover: %v", err)
    		}
    	}()
    	uploader, err := newUploader(config)
    	if err != nil {
    		return err
    	}
    	defer uploader.Close()
    	return uploader.Run()
    }
    
    // uploader encapsulates a single upload operation, carrying parameters and
    // shared state.
    type uploader struct {
    	// config is used to select counters to upload.
    	config        *telemetry.UploadConfig //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:12:15 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/project/ProjectState.java

    import javax.annotation.Nullable;
    import javax.annotation.concurrent.ThreadSafe;
    import java.io.File;
    import java.util.Set;
    import java.util.function.Consumer;
    import java.util.function.Function;
    
    /**
     * Encapsulates the identity and state of a particular project in a build tree.
     */
    @ThreadSafe
    public interface ProjectState extends ModelContainer<ProjectInternal> {
        DisplayName getDisplayName();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 20 08:25:03 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  8. src/internal/coverage/defs.go

    //  | <uleb128> file: S0 (index into string table)
    //  | <unit 0>:  S0   L15    L19   5
    //  ---end-----------
    
    // The following types and constants used by the meta-data encoder/decoder.
    
    // FuncDesc encapsulates the meta-data definitions for a single Go function.
    // This version assumes that we're looking at a function before inlining;
    // if we want to capture a post-inlining view of the world, the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 12:51:16 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_server_journal.go

    			return
    		}
    		defer gz.Close()
    		out = gz
    	}
    	nlq.Copy(out)
    }
    
    // nodeLogQuery encapsulates the log query request
    type nodeLogQuery struct {
    	// Services are the list of services to be queried
    	Services []string
    	// Files are the list of files
    	Files []string
    	options
    }
    
    // options encapsulates the query options for services
    type options struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 26 18:56:28 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/writing_plugins.adoc

    == Convention Plugins
    
    Convention plugins are a way to encapsulate and reuse common build logic in Gradle.
    They allow you to define a set of conventions for a project, and then apply those conventions to other projects or modules.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 00:36:58 UTC 2024
    - 7.3K bytes
    - Viewed (0)
Back to top