Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 49 of 49 for restmapper (0.15 sec)

  1. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/failure/mappers/JUnitComparisonTestFailureMapper.java

                "junit.framework.ComparisonFailure",
                "org.junit.ComparisonFailure"
            );
        }
    
        @Override
        public TestFailure map(Throwable throwable, ThrowableToTestFailureMapper rootMapper) throws Exception {
            String expectedValue = invokeMethod(throwable, "getExpected", String.class);
            String actualValue = invokeMethod(throwable, "getActual", String.class);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/classanalysis/AnalyzeAndShade.kt

    import org.objectweb.asm.ClassReader
    import org.objectweb.asm.ClassWriter
    import org.objectweb.asm.commons.ClassRemapper
    import org.objectweb.asm.commons.Remapper
    import java.io.BufferedInputStream
    import java.io.File
    import java.io.FileInputStream
    import java.io.IOException
    import java.net.URI
    import java.nio.file.FileSystems
    import java.nio.file.FileVisitResult
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/failure/mappers/OpenTestAssertionFailedMapper.java

            return Collections.singletonList("org.opentest4j.AssertionFailedError");
        }
    
        @Override
        public TestFailure map(Throwable throwable, ThrowableToTestFailureMapper rootMapper) throws Exception {
            // Unwrap the expected and actual values from their ValueWrapper instances
            Object expectedValue = invokeMethod(
                invokeMethod(throwable, "getExpected"),
                "getValue"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 14:48:53 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. tests/integration/pilot/gateway_conformance_test.go

    				for _, ns := range conformanceNamespaces {
    					namespace.Claim(ctx, namespace.Config{
    						Prefix: ns,
    						Inject: false,
    					})
    				}
    			}
    
    			mapper, _ := gatewayConformanceInputs.Client.UtilFactory().ToRESTMapper()
    			c, err := client.New(gatewayConformanceInputs.Client.RESTConfig(), client.Options{
    				Scheme: kube.IstioScheme,
    				Mapper: mapper,
    			})
    			if err != nil {
    				t.Fatal(err)
    			}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 15:22:47 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  5. tests/integration/ambient/gateway_conformance_test.go

    				for _, ns := range conformanceNamespaces {
    					namespace.Claim(ctx, namespace.Config{
    						Prefix: ns,
    						Inject: false,
    					})
    				}
    			}
    
    			mapper, _ := gatewayConformanceInputs.Client.UtilFactory().ToRESTMapper()
    			c, err := client.New(gatewayConformanceInputs.Client.RESTConfig(), client.Options{
    				Scheme: kube.IstioScheme,
    				Mapper: mapper,
    			})
    			if err != nil {
    				t.Fatal(err)
    			}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/fused_kernel_matcher.cc

    // Note: This implements the fusions performed in the old Remapper Grappler
    // pass. That pass has specific cases for GPU and based on different
    // target configurations on both CPU and GPU (Intel MKL, ROCm, etc.). This MLIR
    // pass covers (some of) the general CPU case and at the moment does not account
    // for any target-specific configurations.
    
    // This pass is being ported over from the Grappler Remapper pass based on
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GroovyScriptClassCompiler.java

                    String contentHash = Hashing.hashBytes(content).toString();
                    BuildScriptRemapper remapper = new BuildScriptRemapper(visitor, origin, originalClassName, contentHash);
                    return Pair.of(entry.getPath().getParent().append(true, renamed), remapper);
                }
            });
        }
    
        @Override
        public void close() {
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:23:24 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/values_test.go

    			added := lister.Add(addition).Value()
    			if !reflect.DeepEqual(added, tc.expectAdded) {
    				t.Errorf("Expected Add to return %v but got %v", tc.expectAdded, added)
    			}
    		})
    	}
    }
    
    func TestMapper(t *testing.T) {
    	cases := []struct {
    		name           string
    		unstructured   map[string]interface{}
    		schema         *schema.Structural
    		propertySchema func(key string) (*schema.Structural, bool)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/cel/openapi/values_test.go

    			added := lister.Add(addition).Value()
    			if !reflect.DeepEqual(added, tc.expectAdded) {
    				t.Errorf("Expected Add to return %v but got %v", tc.expectAdded, added)
    			}
    		})
    	}
    }
    
    func TestMapper(t *testing.T) {
    	cases := []struct {
    		name           string
    		unstructured   map[string]interface{}
    		schema         *spec.Schema
    		propertySchema func(key string) (*spec.Schema, bool)
    		size           int64
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 22:30:17 UTC 2023
    - 17.7K bytes
    - Viewed (0)
Back to top