Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 172 for unnamed1 (0.16 sec)

  1. test/typeparam/issue50417.go

    var _ = f2[Sfm]
    
    // special case: core type is a named pointer type
    
    type PSfm *Sfm
    
    func f3[P interface{ PSfm }](p P) {
    	_ = p.f
    	p.f = 0
    }
    
    var _ = f3[PSfm]
    
    // special case: core type is an unnamed pointer type
    
    func f4[P interface{ *Sfm }](p P) {
    	_ = p.f
    	p.f = 0
    }
    
    var _ = f4[*Sfm]
    
    type A int
    type B int
    type C float64
    
    type Int interface {
    	*Sf | A
    	*Sf | B
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 09 21:26:42 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/internal/platform/Jdk9Platform.kt

        // java.lang.reflect.InaccessibleObjectException: Unable to make member of class
        // sun.security.ssl.SSLSocketFactoryImpl accessible:  module java.base does not export
        // sun.security.ssl to unnamed module @xxx
        throw UnsupportedOperationException(
          "clientBuilder.sslSocketFactory(SSLSocketFactory) not supported on JDK 8 (>= 252) or JDK 9+",
        )
      }
    
      override fun newSSLContext(): SSLContext {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/project/IsolatedProject.java

         * should use the {@link #getPath()} method for a unique identifier for the project.
         * If the root project is unnamed and is located on a file system root it will have a randomly-generated name
         * </p>
         *
         * @return The name of this project. Never return null.
         * @since 8.8
         */
        String getName();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 18:34:13 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/Type.java

         */
        String CLASSPATH_JAR = "classpath-jar";
    
        /**
         * Artifact type name for a JAR file to unconditionally place on the module-path.
         * If the JAR is not modular, then it is loaded by Java as an unnamed module.
         * This type is new in Maven 4.
         */
        String MODULAR_JAR = "modular-jar";
    
        /**
         * Artifact type name for a JAR file that can be placed either on the annotation processor class-path
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  5. analysis/analysis-api-standalone/src/org/jetbrains/kotlin/analysis/project/structure/impl/KtStandaloneProjectStructureProvider.kt

        override val allKtModules: List<KtModule>,
    ) : KtStaticProjectStructureProvider() {
        private val ktNotUnderContentRootModuleWithoutPsiFile by lazy {
            KtNotUnderContentRootModuleImpl(
                name = "unnamed-outside-content-root",
                moduleDescription = "Standalone-not-under-content-root-module-without-psi-file",
                project = project,
            )
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Apr 10 16:23:23 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  6. src/go/types/signature.go

    // and results, either of which may be nil. If variadic is set, the function
    // is variadic, it must have at least one parameter, and the last parameter
    // must be of unnamed slice type.
    //
    // Deprecated: Use [NewSignatureType] instead which allows for type parameters.
    func NewSignature(recv *Var, params, results *Tuple, variadic bool) *Signature {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:06:18 UTC 2024
    - 13K bytes
    - Viewed (0)
  7. pkg/kubelet/envvars/envvars.go

    		name = makeEnvVariableName(service.Name) + "_SERVICE_PORT"
    		result = append(result, v1.EnvVar{Name: name, Value: strconv.Itoa(int(service.Spec.Ports[0].Port))})
    		// All named ports (only the first may be unnamed, checked in validation)
    		for i := range service.Spec.Ports {
    			sp := &service.Spec.Ports[i]
    			if sp.Name != "" {
    				pn := name + "_" + makeEnvVariableName(sp.Name)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 09 11:14:08 UTC 2017
    - 3.3K bytes
    - Viewed (0)
  8. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/AbstractCodeQualityTask.java

    abstract public class AbstractCodeQualityTask extends SourceTask implements VerificationTask {
        private static final String OPEN_MODULES_ARG = "java.prefs/java.util.prefs=ALL-UNNAMED";
    
        @Inject
        public AbstractCodeQualityTask() {
            getIgnoreFailuresProperty().convention(false);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 18:07:00 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. src/internal/types/testdata/check/decls2/decls2a.go

    func (a, b /* ERROR "method has multiple receivers" */ T3) _() {}
    func (a, b, c /* ERROR "method has multiple receivers" */ T3) _() {}
    
    // Methods associated with non-local or unnamed types.
    func (int /* ERROR "cannot define new methods on non-local type int" */ ) m() {}
    func ([ /* ERROR "invalid receiver" */ ]int) m() {}
    func (time /* ERROR "cannot define new methods on non-local type time.Time" */ .Time) m() {}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  10. test/typeparam/typelist.go

    // This file tests type lists & constraints with core types.
    
    // Note: This test has been adjusted to use the new
    //       type set notation rather than type lists.
    
    package p
    
    // Assignability of an unnamed pointer type to a type parameter that
    // has a matching underlying type.
    func _[T interface{}, PT interface{ ~*T }](x T) PT {
    	return &x
    }
    
    // Indexing of generic types containing type parameters in their type list:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 09:04:48 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top