Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,101 for corerest (0.15 sec)

  1. pkg/controlplane/reconcilers/endpointsadapter_test.go

    			// No error when we need to create the Endpoints but the correct
    			// EndpointSlice already exists
    			expectedError:  nil,
    			expectedResult: endpoints1,
    			expectCreate:   []runtime.Object{endpoints1},
    			initialState:   []runtime.Object{epSlice1},
    			namespaceParam: endpoints1.Namespace,
    			endpointsParam: endpoints1,
    		},
    		"existing-endpointslice-correct": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/initialization/loadercache/ClassLoaderId.java

     * limitations under the License.
     */
    
    package org.gradle.api.internal.initialization.loadercache;
    
    import org.gradle.api.Describable;
    
    /**
     * Opaque identifier of the classloader. Needed for correct behavior of classloader invalidation.
     */
    public interface ClassLoaderId extends Describable {
        @Override
        boolean equals(Object o);
        @Override
        int hashCode();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 953 bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/CachingModuleComponentRepositoryTest.groovy

            cost == remoteAnswer
    
            where:
            remoteAnswer << MetadataFetchingCost.values()
        }
    
        def "estimates cost for missing metadata is correct (remote says #remoteAnswer, must refresh = #mustRefreshMissingModule)"() {
            def module = Mock(ModuleComponentIdentifier)
            def localAccess = repo.localAccess
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/GradleVersions.java

     */
    public class GradleVersions {
    
        private GradleVersions() {
        }
    
        // We moved the API back into internal, so this isn't really correct.
        public static final String SUPPORTS_DEPLOYMENT_REGISTRY = ">=4.2";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1011 bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/tests/compose-uniform-quantized-type.mlir

    // CHECK: return %[[DEQUANT]] : tensor<1x3x3x4xf32>
    
      // The following uniform_quantize & uniform_dequantize functions do NOT have
      // the correct body. Only the type signatures matter for testing.
      func.func private @uniform_quantize_0(%arg0: tensor<1x3x3x4xf32>, %arg1: tensor<1x1x1x1xf32>, %arg2: tensor<1x1x1x1xi8>) -> tensor<1x3x3x4xi8> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 37K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/device_conversion.mlir

    func.func @device_test(
        %arg0: tensor<3x1xf32> {tf_saved_model.index_path = [0]},
        %arg1: tensor<1x3xf32> {tf_saved_model.index_path = [0]})
          -> (tensor<3x3xf32> {tf_saved_model.index_path = []}) {
      // CHECK: {{%.*}} = corert.get_op_handler %arg0 "/device:GPU:0"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 00:18:59 UTC 2024
    - 645 bytes
    - Viewed (0)
  7. tests/count_test.go

    		t.Errorf("Count() method should get correct value, expect: %v, got %v", count, len(users))
    	}
    
    	if err := DB.Model(&User{}).Where("name = ?", user1.Name).Or("name = ?", user3.Name).Count(&count).Find(&users).Error; err != nil {
    		t.Errorf(fmt.Sprintf("Count should work, but got err %v", err))
    	}
    
    	if count != int64(len(users)) {
    		t.Errorf("Count() method should get correct value, expect: %v, got %v", count, len(users))
    	}
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Oct 30 09:15:49 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/internal/passes/mlir_to_graph_passes.td

    include "mlir/Pass/PassBase.td"
    
    def VerifyInputDialectToExecutorPass : Pass<"verify-input-dialect-to-executor-pass", "mlir::func::FuncOp"> {
      let summary = "Verify that TF dialect to executor converter receives the correct input.";
      let description = [{
        Verifies the input before exporting to TF executor. This includes checking whether the Ops are in TF functional, have device attributes & there are no tf_device.cluster_func ops.
      }];
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Dec 08 16:32:56 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  9. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/DevelocityPluginRequiredServicesIntegrationTest.groovy

        def setup() {
            settingsFile << plugin.pluginManagement() << plugin.plugins()
            plugin.publishDummyPlugin(executer)
        }
    
        def "required services are correct"() {
            given:
            buildFile << """
                def serviceRef = gradle.extensions.serviceRef
                task check {
                    doLast {
                        def service = serviceRef.get()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 10:49:16 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/SamplesRepositoriesIntegrationTest.groovy

        }
    
        @LeaksFileHandles
        @UsesSample("artifacts/defineRepository")
        def "can use repositories notation with #dsl dsl"() {
            // This test is not very strong. Its main purpose is to the for the correct syntax as we use many
            // code snippets from this build script in the user's guide.
            executer.inDirectory(sample.dir.file(dsl))
    
            expect:
            succeeds('lookup')
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top