Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 49 for varDesc (0.18 sec)

  1. architecture/runtimes.md

    The core-runtime module defines each runtime:
    
    - The target JVM for the runtime. Each runtime has its own JVM compatibility constraints.
    - Some base services that are available to code hosted by the runtime. This varies by runtime.
    - Additional constraints. For example, the CLI client runtimes limit the libraries that are available to the code in that runtime, for performance reasons. 
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 06:42:46 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/PropertyDetails.java

         * That is, the “nearer” declarations are earlier in the list.
         */
        Collection<Method> getGetters();
    
        /**
         * Similar to {@link #getGetters()}, but varies based on the param type instead of return type.
         *
         * Has identical ordering semantics.
         */
        Collection<Method> getSetters();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  3. src/runtime/debug/stack.go

    		fd = uintptr(fd2)
    	}
    	if prev := runtime_setCrashFD(fd); prev != ^uintptr(0) {
    		// We use NewFile+Close because it is portable
    		// unlike syscall.Close, whose parameter type varies.
    		os.NewFile(prev, "").Close() // ignore error
    	}
    	return nil
    }
    
    //go:linkname runtime_setCrashFD runtime.setCrashFD
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 15:19:04 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. platforms/jvm/scala/src/main/java/org/gradle/api/tasks/scala/internal/ScalaCompileOptionsConfigurer.java

     *
     * @since 7.3
     */
    public class ScalaCompileOptionsConfigurer {
    
        private static final int FALLBACK_JVM_TARGET = 8;
    
        /**
         * Support for these flags in different minor releases of Scala varies,
         * but we need to detect as many variants as possible to avoid overriding the target or release.
         */
        private static final List<String> TARGET_DEFINING_PARAMETERS = Arrays.asList(
            // Scala 2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/text/language/doc.go

    // to simplify associating such data with the matched tag.
    //
    // # Canonicalization
    //
    // If one uses the Matcher to compare languages one does not need to
    // worry about canonicalization.
    //
    // The meaning of a Tag varies per application. The language package
    // therefore delays canonicalization and preserves information as much
    // as possible. The Matcher, however, will always take into account that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/MavenConversionDynamicPomIntegrationTest.groovy

                failure.assertHasCause("error: specified target release 1.8 is too old for the specified source release 22")
            } else {
                // May or may not be part of the failure cause (varies by javac version)
                errorOutput.contains("source release ${source} requires target release ${source}")
            }
        }
    
        @Requires(UnitTestPreconditions.Jdk9OrLater)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:33 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  7. src/cmd/link/internal/loong64/asm.go

    	case objabi.R_LOONG64_ADDR_LO:
    		return true
    	}
    	return false
    }
    
    // Calculates the value to put into the immediate slot, according to the
    // desired relocation type, target and PC.
    // The value to use varies based on the reloc type. Namely, the absolute low
    // bits of the target are to be used for the low part, while the page-aligned
    // offset is to be used for the higher part. A "page" here is not related to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:26:07 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  8. pilot/pkg/leaderelection/k8sleaderelection/leaderelection.go

    //
    // While not required, some method of clock synchronization between nodes in the
    // cluster is highly recommended. It's important to keep in mind when configuring
    // this client that the tolerance to skew rate varies inversely to master
    // availability.
    //
    // Larger clusters often have a more lenient SLA for API latency. This should be
    // taken into account when configuring the client. The rate of leader transitions
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 24 04:04:42 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheEncryptionIntegrationTest.groovy

            then:
            // since the key is not fully validated until needed, we only get an error when encrypting
            failure.assertHasDescription("Error while encrypting")
            // exception error message varies across JCE implementations, but the exception class is predictable
            containsLine(result.error, matchesRegexp(".*java.security.InvalidKeyException.*"))
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 13K bytes
    - Viewed (0)
  10. okhttp-tls/src/main/kotlin/okhttp3/tls/HandshakeCertificates.kt

        fun addTrustedCertificate(certificate: X509Certificate) =
          apply {
            this.trustedCertificates += certificate
          }
    
        /**
         * Add all of the host platform's trusted root certificates. This set varies by platform
         * (Android vs. Java), by platform release (Android 4.4 vs. Android 9), and with user
         * customizations.
         *
         * Most TLS clients that connect to hosts on the public Internet should call this method.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 8.5K bytes
    - Viewed (0)
Back to top