Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 589 for Concept (0.13 sec)

  1. staging/src/k8s.io/api/coordination/v1beta1/generated.proto

    import "k8s.io/apimachinery/pkg/runtime/schema/generated.proto";
    
    // Package-wide variables from generator "generated".
    option go_package = "k8s.io/api/coordination/v1beta1";
    
    // Lease defines a lease concept.
    message Lease {
      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/file/FilePermissions.java

     */
    
    package org.gradle.api.file;
    
    
    /**
     * Describes file and directory access permissions for all classes of system users.
     * <p>
     * Follows the style of Unix file permissions, based on the concept of file ownership.
     * <p>
     * Permissions are grouped into 3 distinct categories (representing different classes of users):
     * <ul>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 12:31:43 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. pkg/log/logr.go

    // libraries, namely Kubernetes/klog, that use logr, to use our standard logging.
    // This enables standard formatting, scope filtering, and options. The logr
    // interface does not have a concept of Debug/Info/Warn/Error as we do. Instead,
    // logging is based on Verbosity levels, where 0 is the most important. We treat
    // levels 0-3 as info level and 4+ as debug; there are no warnings. This
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/reflect/GradleStandardJavaFileManager.java

                // if the implicit files change.
                //
                // This implementation of hasLocation() pretends that the JavaFileManager
                // has no concept of a source path.
                if (location.equals(StandardLocation.SOURCE_PATH)) {
                    return false;
                }
            }
            return super.hasLocation(location);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/coordination/v1beta1/types.go

    // +k8s:prerelease-lifecycle-gen:introduced=1.12
    // +k8s:prerelease-lifecycle-gen:deprecated=1.19
    // +k8s:prerelease-lifecycle-gen:replacement=coordination.k8s.io,v1,Lease
    
    // Lease defines a lease concept.
    type Lease struct {
    	metav1.TypeMeta `json:",inline"`
    	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 16 16:45:58 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-typed-test.h

    // different types any number of times, in any number of translation
    // units.
    //
    // If you are designing an interface or concept, you can define a
    // suite of type-parameterized tests to verify properties that any
    // valid implementation of the interface/concept should have.  Then,
    // each implementation can easily instantiate the test suite to verify
    // that it conforms to the requirements, without having to write
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10K bytes
    - Viewed (0)
  7. src/os/dir_unix.go

    		d.bufp += int(reclen)
    		ino, ok := direntIno(rec)
    		if !ok {
    			break
    		}
    		// When building to wasip1, the host runtime might be running on Windows
    		// or might expose a remote file system which does not have the concept
    		// of inodes. Therefore, we cannot make the assumption that it is safe
    		// to skip entries with zero inodes.
    		if ino == 0 && runtime.GOOS != "wasip1" {
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 20:11:45 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/dependency_constraints.adoc

    It's quite common that issues with dependency management are about _transitive dependencies_.
    Often developers incorrectly fix transitive dependency issues by adding _direct dependencies_.
    To avoid this, Gradle provides the concept of _dependency constraints_.
    
    [[sec:adding-constraints-transitive-deps]]
    == Adding constraints on transitive dependencies
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/AbstractVariantBackedConfigurationMetadata.java

            // Forced dependencies are only supported for enforced platforms, so it is currently hardcoded.
            // Should we want to add this as a first class concept to Gradle metadata, then it should be available on the component variant
            // metadata as well.
            boolean forcedDependencies = PlatformSupport.hasForcedDependencies(variant);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/hash/HashFunction.java

     * number called a <i>hash code</i>.
     *
     * <h3>Definition</h3>
     *
     * <p>Unpacking this definition:
     *
     * <ul>
     *   <li><b>block of data:</b> the input for a hash function is always, in concept, an ordered byte
     *       array. This hashing API accepts an arbitrary sequence of byte and multibyte values (via
     *       {@link Hasher}), but this is merely a convenience; these are always translated into raw
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 25 18:22:59 UTC 2021
    - 10.9K bytes
    - Viewed (0)
Back to top