Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,832 for arguments_ (0.27 sec)

  1. src/internal/trace/raw/doc.go

    The second special case consists of stack events. These events are identified
    by the IsStack flag. These events also have a trailing unsigned integer argument
    describing the number of stack frame descriptors that follow. Each stack frame
    descriptor is on its own line following the event, consisting of four signed
    integer arguments: the PC, an integer describing the function name, an integer
    describing the file name, and the line number in that file that function was at
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/evaluate/FirAnnotationValueConverter.kt

                }
    
                is FirVarargArgumentsExpression -> {
                    // Vararg arguments may have multiple independent expressions associated.
                    // Choose one to be the representative PSI value for the entire assembled argument.
                    val (annotationValues, representativePsi) = arguments.convertVarargsExpression(builder)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  3. test/typeparam/issue54765.go

    // Test that not-in-heap types cannot be used as type
    // arguments. (pointer-to-nih types are okay though.)
    
    //go:build cgo
    
    package p
    
    import (
    	"runtime/cgo"
    	"sync/atomic"
    )
    
    var _ atomic.Pointer[cgo.Incomplete]  // ERROR "cannot use incomplete \(or unallocatable\) type as a type argument: runtime/cgo\.Incomplete"
    var _ atomic.Pointer[*cgo.Incomplete] // ok
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 729 bytes
    - Viewed (0)
  4. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/utils/KtFe10DebugTypeRenderer.kt

            with(printer) {
                val classifier = typeSegment.classifierDescriptor
    
                append(classifier.maybeLocalClassId.asString())
    
                val arguments = typeSegment.arguments
                printCollectionIfNotEmpty(arguments, separator = ", ", prefix = "<", postfix = ">") {
                    renderTypeProjection(it, printer)
                }
            }
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  5. src/runtime/export_debug_ppc64le_test.go

    			dst.gp_regs[i+3] = uint64(src.Ints[i])
    		}
    	}
    	// Fprs F1..F13 are used to pass float arguments in registers on PPC64
    	for i := 0; i < 12; i++ {
    		dst.fp_regs[i+1] = math.Float64frombits(src.Floats[i])
    	}
    
    }
    
    func loadRegArgs(dst *abi.RegArgs, src *sigcontext) {
    	// Gprs R3..R10, R14..R17 are used to pass int arguments in registers on PPC64
    	for i := range [12]int{} {
    		if i > 7 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 15:33:38 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  6. maven-embedder/src/test/java/org/apache/maven/cli/MavenCliTest.java

        }
    
        public static Stream<Arguments> activateBatchModeArguments() {
            return Stream.of(
                    Arguments.of(false, new String[] {}, false),
                    Arguments.of(true, new String[] {}, true),
                    Arguments.of(true, new String[] {"--force-interactive"}, false),
                    Arguments.of(true, new String[] {"--force-interactive", "--non-interactive"}, false),
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  7. src/internal/types/errors/codes.go

    	//  var x = len(s)
    	InvalidLen
    
    	// SwappedMakeArgs occurs when make is called with three arguments, and its
    	// length argument is larger than its capacity argument.
    	//
    	// Example:
    	//  var x = make([]int, 3, 2)
    	SwappedMakeArgs
    
    	// InvalidMake occurs when make is called with an unsupported type argument.
    	//
    	// See https://golang.org/ref/spec#Making_slices_maps_and_channels for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 22:50:48 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/annotations/KtAnnotationValue.kt

    public typealias KtEnumEntryAnnotationValue = KaEnumEntryAnnotationValue
    
    /**
     * Some constant value (which may be used as initializer of `const val`) used as annotation argument. It may be String literal, number literal or some simple expression.
     * E.g: `@A(1 +2, "a" + "b")` -- both arguments here are [KaConstantAnnotationValue]
     * @see [KaConstantValue]
     */
    public class KaConstantAnnotationValue @KaAnalysisApiInternals constructor(
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. platforms/core-configuration/base-services-groovy/src/main/java/org/gradle/api/internal/coerce/MethodArgumentsTransformer.java

     */
    
    package org.gradle.api.internal.coerce;
    
    import org.codehaus.groovy.reflection.CachedClass;
    
    /**
     * Potentially transforms arguments to call a method with.
     */
    public interface MethodArgumentsTransformer {
    
        /**
         * Transforms an argument list to call a method with.
         *
         * May return {@code args} if no transform is necessary.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 10:00:26 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/compile_mlir_util/argument-sharding-invalid.mlir

    Adrian Kuegel <******@****.***> 1648469008 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 364 bytes
    - Viewed (0)
Back to top