Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 531 for easy (0.04 sec)

  1. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/tasks/internal/PropertyValidationAccess.java

    import org.gradle.internal.state.DefaultManagedFactoryRegistry;
    
    import javax.annotation.Nullable;
    import java.lang.reflect.Modifier;
    import java.util.List;
    
    /**
     * Class for easy access to property validation from the validator task.
     */
    @NonNullApi
    public class PropertyValidationAccess {
        private static final PropertyValidationAccess INSTANCE = new PropertyValidationAccess();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  2. src/slices/slices.go

    	// v are the values copied in from v.
    	// b and c are the values from s that are shifted up in index.
    	// d are the values that get overwritten, never to be seen again.
    
    	if !overlaps(v, s[i+m:]) {
    		// Easy case - v does not overlap either the c or d regions.
    		// (It might be in some of a or b, or elsewhere entirely.)
    		// The data we copy up doesn't write to v at all, so just do it.
    
    		copy(s[i+m:], s[i:])
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 29 14:01:59 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  3. pkg/config/host/names.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package host
    
    import (
    	"sort"
    	"strings"
    )
    
    // Names is a collection of Name; it exists so it's easy to sort hostnames consistently across Istio.
    // In a few locations we care about the order hostnames appear in Envoy config: primarily HTTP routes, but also in
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 01 19:19:22 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  4. docs/en/overrides/main.html

        </div>
      </div>
      <div id="announce-right" style="position: relative;">
        <div class="item">
          <a title="CryptAPI: Your easy to use, secure and privacy oriented payment gateway." style="display: block; position: relative;" href="https://cryptapi.io/" target="_blank">
            <span class="sponsor-badge">sponsor</span>
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 30 13:28:20 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/biasedsparsemap.go

    // where J might be somewhat larger than zero (and K-J is probably much smaller than J).
    // (The motivating use case is the line numbers of statements for a single function.)
    // Not all features of a SparseMap are exported, and it is also easy to treat a
    // biasedSparseMap like a SparseSet.
    type biasedSparseMap struct {
    	s     *sparseMap
    	first int
    }
    
    // newBiasedSparseMap returns a new biasedSparseMap for values between first and last, inclusive.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:41:06 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  6. docs/bucket/versioning/DESIGN.md

    | [EOF] | |
    
    ### v1.1+
    
    Version 1.1 added inline data, which will be placed after the metadata.
    
    Therefore, the metadata is wrapped as a binary array for easy skipping.
    
    | Entry          | Encoding       | Content
    | ---------------|----------------|----------------------------------------
    | xlHeader       | [4]byte        | `'X', 'L', '2', ' '`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jul 17 15:43:14 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/build-organization/composite-builds/hierarchical-multirepo/README.adoc

    ====
    
    === Removing the local module source
    
    With module artifacts available in a repository, we can now remove the module sources from the build. Since the composite is configured to automatically load available modules, this is as easy as deleting one or more module directories.
    
    ```
    rm -r modules/string-utils
    gradle run
    ```
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  8. maven-model-builder/src/main/java/org/apache/maven/model/building/FilterModelBuildingRequest.java

    import org.apache.maven.model.resolution.ModelResolver;
    import org.apache.maven.model.resolution.WorkspaceModelResolver;
    
    /**
     * A model building request that delegates all methods invocations to another request, meant for easy transformations by
     * subclassing.
     *
     */
    class FilterModelBuildingRequest implements ModelBuildingRequest {
    
        protected ModelBuildingRequest request;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  9. .github/ISSUE_TEMPLATE/feature_enhancement_request.yaml

            a full-time Guava team member. [Feedback](https://stackoverflow.com/a/4543114) from our
            users indicates that they really appreciate Guava's high power-to-weight ratio. It's
            important to us to keep Guava as easy to use and understand as we can. That means boiling
            features down to compact but powerful abstractions, and controlling feature bloat carefully.
    
      - type: textarea
        attributes:
          label: API(s)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Nov 17 18:47:47 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  10. common-protos/k8s.io/apimachinery/pkg/runtime/generated.proto

    // to deal with the API objects from a plug-in. Unknown objects still have functioning
    // TypeMeta features-- kind, version, etc.
    // TODO: Make this object have easy access to field based accessors and settors for
    // metadata and field mutatation.
    //
    // +k8s:deepcopy-gen=true
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    // +protobuf=true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top