Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 111 for corerest (0.72 sec)

  1. src/path/filepath/path_windows.go

    			// If the path ends in a slash, strip any leading slashes from the next
    			// path element to avoid creating a UNC path (any path starting with "\\")
    			// from non-UNC elements.
    			//
    			// The correct behavior for Join when the first element is an incomplete UNC
    			// path (for example, "\\") is underspecified. We currently join subsequent
    			// elements so Join("\\", "host", "share") produces "\\host\share".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:50 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/writing_settings_files.adoc

    Blocks are mapped to Gradle API methods.
    
    The code inside the function is executed against a `this` object called a _receiver_ in Kotlin lambda and a _delegate_ in Groovy closure.
    Gradle determines the correct `this` object and invokes the correct corresponding method.
    The `this` of the method invocation `id("plugin")` object is of type link:{javadocPath}/org/gradle/plugin/use/PluginDependenciesSpec.html[`PluginDependenciesSpec`].
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 04:15:25 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/bootstrap/DaemonStartupCommunication.java

        }
    
        @SuppressWarnings("DefaultCharset")
        public DaemonStartupInfo readDiagnostics(String message) {
            //Assuming the message has correct format. Not bullet proof, but seems to work ok for now.
            if (!message.startsWith(daemonGreeting())) {
                throw new IllegalArgumentException(String.format("Unexpected daemon startup message: %s", message));
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/plugin/annotations/Resolution.java

         * else a dependency collection request will be done.
         *
         * @return the id of the path scope
         */
        String pathScope() default "";
    
        /**
         * The request type, in case the default one is not correct.
         * Valid values are {@code collect}, {@code flatten}, or {@code resolve}.
         *
         * @return the request type
         */
        String requestType() default "";
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. src/internal/reflectlite/export_test.go

    	// or flagIndir is not set and v.ptr is the actual struct data.
    	// In the former case, we want v.ptr + offset.
    	// In the latter case, we must have field.offset = 0,
    	// so v.ptr + field.offset is still the correct address.
    	ptr := add(v.ptr, field.Offset, "same as non-reflect &v.field")
    	return Value{typ, ptr, fl}
    }
    
    func TField(typ Type, i int) Type {
    	t := typ.(rtype)
    	if t.Kind() != Struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:01:54 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfrt/function/function.h

      // to TPU.
      bool tpu_use_bundled_transfer = false;
    
      // If true, lower an TF op that's placed on TPU device to be executed with
      // tfrt_fallback.execute.
      // Currently for training use cases we need to lower the op to corert.execute
      // to execute with TPU OpHandler, and with TFRT's native implementation.
      // TODO(b/188940204): remove this config after we clear up the TPU variable
      // implementation.
      bool tpu_lower_to_fallback = false;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 04:50:20 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. src/io/ioutil/ioutil.go

    // sorted by filename. If an error occurs reading the directory,
    // ReadDir returns no directory entries along with the error.
    //
    // Deprecated: As of Go 1.16, [os.ReadDir] is a more efficient and correct choice:
    // it returns a list of [fs.DirEntry] instead of [fs.FileInfo],
    // and it returns partial results in the case of an error
    // midway through reading a directory.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r34/ToolingApiIdeaModelCrossVersionSpec.groovy

            then:
            UnsupportedMethodException e = thrown()
            e.message.startsWith("Unsupported method: IdeaModule.getJdkName()")
        }
    
        @TargetGradleVersion(">=3.4 <4.5")
        def "provides correct dependencies when using java-library plugin"() {
            given:
            settingsFile << """
                rootProject.name = 'root'
                include 'a', 'b', 'c', 'd', 'e', 'f'
            """
    
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 6K bytes
    - Viewed (0)
  9. src/go/types/conversions.go

    // of x is fully known, but that's not the case for say string(1<<s + 1.0):
    // Here, the type of 1<<s + 1.0 will be UntypedFloat which will lead to the
    // (correct!) refusal of the conversion. But the reported error is essentially
    // "cannot convert untyped float value to string", yet the correct error (per
    // the spec) is that we cannot shift a floating-point value: 1 in 1<<s should
    // be converted to UntypedFloat because of the addition of 1.0. Fixing this
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:51:00 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  10. pkg/proxy/util/nodeport_addresses.go

    // the other family).
    func NewNodePortAddresses(family v1.IPFamily, cidrStrings []string) *NodePortAddresses {
    	npa := &NodePortAddresses{}
    
    	// Filter CIDRs to correct family
    	for _, str := range cidrStrings {
    		if (family == v1.IPv4Protocol) == netutils.IsIPv4CIDRString(str) {
    			npa.cidrStrings = append(npa.cidrStrings, str)
    		}
    	}
    	if len(npa.cidrStrings) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top