Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 874 for unnamed (0.14 sec)

  1. src/go/types/signature.go

    			var recvTParams []*TypeParam
    			if rname != nil {
    				// recv should be a Named type (otherwise an error is reported elsewhere)
    				// Also: Don't report an error via genericType since it will be reported
    				//       again when we type-check the signature.
    				// TODO(gri) maybe the receiver should be marked as invalid instead?
    				if recv := asNamed(check.genericType(rname, nil)); recv != nil {
    					recvTParams = recv.TypeParams().list()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:06:18 UTC 2024
    - 13K 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. 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)
  4. 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)
  5. 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)
  6. tensorflow/compiler/mlir/lite/tf_tfl_translate.cc

        const auto &output_tensor = (*subgraph.tensors())[buffer];
        std::cout << "\tname: '"
                  << (output_tensor->name() ? output_tensor->name()->str()
                                            : "<<unnamed>>")
                  << "' buffer: " << buffer;
        if (loc) std::cout << llvm::formatv(" {0}", loc(id)).str();
        std::cout << '\n';
      };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 14K bytes
    - Viewed (0)
  7. test/typeparam/typelist.go

    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:
    func at[T interface{ ~[]E }, E any](x T, i int) E {
    	return x[i]
    }
    
    // A generic type inside a function acts like a named type. Its underlying
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 09:04:48 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/configuration/DaemonParametersTest.groovy

            def addOpensArgs = parameters.effectiveJvmArgs.findAll { it.startsWith("--add-opens") }
            !addOpensArgs.isEmpty()
            addOpensArgs.every { it.matches("--add-opens=.*?/.*?=ALL-UNNAMED") }
    
            and: "The required --add-opens args should not contain duplicates"
            addOpensArgs.toSet().size() == addOpensArgs.size()
        }
    
        def "can configure debug mode"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 00:09:57 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/server/health/gc/GarbageCollectionMonitoringIntegrationTest.groovy

                // For java.util.concurrent.CountDownLatch being serialized reflectively by configuration cache
                executer.withArgument('-Dorg.gradle.jvmargs=--add-opens java.base/java.util.concurrent=ALL-UNNAMED --add-opens java.base/java.util.concurrent.locks=ALL-UNNAMED')
            }
    
            configureGarbageCollectionHeapEventsFor(256, 512, 100, garbageCollector.monitoringStrategy.thrashingThreshold + 0.2)
            waitForImmediateDaemonExpiration()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  10. src/internal/types/testdata/fixedbugs/issue62157.go

    	// Unnamed directed channels win over bidirectional channels.
    	b = f(a, b)
    	b = f(b, a)
    
    	// Defined directed channels win over defined bidirectional channels.
    	A = f(A, a)
    	A = f(a, A)
    	B = f(B, b)
    	B = f(b, B)
    
    	f(a, b, B)
    	f(a, B, b)
    	f(b, B, a)
    	f(b, a, B)
    	f(B, a, b)
    	f(B, b, a)
    
    	// Differently named channel types conflict irrespective of channel direction.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 23:22:35 UTC 2023
    - 3.2K bytes
    - Viewed (0)
Back to top