Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 232 for normalization (0.34 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/internal/tasks/SnapshotTaskInputsOperationIntegrationTest.groovy

                roots.empty
                normalization == "COMPILE_CLASSPATH"
                attributes == ['DIRECTORY_SENSITIVITY_DEFAULT', 'FINGERPRINTING_STRATEGY_COMPILE_CLASSPATH', 'LINE_ENDING_SENSITIVITY_DEFAULT']
            }
    
            with(aCompileJava["options.sourcepath"] as Map<String, ?>) {
                hash != null
                roots.empty
                normalization == "RELATIVE_PATH"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  2. platforms/jvm/normalization-java/src/main/java/org/gradle/internal/normalization/java/impl/AccessibleMember.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 AccessibleMember extends Member {
    
        private final int access;
    
        public AccessibleMember(int access, String name) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. platforms/jvm/normalization-java/src/main/java/org/gradle/internal/normalization/java/impl/AnnotationValue.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 abstract class AnnotationValue<V> extends Member implements Comparable<AnnotationValue<?>> {
    
        private final V value;
    
        public AnnotationValue(String name, V value) {
            super(name);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 1K bytes
    - Viewed (0)
  4. platforms/jvm/normalization-java/src/main/java/org/gradle/internal/normalization/java/impl/AnnotationAnnotationValue.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 AnnotationAnnotationValue extends AnnotationValue<AnnotationMember> {
    
        public AnnotationAnnotationValue(String name, AnnotationMember value) {
            super(name, value);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 867 bytes
    - Viewed (0)
  5. tests/integration/security/fuzz/main_test.go

    }
    
    func setupConfig(ctx resource.Context, cfg *istio.Config) {
    	if cfg == nil {
    		return
    	}
    
    	cfg.ControlPlaneValues = `
    meshConfig:
      accessLogFile: /dev/stdout
      pathNormalization:
        normalization: DECODE_AND_MERGE_SLASHES
    `
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 18 02:28:30 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  6. maven-model-builder/src/main/java/org/apache/maven/model/normalization/DefaultModelNormalizer.java

     * KIND, either express or implied.  See the License for the
     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.model.normalization;
    
    import javax.inject.Named;
    import javax.inject.Singleton;
    
    import java.util.ArrayList;
    import java.util.Collections;
    import java.util.LinkedHashMap;
    import java.util.List;
    import java.util.Map;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Sep 14 11:48:15 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  7. platforms/jvm/normalization-java/src/main/java/org/gradle/internal/normalization/java/impl/package-info.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    @NonNullApi
    package org.gradle.internal.normalization.java.impl;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 716 bytes
    - Viewed (0)
  8. platforms/jvm/normalization-java/src/main/java/org/gradle/internal/normalization/java/impl/SimpleAnnotationValue.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 SimpleAnnotationValue extends AnnotationValue<Object> {
    
        public SimpleAnnotationValue(String name, Object value) {
            super(name, value);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 839 bytes
    - Viewed (0)
  9. .idea/scopes/Gradle_public_API.xml

    t..*||src:org.gradle.deployment..*||src:org.gradle.external.javadoc..*||src:org.gradle.ide..*||src:org.gradle.ivy..*||src:org.gradle.jvm..*||src:org.gradle.language..*||src:org.gradle.maven..*||src:org.gradle.nativeplatform..*||src:org.gradle.normalization..*||src:org.gradle.platform..*||src:org.gradle.plugin.devel..*||src:org.gradle.plugin.use..*||src:org.gradle.plugin.management..*||src:org.gradle.plugins..*||src:org.gradle.process..*||src:org.gradle.testfixtures..*||src:org.gradle.testing.jac...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 29 12:25:53 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  10. platforms/jvm/normalization-java/src/main/java/org/gradle/internal/normalization/java/impl/ArrayAnnotationValue.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 ArrayAnnotationValue extends AnnotationValue<AnnotationValue<?>[]> {
    
        public ArrayAnnotationValue(String name, AnnotationValue<?>[] value) {
            super(name, value);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 865 bytes
    - Viewed (0)
Back to top