Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 237 for _ignored (0.13 sec)

  1. tensorflow/compiler/mlir/tensorflow_to_stablehlo/tf_to_stablehlo.h

    //  exported_model_signatures: List of exported model signatures (strings) to
    //    convert.
    //  tag_names: List of tag names (strings) used for loading SavedModel.
    //    Ignored for MLIR input.
    //  input_arg_shapes_str:  A string representation of input argument shapes for
    //    'main' entry-point, separating tensors with ':', dimension with ',', and
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/fingerprint/DirectorySensitivity.java

        /**
         * Whatever the default behavior is for the given fingerprinter.  For some fingerprinters, the
         * default behavior is to fingerprint directories, for others, they ignore directories by default.
         */
        DEFAULT(snapshot -> true),
        /**
         * Ignore directories
         */
        IGNORE_DIRECTORIES(snapshot -> snapshot.getType() != FileType.Directory);
    
        @SuppressWarnings("ImmutableEnumChecker")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:34 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/translate/export_tf_dialect_op.h

    // name should be unique to the graph it is being inserted to. If the
    // `ignore_unregistered_attrs` argument is set to true, the attributes which are
    // not in the op registry will be ignored. If the `ignore_unregistered_attrs`
    // argument is not set to true, _output_shapes attribute is added to nodes with
    // ShapedType for the leading values with ShapedType in the results of the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. samples/bookinfo/src/reviews/Dockerfile

    #   limitations under the License.
    
    FROM gradle:8.6.0-jdk8 as builder
    
    # Not sure why but we need root to build. Ignore lint error, this is for a multistage builder so it doesn't matter.
    # hadolint ignore=DL3002
    USER 0
    COPY . /home/gradle
    
    RUN gradle build
    
    FROM open-liberty:24.0.0.1-kernel-slim-java17-openj9
    
    ENV SERVERDIRNAME reviews
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 23:40:57 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. docs/auditlog/auditlog-echo.go

    //go:build ignore
    // +build ignore
    
    // Copyright (c) 2015-2024 MinIO, Inc.
    //
    // This file is part of MinIO Object Storage stack
    //
    // This program is free software: you can redistribute it and/or modify
    // it under the terms of the GNU Affero General Public License as published by
    // the Free Software Foundation, either version 3 of the License, or
    // (at your option) any later version.
    //
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 21:31:13 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. pom.xml

    						<id>check-compatibility</id>
    						<goals>
    							<goal>check</goal>
    						</goals>
    					</execution>
    				</executions>
    				<configuration>
    					<failOnError>false</failOnError>
    					<ignored>
    						<difference>
    							<!-- seems to be a clirr bug that it cannot handle the different inherited 
    								return types -->
    							<className>**</className>
    							<differenceType>7006</differenceType>
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun May 26 04:00:03 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheCleanupIntegrationTest.groovy

    import org.gradle.test.fixtures.ConcurrentTestUtil
    import org.gradle.test.fixtures.file.TestFile
    import spock.lang.Ignore
    
    
    class ConfigurationCacheCleanupIntegrationTest
        extends AbstractConfigurationCacheIntegrationTest
        implements FileAccessTimeJournalFixture {
    
        @Ignore('https://github.com/gradle/gradle-private/issues/3121')
        def "cleanup deletes old entries"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2K bytes
    - Viewed (0)
  8. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/BasicTypeInitIntegrationTest.groovy

            then:
            gitignoreFile.file
            gitignoreFile.text == toPlatformLineSeparators("""*.class
    existingIgnores
    # Ignore Gradle project-specific cache directory
    .gradle
    
    # Ignore Gradle build output directory
    build
    """)
    
            where:
            scriptDsl << ScriptDslFixture.SCRIPT_DSLS
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:55 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r65/ToolingApiEclipseModelLifeCycleCrossVersionSpec.groovy

    import org.gradle.test.fixtures.maven.MavenFileModule
    import org.gradle.test.fixtures.maven.MavenFileRepository
    import spock.lang.Ignore
    import spock.lang.Issue
    
    @Issue('https://github.com/gradle/gradle/issues/13137')
    @Ignore
    @TargetGradleVersion(">=3.0")
    class ToolingApiEclipseModelLifeCycleCrossVersionSpec extends ToolingApiSpecification {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  10. istioctl/pkg/util/configdump/wrapper.go

    func (r *resolver) FindMessageByURL(url string) (protoreflect.MessageType, error) {
    	typ, err := r.Types.FindMessageByURL(url)
    	if err != nil {
    		// Here we ignore the error since we want istioctl to ignore unknown types due to the Envoy version change
    		msg := exprpb.Type{TypeKind: &exprpb.Type_Dyn{Dyn: &emptypb.Empty{}}}
    		return msg.ProtoReflect().Type(), nil
    	}
    	return typ, nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top