Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of about 10,000 for Of (0.06 sec)

  1. licenses/github.com/klauspost/compress/LICENSE

    THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
    OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    
    -----------------
    
    Files: s2/cmd/internal/filepathx/*
    
    Copyright 2016 The filepathx Authors
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 30 19:13:15 UTC 2021
    - 16.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/autoscaling/v2beta2/types.go

    	// averageValue is the target value of the average of the
    	// metric across all relevant pods (as a quantity)
    	// +optional
    	AverageValue *resource.Quantity `json:"averageValue,omitempty" protobuf:"bytes,3,opt,name=averageValue"`
    
    	// averageUtilization is the target value of the average of the
    	// resource metric across all relevant pods, represented as a percentage of
    	// the requested value of the resource for the pods.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:27 UTC 2023
    - 28.4K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/SingletonImmutableTable.java

        return containsColumn(columnKey)
            ? ImmutableMap.of(singleRowKey, singleValue)
            : ImmutableMap.<R, V>of();
      }
    
      @Override
      public ImmutableMap<C, Map<R, V>> columnMap() {
        return ImmutableMap.of(singleColumnKey, (Map<R, V>) ImmutableMap.of(singleRowKey, singleValue));
      }
    
      @Override
      public ImmutableMap<R, Map<C, V>> rowMap() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 30 21:54:06 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  4. platforms/jvm/plugins-jvm-test-suite/src/main/java/org/gradle/api/plugins/jvm/JvmTestSuite.java

    import org.gradle.api.tasks.Nested;
    import org.gradle.api.tasks.SourceSet;
    import org.gradle.testing.base.TestSuite;
    
    /**
     * A test suite is a collection of JVM-based tests.
     * <p>
     * Each test suite consists of
     * <ul>
     *     <li>A {@link SourceSet}</li>
     *     <li>A set of {@link JvmComponentDependencies compile and runtime dependencies}</li>
     *     <li>One or more {@link JvmTestSuiteTarget targets}</li>
     *     <li>A testing framework</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 7K bytes
    - Viewed (0)
  5. pkg/apis/authentication/types.go

    // TokenRequestSpec contains client provided parameters of a token request.
    type TokenRequestSpec struct {
    	// Audiences are the intended audiences of the token. A recipient of a
    	// token must identify themself with an identifier in the list of
    	// audiences of the token, and otherwise should reject the token. A
    	// token issued for multiple audiences may be used to authenticate
    	// against any of the audiences listed but implies a high degree of
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 05:33:37 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/file/ConfigurableFilePermissions.java

     */
    
    package org.gradle.api.file;
    
    import org.gradle.api.Action;
    
    /**
     * Provides the means of specifying file and directory access permissions for all classes of system users.
     * <p>
     * For details on classes of users and file/directory permissions see {@link FilePermissions}.
     * <p>
     * An example usage of this functionality would be configuring a copy task and explicitly specifying the destination file permissions:
     * <pre>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 12:31:43 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelResolverException.java

        }
    
        /**
         * Gets the group id of the unresolvable model.
         *
         * @return The group id of the unresolvable model, can be empty but never {@code null}.
         */
        public String getGroupId() {
            return groupId;
        }
    
        /**
         * Gets the artifact id of the unresolvable model.
         *
         * @return The artifact id of the unresolvable model, can be empty but never {@code null}.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  8. licenses/github.com/containerd/typeurl/v2/LICENSE

          incidental, or consequential damages of any character arising as a
          result of this License or out of the use or inability to use the
          Work (including but not limited to damages for loss of goodwill,
          work stoppage, computer failure or malfunction, or any and all
          other commercial damages or losses), even if such Contributor
          has been advised of the possibility of such damages.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 24 18:16:35 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  9. licenses/sigs.k8s.io/yaml/LICENSE

    (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
    OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    
    # The forked go-yaml.v3 library under this project is covered by two
    different licenses (MIT and Apache):
    
    #### MIT License ####
    
    The following files were ported to Go from C files of libyaml, and thus
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 19:53:28 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/networking/v1/types.go

    	// is case sensitive and done on a path element by element basis. A path
    	// element refers to the list of labels in the path split by the '/'
    	// separator. A request is a match for path p if every p is an element-wise
    	// prefix of p of the request path. Note that if the last element of the
    	// path is a substring of the last element in request path, it is not a
    	// match (e.g. /foo/bar matches /foo/bar/baz, but does not match
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 30.2K bytes
    - Viewed (0)
Back to top