Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 456 for dotV (0.04 sec)

  1. platforms/documentation/docs/src/docs/userguide/img/java-main-configurations.dot

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 566 bytes
    - Viewed (0)
  2. src/net/textproto/reader.go

    		err = io.EOF
    	}
    	if err != nil && d.r.dot == d {
    		d.r.dot = nil
    	}
    	return
    }
    
    // closeDot drains the current DotReader if any,
    // making sure that it reads until the ending dot line.
    func (r *Reader) closeDot() {
    	if r.dot == nil {
    		return
    	}
    	buf := make([]byte, 128)
    	for r.dot != nil {
    		// When Read reaches EOF or an error,
    		// it will set r.dot == nil.
    		r.dot.Read(buf)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/ModelPath.java

            // one should really avoid using this constructor as it is totally inefficient
            // and reserved to spurious cases when the components have dots in names
            // (and this can happen if a task name contains dots)
            this.path = path;
            this.components = components;
            this.parent = doGetParent();
        }
    
        @Override
        public int compareTo(ModelPath other) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/tutorial/gradleProperties/groovy/settings.gradle

    println settings['gradlePropertiesProp']
    // end::gradle-properties[]
    
    // tag::properties-with-dots[]
    // In Groovy scripts, both the API and dynamic array notation work
    println providers.gradleProperty('gradleProperties.with.dots').get()
    println settings['gradleProperties.with.dots']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 642 bytes
    - Viewed (0)
  5. src/net/testdata/search-single-dot-resolv.conf

    Andy Pan <******@****.***> 1660576140 +0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 03:01:14 UTC 2022
    - 67 bytes
    - Viewed (0)
  6. maven-model-builder/src/main/java/org/apache/maven/model/interpolation/reflection/ReflectionValueExtractor.java

                throws IntrospectionException {
            Object value = root;
    
            // ----------------------------------------------------------------------
            // Walk the dots and retrieve the ultimate value desired from the
            // MavenProject instance.
            // ----------------------------------------------------------------------
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 05 08:11:33 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/tutorial/gradleProperties/kotlin/settings.gradle.kts

    val gradlePropertiesProp: String by settings
    println(gradlePropertiesProp)
    // end::gradle-properties[]
    
    // tag::properties-with-dots[]
    // In Kotlin scripts, using the API is the only way
    println(providers.gradleProperty("gradleProperties.with.dots").get())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 516 bytes
    - Viewed (0)
  8. src/cmd/go/internal/imports/build.go

    // GOOS and GOARCH to be available and will consequently
    // always return true.
    func MatchFile(name string, tags map[string]bool) bool {
    	if tags["*"] {
    		return true
    	}
    	if dot := strings.Index(name, "."); dot != -1 {
    		name = name[:dot]
    	}
    
    	// Before Go 1.4, a file called "linux.go" would be equivalent to having a
    	// build tag "linux" in that file. For Go 1.4 and beyond, we require this
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 30 18:50:57 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/transforms/optimize.cc

              dot, "dot_general ops have different dimension numbers");
        if (dot.getPrecisionConfig() != first_dot.getPrecisionConfig())
          return rewriter.notifyMatchFailure(
              dot, "dot_general ops have different precision configs");
        if (!dot.getLhs().getType().hasStaticShape())
          return rewriter.notifyMatchFailure(
              dot, "all dot_general LHS must be statically shaped");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_invalid_path.txt

    # but such a module path is not.
    # Verifies #43985.
    cd $WORK/gopath/src/dotname
    go list ./.dot
    stdout '^example.com/dotname/.dot$'
    go list ./use
    stdout '^example.com/dotname/use$'
    ! go list -m example.com/dotname/.dot@latest
    stderr '^go: example.com/dotname/.dot@latest: malformed module path "example.com/dotname/.dot": leading dot in path element$'
    go get example.com/dotname/.dot
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 02 02:54:20 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top