Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for synthesized (0.34 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. tensorflow/compiler/mlir/quantization/tensorflow/passes/unfreeze_constants.cc

        llvm::ArrayRef<TF::ConstOp> target_const_ops) {
      llvm::MapVector<TF::ConstOp, std::string> const_op_name_map{};
    
      // Keeps track of the number of occurrences of each synthesized name. The
      // `shared_name` of the newly created `VarHandleOp` will be generated by
      // suffixing the `"_{count}"` to the name.
      absl::flat_hash_map<std::string, int> name_counts{};
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 16 15:04:53 UTC 2023
    - 14K bytes
    - Viewed (0)
  6. src/go/doc/example.go

    				comments = append(comments, d.Doc)
    			}
    		}
    	}
    
    	// Synthesize import declaration.
    	importDecl := &ast.GenDecl{
    		Tok:    token.IMPORT,
    		Lparen: 1, // Need non-zero Lparen and Rparen so that printer
    		Rparen: 1, // treats this as a factored import.
    	}
    	importDecl.Specs = append(namedImports, blankImports...)
    
    	// Synthesize main function.
    	funcDecl := &ast.FuncDecl{
    		Name: ast.NewIdent("main"),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/jvm/jvm_test_suite_plugin.adoc

    include::sample[dir="snippets/testing/test-suite-configure-source-dir/groovy",files="build.gradle[tags=configure-source-dir]"]
    ====
    
    <1> Declare and configure a suite named `integrationTest`.  The `SourceSet` and synthesized `Test` tasks will be based on this name.
    <2> Configure the `sources` of the test suite.
    <3> Configure the `java` SourceDirectorySet of the test suite.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 14:47:11 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  8. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/base/Kt1DescUtils.kt

            is CallableMemberDescriptor -> when (kind) {
                CallableMemberDescriptor.Kind.DELEGATION -> return KaSymbolOrigin.DELEGATED
                CallableMemberDescriptor.Kind.SYNTHESIZED -> return KaSymbolOrigin.SOURCE_MEMBER_GENERATED
                else -> {
                    if (isDynamic()) {
                        return KaSymbolOrigin.JS_DYNAMIC
                    }
                }
            }
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  9. src/runtime/profbuf.go

    // record into the buffer. If the reader is called to read data and finds
    // that the output buffer is empty but that there is a pending overflow
    // entry, the reader will return a synthesized record for the pending
    // overflow entry.
    //
    // Only the writer can create or add to a pending overflow entry, but
    // either the reader or the writer can clear the pending overflow entry.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modindex/read.go

    		// of the Go toolchain may have arbitrary development changes on top of the
    		// commit reported by runtime.Version, or could be completely artificial due
    		// to lacking a `git` binary (like "devel gomote.XXXXX", as synthesized by
    		// "gomote push" as of 2022-06-15). (Release builds shouldn't have
    		// modifications, but we don't want to use a behavior for releases that we
    		// haven't tested during development.)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 29.7K bytes
    - Viewed (0)
Back to top