Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 830 for dotV (0.08 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. okhttp-idna-mapping-table/src/main/resources/okhttp3/internal/idna/IdnaMappingTable.txt

    1E65          ; valid                                  # 1.1  LATIN SMALL LETTER S WITH ACUTE AND DOT ABOVE
    1E66          ; mapped                 ; 1E67          # 1.1  LATIN CAPITAL LETTER S WITH CARON AND DOT ABOVE
    1E67          ; valid                                  # 1.1  LATIN SMALL LETTER S WITH CARON AND DOT ABOVE
    1E68          ; mapped                 ; 1E69          # 1.1  LATIN CAPITAL LETTER S WITH DOT BELOW AND DOT ABOVE
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Feb 10 11:25:47 UTC 2024
    - 854.1K bytes
    - Viewed (0)
  7. 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)
  8. hack/module-graph.sh

    fi
    echo "}" >> _output/module-dependencies.dot || error_exit "Failed to close DOT file"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 07 08:19:59 UTC 2020
    - 3K bytes
    - Viewed (0)
  9. subprojects/diagnostics/src/main/resources/org/gradle/api/tasks/diagnostics/htmldependencyreport/tree.css

    .jstree-default.jstree-focused { background:#ffffee; }
    
    .jstree-default .jstree-no-dots li, 
    .jstree-default .jstree-no-dots .jstree-leaf > ins { background:transparent; }
    .jstree-default .jstree-no-dots .jstree-open > ins { background-position:-18px 0; }
    .jstree-default .jstree-no-dots .jstree-closed > ins { background-position:0 0; }
    
    .jstree-default .jstree-no-icons a .jstree-icon { display:none; }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 18 00:02:29 UTC 2014
    - 5.4K 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