Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 232 for normalization (0.19 sec)

  1. platforms/jvm/normalization-java/src/main/java/org/gradle/internal/normalization/java/impl/TypedMember.java

     * 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 org.gradle.internal.normalization.java.impl;
    
    import com.google.common.collect.ComparisonChain;
    
    public abstract class TypedMember extends AnnotatableMember {
    
        private final String typeDesc;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. platforms/jvm/normalization-java/src/main/java/org/gradle/internal/normalization/java/impl/InnerClassMember.java

     * 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 org.gradle.internal.normalization.java.impl;
    
    public class InnerClassMember extends AccessibleMember implements Comparable<InnerClassMember> {
    
        private final String outerName;
        private final String innerName;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/tasks/ClasspathNormalizer.java

     *
     * Compared to the default behavior this normalizer keeps the order of any root files,
     * but ignores the order and timestamps of files in directories and ZIP/JAR files.
     *
     * This normalization applies to not only files directly on the classpath, but also
     * to any ZIP/JAR files found inside directories or nested inside other ZIP/JAR files.
     *
     * @see org.gradle.api.tasks.Classpath
     *
     * @since 4.3
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jul 28 21:23:55 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  4. platforms/jvm/normalization-java/src/main/java/org/gradle/internal/normalization/java/impl/Member.java

     * 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 org.gradle.internal.normalization.java.impl;
    
    import com.google.common.collect.ComparisonChain;
    
    import static com.google.common.base.Preconditions.checkNotNull;
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/PublicApi.kt

            "org/gradle/ide/**",
            "org/gradle/ivy/**",
            "org/gradle/jvm/**",
            "org/gradle/language/**",
            "org/gradle/maven/**",
            "org/gradle/nativeplatform/**",
            "org/gradle/normalization/**",
            "org/gradle/platform/**",
            "org/gradle/plugin/devel/**",
            "org/gradle/plugin/use/*",
            "org/gradle/plugin/management/*",
            "org/gradle/plugins/**",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:53 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/artifacts/transform/TransformParameters.java

     *     All getters must be annotated with an input annotation like {@link org.gradle.api.tasks.Input} or {@link org.gradle.api.tasks.InputFiles}.
     *     Normalization annotations such as {@link org.gradle.api.tasks.PathSensitive} or {@link org.gradle.api.tasks.Classpath} can be used as well.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 19 15:28:07 UTC 2022
    - 2K bytes
    - Viewed (0)
  7. platforms/jvm/normalization-java/src/main/java/org/gradle/internal/normalization/java/impl/FieldMember.java

     * 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 org.gradle.internal.normalization.java.impl;
    
    import com.google.common.collect.Ordering;
    import org.objectweb.asm.Type;
    
    import java.lang.reflect.Modifier;
    
    public class FieldMember extends TypedMember implements Comparable<FieldMember> {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/text/unicode/norm/normalize.go

    	"golang.org/x/text/transform"
    )
    
    // A Form denotes a canonical representation of Unicode code points.
    // The Unicode-defined normalization and equivalence forms are:
    //
    //	NFC   Unicode Normalization Form C
    //	NFD   Unicode Normalization Form D
    //	NFKC  Unicode Normalization Form KC
    //	NFKD  Unicode Normalization Form KD
    //
    // For a Form f, this documentation uses the notation f(x) to mean
    // the bytes or string x converted to the given form.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:26:23 UTC 2022
    - 14.9K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/artifacts/transform/CacheableTransform.java

     *
     * <p>Only an artifact transform that produces reproducible and relocatable outputs should be marked with {@code CacheableTransform}.</p>
     *
     * <p>
     *     Normalization must be specified for each file parameter of a cacheable transform.
     *     For example:
     * </p>
     * <pre class='autoTested'>
     * import org.gradle.api.artifacts.transform.TransformParameters;
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 02 13:10:28 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/internal/symbolz/symbolz.go

    		return url.String()
    	}
    
    	return ""
    }
    
    // symbolizeMapping symbolizes locations belonging to a Mapping by querying
    // a symbolz handler. An offset is applied to all addresses to take care of
    // normalization occurred for merged Mappings.
    func symbolizeMapping(source string, offset int64, syms func(string, string) ([]byte, error), m *profile.Mapping, p *profile.Profile) error {
    	// Construct query of addresses to symbolize.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 15:18:01 UTC 2019
    - 5.4K bytes
    - Viewed (0)
Back to top