Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 533 for Transformed (0.33 sec)

  1. 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)
  2. src/cmd/link/internal/ld/data.go

    			// offset from the start of the compile unit.
    			o = ldr.SymValue(rs) + r.Add() - ldr.SymValue(loader.Sym(ldr.SymUnit(rs).Textp[0]))
    
    		// r.Sym() can be 0 when CALL $(constant) is transformed from absolute PC to relative PC call.
    		case objabi.R_GOTPCREL:
    			if target.IsDynlinkingGo() && target.IsDarwin() && rs != 0 {
    				nExtReloc++
    				o = r.Add()
    				break
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
  3. 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)
  4. src/main/webapp/js/admin/popper.min.js.map

    isFixed(parentNode);\n}\n","import getStyleComputedProperty from './getStyleComputedProperty';\nimport isIE from './isIE';\n/**\n * Finds the first parent of an element that has a transformed property defined\n * @method\n * @memberof Popper.Utils\n * @argument {Element} element\n * @returns {Element} first transformed parent or documentElement\n */\n\nexport default function getFixedPositionOffsetParent(element) {\n  // This check is needed to avoid errors in case one of the elements isn't defined...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 121K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    ----
    ====
    
    The resolved set of artifacts can be obtained lazily from the incoming artifacts of a `Configuration`.
    Given the `ResolvedArtifactResult` type contains both metadata and file information, instances need to be transformed to metadata only before being wired to an `@Input` property:
    
    .Resolved artifacts as task input
    ====
    .Task declaration
    [source,java]
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheTaskWiringIntegrationTest.groovy

            output.text == "16"
    
            when:
            input.text = "10"
            configurationCacheRun(":transformer")
    
            then:
            configurationCache.assertStateLoaded()
            result.assertTasksExecutedAndNotSkipped(":producer", ":transformer")
            output.text == "22"
    
            when:
            configurationCacheRun(":transformer")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/GroupedTransformOutputFixture.java

        private final String initialSubjectType;
        private final String subject;
        private final String transformer;
    
        public GroupedTransformOutputFixture(String initialSubjectType, String subject, String transformer) {
            this.initialSubjectType = initialSubjectType;
            this.subject = subject;
            this.transformer = transformer;
        }
    
        public String getInitialSubjectType() {
            return initialSubjectType;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/file/copy/LineFilter.java

        /**
         * Creates a new filtered reader.
         *
         * @param transformer a transformer to filter each line
         * @throws NullPointerException if <code>in</code> is <code>null</code>
         */
        public LineFilter(Reader in, Transformer<String, String> transformer) {
            this.in = in;
            this.bufferedIn = new BufferedReader(in);
            this.transformer = transformer;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 10:39:11 UTC 2019
    - 3.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/kmsv2/cache_test.go

    	tests := []struct {
    		name        string
    		key         []byte
    		transformer value.Transformer
    	}{
    		{
    			name:        "empty key",
    			key:         []byte{},
    			transformer: &envelopeTransformer{},
    		},
    		{
    			name:        "nil transformer",
    			key:         []byte("key"),
    			transformer: nil,
    		},
    	}
    
    	for _, test := range tests {
    		t.Run(test.name, func(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 31 20:26:58 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/AbstractMinimalProviderTest.groovy

            provider.getOrNull() == null
            provider.getOrElse("s2") == "s2"
        }
    
        def "mapped provider is live"() {
            def transformer = Stub(Transformer)
            transformer.transform(_) >> { String s -> "[$s]" }
    
            expect:
            def mapped = provider.map(transformer)
            !mapped.present
            mapped.getOrNull() == null
            mapped.getOrElse("s2") == "s2"
    
            provider.value("abc")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.8K bytes
    - Viewed (0)
Back to top