Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 156 for Transformed (0.25 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/metrics/metrics.go

    	if validRequestMethods.Has(reportedVerb) {
    		return reportedVerb
    	}
    	return OtherRequestMethod
    }
    
    // getVerbIfWatch additionally ensures that GET or List would be transformed to WATCH
    func getVerbIfWatch(req *http.Request) string {
    	if strings.ToUpper(req.Method) == "GET" || strings.ToUpper(req.Method) == "LIST" {
    		// see apimachinery/pkg/runtime/conversion.go Convert_Slice_string_To_bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 07:29:19 UTC 2023
    - 35K bytes
    - Viewed (0)
  2. tensorflow/c/eager/c_api_experimental.h

                                                   void* device_info);
    
      // Method to execute an operation.
      //
      // Arguments provide enough information to reconstruct the original `TFE_Op`,
      // or construct a transformed version, by inspecting the passed `op`.
      //
      // TFE_OpGetDevice(op) records the original placement of the operation. It may
      // be an empty string if no device was explicitly requested, but will
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 22:37:46 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  3. src/cmd/link/link_test.go

    grown up, possessed himself of a real horse, and trotted away into the other world. Fair wards of court have faded into mothers and grandmothers; a long procession of Chancellors has come in and gone out; the legion of bills in the suit have been transformed into mere bills of mortality; there are not three Jarndyces left upon the earth perhaps, since old Tom Jarndyce in despair blew his brains out at a coffee-house in Chancery Lane; but Jarndyce and Jarndyce still drags its dreary length before the...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:02 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/initialization/exception/DefaultExceptionAnalyserTest.groovy

            then:
            result.size() == 2
    
            def transformed1 = result[0]
            transformed1 instanceof LocationAwareException
            transformed1.cause.is(scriptFailure)
    
            def transformed2 = result[1]
            transformed2 instanceof LocationAwareException
            transformed2.cause.is(failure)
    
            failure.causes == [otherFailure1, otherFailure2]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  5. platforms/ide/ide-native/src/main/java/org/gradle/ide/visualstudio/internal/NativeSpecVisualStudioTargetBinary.java

            private final Spec<LanguageSourceSet> filterSpec;
            private final Transformer<FileCollection, LanguageSourceSet> transformer;
    
            public LanguageSourceSetCollectionAdapter(String displayName, Set<LanguageSourceSet> inputs, Spec<LanguageSourceSet> filterSpec, Transformer<FileCollection, LanguageSourceSet> transformer) {
                this.displayName = displayName;
                this.inputs = inputs;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/crawler/transformer/FessXpathTransformerTest.java

            assertTrue(transformer.isValidUrl("http://www.example.com"));
            assertTrue(transformer.isValidUrl("http://www.example.com/aaa"));
            assertTrue(transformer.isValidUrl("https://www.example.com"));
            assertTrue(transformer.isValidUrl("://www.example.com"));
            assertTrue(transformer.isValidUrl("//www.example.com"));
    
            assertFalse(transformer.isValidUrl(null));
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/test/groovy/org/gradle/util/internal/CollectionUtilsTest.groovy

        def "collect as map"() {
            expect:
            collectMap([1, 2, 3], transformer { it * 10 }) == [10: 1, 20: 2, 30: 3]
            collectMap([], transformer { it * 10 }) == [:]
        }
    
        def "collect values as map"() {
            expect:
            collectMapValues([1, 2, 3], transformer { it * 10 }) == [1: 10, 2: 20, 3: 30]
            collectMapValues([], transformer { it * 10 }) == [:]
        }
    
        def "every"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/util/CollectionUtils.java

                destination[i] = transformer.transform(list[i]);
            }
            return destination;
        }
    
        public static <R, I> List<R> collect(I[] list, Transformer<? extends R, ? super I> transformer) {
            return collect(Arrays.asList(list), transformer);
        }
    
        public static <R, I> Set<R> collect(Set<? extends I> set, Transformer<? extends R, ? super I> transformer) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 11:17:19 UTC 2024
    - 26K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/aes/aes_test.go

    func newGCMTransformer(t testing.TB, block cipher.Block, _ []byte) value.Transformer {
    	t.Helper()
    
    	transformer, err := NewGCMTransformer(block)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	return transformer
    }
    
    func newGCMTransformerWithUniqueKeyUnsafeTest(t testing.TB, block cipher.Block, _ []byte) value.Transformer {
    	t.Helper()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 19:25:52 UTC 2023
    - 23.2K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/ProviderSpec.groovy

            assert mapped.getOrElse(someValue()) == someOtherValue()
    
            then:
            2 * transformer.transform(someValue()) >> Providers.of(someOtherValue())
            0 * _
        }
    
        def "flat mapped provider returns result of transformer when the result has no value"() {
            def transformer = Stub(Transformer)
            transformer.transform(someValue()) >> providerWithNoValue()
    
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 06:53:07 UTC 2023
    - 19.2K bytes
    - Viewed (0)
Back to top