Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 81 for synthesized (0.3 sec)

  1. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGClassIntegrationTest.groovy

            containsEvent(FINISHED, DefaultTestClassDescriptor, 'TestSuite > FullTest > org.company.SystemOutTest')
            containsEvent(FINISHED, DefaultTestSuiteDescriptor, 'TestSuite > FullTest')
        }
    
        def "synthesized events for broken configuration methods reference test class descriptors"() {
            given:
            file("src/test/java/org/company/TestWithBrokenSetupMethod.java") << """
                package org.company;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types/sym.go

    	"unicode/utf8"
    )
    
    // Sym represents an object name in a segmented (pkg, name) namespace.
    // Most commonly, this is a Go identifier naming an object declared within a package,
    // but Syms are also used to name internal synthesized objects.
    //
    // As an exception, field and method names that are exported use the Sym
    // associated with localpkg instead of the package that declared them. This
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 26 21:56:56 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/report/stacks.go

    			unknownIndex++
    		}
    		x.Inlined = inlined
    		x.Display = shortNameList(x.FullName)
    		s.Sources = append(s.Sources, x)
    		srcs[k] = len(s.Sources) - 1
    		return len(s.Sources) - 1
    	}
    
    	// Synthesized root location that will be placed at the beginning of each stack.
    	s.Sources = []StackSource{{
    		FullName: "root",
    		Display:  []string{"root"},
    		Places:   []StackSlot{},
    	}}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KaFe10Resolver.kt

            val signature = createSignature(symbol, resultingDescriptor) ?: return null
            if (targetDescriptor.isSynthesizedPropertyFromJavaAccessors()) {
                // FE1.0 represents synthesized properties as an extension property of the Java class. Hence we use the extension receiver as
                // the dispatch receiver and always pass null for extension receiver (because in Java there is no way to specify an extension
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modfetch/toolchain.go

    package modfetch
    
    import (
    	"context"
    	"fmt"
    	"io"
    	"sort"
    	"strings"
    
    	"cmd/go/internal/gover"
    	"cmd/go/internal/modfetch/codehost"
    )
    
    // A toolchainRepo is a synthesized repository reporting Go toolchain versions.
    // It has path "go" or "toolchain". The "go" repo reports versions like "1.2".
    // The "toolchain" repo reports versions like "go1.2".
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 13 16:44:24 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/dwarfgen/dwinl.go

    			vp := varPos{
    				DeclName: v.Name,
    				DeclFile: v.DeclFile,
    				DeclLine: v.DeclLine,
    				DeclCol:  v.DeclCol,
    			}
    			synthesized := strings.HasPrefix(v.Name, "~") || v.Name == "_"
    			if idx, found := m[vp]; found {
    				v.ChildIndex = int32(idx)
    				v.IsInAbstract = !synthesized
    			} else {
    				// Variable can't be found in the pre-inline dcl list.
    				// In the top-level case (ii=0) this can happen
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:45:07 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/pkginit/initAsanGlobals.go

    //	sourceLocation    uintptr
    //	odrIndicator      uintptr
    // }
    //
    // type asanLocation struct {
    //	filename uintptr
    //	line     int32
    //	column   int32
    // }
    //
    // defString is synthesized struct type meant to capture the underlying
    // implementations of string.
    // type defString struct {
    //	data uintptr
    //	len  uintptr
    // }
    
    func createtypes() (*types.Type, *types.Type, *types.Type) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 17 19:36:24 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/parameters/ConsumerOperationParameters.java

                        launchablesParams.add((InternalLaunchable) original);
                    } else if (original instanceof TaskListingLaunchable) {
                        // A launchable synthesized by the consumer - unpack it into a set of task names
                        taskPaths.addAll(((TaskListingLaunchable) original).getTaskNames());
                    } else if (launchable instanceof Task) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 19:46:37 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  9. src/runtime/vlop_arm.s

    #define Rq	R0 // input d, output q
    #define Rr	R1 // input n, output r
    #define Rs	R2 // three temporary variables
    #define RM	R3
    #define Ra	R11
    
    // Be careful: Ra == R11 will be used by the linker for synthesized instructions.
    // Note: this function does not have a frame.
    TEXT runtime·udiv(SB),NOSPLIT|NOFRAME,$0
    	MOVBU	internal∕cpu·ARM+const_offsetARMHasIDIVA(SB), Ra
    	CMP	$0, Ra
    	BNE	udiv_hardware
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 04 07:25:06 UTC 2020
    - 7.1K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/initialization/MixInLegacyTypesClassLoader.java

             * We only add getters for `public static final String` constants. This is because in
             * the converted classes only contain these kinds of constants.
             *
             * This is a mapping of the synthesized accessor name to the name of the backing field,
             * i.e. "getFOO" -> "FOO"
             */
            private Map<String, String> missingStaticStringConstantGetters = new HashMap<String, String>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 17K bytes
    - Viewed (0)
Back to top