Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 2,632 for Result (0.15 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/tests/bridge/optimize.mlir

      ) -> tensor<?x2x2x1xi32> {
      // CHECK-DAG: %[[conv:.*]] = mhlo.convolution
      // CHECK-DAG: %[[combined:.*]] = chlo.broadcast_add %[[zp_offset:.*]], %[[bias:.*]]
      // CHECK-DAG: %[[result:.*]] = chlo.broadcast_add %[[conv]], %[[combined]]
      // CHECK: return %[[result]]
      %0 = mhlo.convolution(%lhs, %rhs)
          dim_numbers = [b, 0, 1, f]x[0, 1, i, o]->[b, 0, 1, f],
          window = {stride = [1, 1], pad = [[0, 0], [0, 0]],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Feb 24 02:26:47 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/DefaultVersionedComponentChooser.java

                case Unknown:
                case Missing:
                    result.noMatchFound();
                    break;
                case Failed:
                    result.failed(metaDataResult.getFailure());
                    break;
                default:
                    throw new IllegalStateException("Unexpected meta-data resolution result.");
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 13 17:41:33 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  3. cmd/object_api_suite_test.go

    		}
    		if result.Objects[1].Name != "newPrefix2" {
    			t.Errorf("%s: Expected the object name to be `%s`, but instead found `%s`", instanceType, "newPrefix", result.Objects[1].Name)
    		}
    		if result.Objects[2].Name != "obj0" {
    			t.Errorf("%s: Expected the object name to be `%s`, but instead found `%s`", instanceType, "newPrefix", result.Objects[2].Name)
    		}
    		if result.Objects[3].Name != "obj1" {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  4. maven-api-impl/src/test/java/org/apache/maven/internal/impl/standalone/RepositorySystemSupplier.java

            HashMap<String, NamedLockFactory> result = new HashMap<>();
            result.put(NoopNamedLockFactory.NAME, new NoopNamedLockFactory());
            result.put(LocalReadWriteLockNamedLockFactory.NAME, new LocalReadWriteLockNamedLockFactory());
            result.put(LocalSemaphoreNamedLockFactory.NAME, new LocalSemaphoreNamedLockFactory());
            result.put(FileLockNamedLockFactory.NAME, new FileLockNamedLockFactory());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 43.7K bytes
    - Viewed (0)
  5. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/MavenRepositorySystemSupplier.java

            HashMap<String, NamedLockFactory> result = new HashMap<>();
            result.put(NoopNamedLockFactory.NAME, new NoopNamedLockFactory());
            result.put(LocalReadWriteLockNamedLockFactory.NAME, new LocalReadWriteLockNamedLockFactory());
            result.put(LocalSemaphoreNamedLockFactory.NAME, new LocalSemaphoreNamedLockFactory());
            result.put(FileLockNamedLockFactory.NAME, new FileLockNamedLockFactory());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 45.5K bytes
    - Viewed (0)
  6. pkg/controller/job/indexed_job_utils.go

    		for ; candidate < completions && len(result) < count && candidate < sInterval.First; candidate++ {
    			result = append(result, candidate)
    		}
    		if candidate < sInterval.Last+1 {
    			candidate = sInterval.Last + 1
    		}
    	}
    	for ; candidate < completions && len(result) < count; candidate++ {
    		result = append(result, candidate)
    	}
    	return result
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 00:44:53 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/integTest/groovy/org/gradle/swiftpm/SwiftPackageManagerIncrementalExportIntegrationTest.groovy

            when:
            file("app/build.gradle").text = """"""
            run("generateSwiftPmManifest")
    
            then:
            result.assertTaskNotSkipped(":generateSwiftPmManifest")
    
            when:
            run("generateSwiftPmManifest")
    
            then:
            result.assertTaskSkipped(":generateSwiftPmManifest")
        }
    
        @ToBeFixedForConfigurationCache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  8. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/BuildCacheStep.java

                return result;
            } catch (Exception storeFailure) {
                return new AfterExecutionResult(Result.failed(storeFailure, result.getDuration()), result.getAfterExecutionOutputState().orElse(null));
            }
        }
    
        /**
         * Stores the results of the given work in the build cache, unless storing was disabled for this execution or work was untracked.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 13:41:13 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/ComparisonChain.java

              return classify(Booleans.compare(left, right));
            }
    
            ComparisonChain classify(int result) {
              return (result < 0) ? LESS : (result > 0) ? GREATER : ACTIVE;
            }
    
            @Override
            public int result() {
              return 0;
            }
          };
    
      private static final ComparisonChain LESS = new InactiveComparisonChain(-1);
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 21 17:28:11 UTC 2022
    - 11.2K bytes
    - Viewed (0)
  10. testing/integ-test/src/integTest/groovy/org/gradle/integtests/ProjectLoadingIntegrationTest.java

            testFile("build.gradle").write("// empty");
    
            ExecutionFailure result = inTestDirectory().withTasks("test").runWithFailure();
            result.assertThatDescription(startsWith("Multiple projects in this build have project directory"));
    
            result = usingProjectDir(getTestDirectory()).withTasks("test").runWithFailure();
            result.assertThatDescription(startsWith("Multiple projects in this build have project directory"));
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 18K bytes
    - Viewed (0)
Back to top