Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,528 for unknownI (0.15 sec)

  1. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.cc

          }
        } else {
          // Unknown write.
          for (auto& [id, info] : per_resource_access_info_) {
            if (op_side_effect_collector_.IsOnlySelfDependent(id)) {
              // For self-dependent-only ID, clear unknown access tracking (the new
              // unknown write is not tracked by any other access). Note that we
              // cannot delete the access info because the new unknown write
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  2. maven-embedder/src/main/java/org/apache/maven/cli/CLIReportingUtils.java

                            + System.getProperty("maven.home", "<unknown Maven " + "home>")))
                    .append(ls);
            version.append("Java version: ")
                    .append(System.getProperty("java.version", "<unknown Java version>"))
                    .append(", vendor: ")
                    .append(System.getProperty("java.vendor", "<unknown vendor>"))
                    .append(", runtime: ")
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/runtime/embedded_test.go

    		t.Fatalf("unexpected error: %v", err)
    	}
    
    	// we want DecodeList to set type meta if possible, even on runtime.Unknown objects
    	internal.Items[2].(*runtime.Unknown).TypeMeta = runtime.TypeMeta{Kind: "OtherTest", APIVersion: "unknown.group/unknown"}
    	if e, a := internal.Items, list; !reflect.DeepEqual(e, a) {
    		t.Errorf("mismatched decoded: %s", diff.ObjectGoPrintSideBySide(e, a))
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 06 16:07:10 UTC 2020
    - 9.2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyBrokenDescriptorIntegrationTest.groovy

        }
    
        def "reports Ivy descriptor with artifact mapped to unknown configuration"() {
            given:
            buildFile << """
    dependencies {
        compile 'group:projectA:1.2'
    }
    """
    
            and:
            def module = ivyHttpRepo.module('group', 'projectA', '1.2').artifact(conf: 'default,unknown').publish()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  5. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/use/SettingsScriptPluginIntegrationSpec.groovy

        }
    
        def "plugin with an unknown identifier in a plugins management block - #settingScriptExtension"() {
            given:
            file("settings$settingScriptExtension") << use
    
            when:
            fails 'help'
    
            then:
            errorOutput.contains("Plugin [id: 'unknown', version: '1.0'] was not found in any of the following sources:")
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  6. test/typeswitch.go

    		default:
    			assert(false, "unknown")
    		}
    	}
    
    	// boolean switch (has had bugs in past; worth writing down)
    	switch {
    	case true:
    		assert(true, "switch 2 bool")
    	default:
    		assert(false, "switch 2 unknown")
    	}
    
    	switch true {
    	case true:
    		assert(true, "switch 3 bool")
    	default:
    		assert(false, "switch 3 unknown")
    	}
    
    	switch false {
    	case false:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:48:19 UTC 2012
    - 1.8K bytes
    - Viewed (0)
  7. test/fixedbugs/issue23609.go

    	t2
    }
    
    var (
    	_ = t2{t1f1: 600} // ERROR "cannot use promoted field t1.t1f1 in struct literal of type t2|unknown field"
    	_ = t3{t1f2: 800} // ERROR "cannot use promoted field t2.t1.t1f2 in struct literal of type t3|unknown field"
    	_ = t3{t2f1: 900} // ERROR "cannot use promoted field t2.t2f1 in struct literal of type t3|unknown field"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 09 23:59:57 UTC 2020
    - 637 bytes
    - Viewed (0)
  8. pkg/probe/probe.go

    	Success Result = "success"
    	// Warning Result. Logically success, but with additional debugging information attached.
    	Warning Result = "warning"
    	// Failure Result
    	Failure Result = "failure"
    	// Unknown Result
    	Unknown Result = "unknown"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 03:20:50 UTC 2019
    - 966 bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/compatibility/CoverageContext.java

        DEFAULT("default"), LATEST("latest"), PARTIAL("partial"), FULL("all"), UNKNOWN(null);
    
        public final String selector;
    
        CoverageContext(String selector) {
            this.selector = selector;
        }
    
        static CoverageContext from(String requested) {
            for (CoverageContext context : values()) {
                if (context != UNKNOWN && context.selector.equals(requested)) {
                    return context;
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/version/VisualStudioVersionDeterminerTest.groovy

            and:
            metadata.installDir == dir2
            metadata.compatibility == LEGACY
            metadata.visualCppDir == new File(dir2, "VC")
            metadata.visualCppVersion == VersionNumber.UNKNOWN
            metadata.version == VersionNumber.UNKNOWN
        }
    
        def "can determine VS2017 metadata from installation directory when not found in command line results"() {
            def dir1 = tmpDir.createDir("dir1")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.1K bytes
    - Viewed (0)
Back to top