Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 894 for isStandard (0.3 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r88/ProblemProgressEventCrossVersionTest.groovy

            thrown(BuildException)
            listener.problems.size() == 0
        }
    
        def "Problems expose summary Tooling API events"() {
            given:
            withMultipleProblems("id(\"deprecation\", \"The 'standard-plugin' is deprecated\")")
    
            when:
            def listener = new ProblemProgressListener()
            withConnection { connection ->
                connection.newBuild().forTasks('reportProblem')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 07:55:25 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/internal/stdlib/stdlib.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:generate go run generate.go
    
    // Package stdlib provides a table of all exported symbols in the
    // standard library, along with the version at which they first
    // appeared.
    package stdlib
    
    import (
    	"fmt"
    	"strings"
    )
    
    type Symbol struct {
    	Name    string
    	Kind    Kind
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/ForwardingMapEntry.java

     *
     * <p>Each of the {@code standard} methods, where appropriate, use {@link Objects#equal} to test
     * equality for both keys and values. This may not be the desired behavior for map implementations
     * that use non-standard notions of key equality, such as the entry of a {@code SortedMap} whose
     * comparator is not consistent with {@code equals}.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Mar 19 19:28:11 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/telemetry/.stylelintrc.json

    {
      "extends": ["stylelint-config-standard"],
      "rules": {
        "declaration-property-value-allowed-list": {
          "/color/": ["/^var\\(--/", "transparent"]
        },
        "unit-disallowed-list": ["px"],
        "selector-class-pattern": "^[a-zA-Z\\-]+$"
      },
      "ignoreFiles": ["**/*.min.css"]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 287 bytes
    - Viewed (0)
  5. releasenotes/notes/50395.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    issue:
      - 50396
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 19:31:36 UTC 2024
    - 241 bytes
    - Viewed (0)
  6. .devcontainer/devcontainer.json

      "features": {
          "ghcr.io/devcontainers/features/java:1": {
              "version": "17"
          }
      },
      "customizations": {
          "vscode": {
              "settings": {
                  "java.server.launchMode": "Standard"
              },
              "extensions": [
                  "vscjava.vscode-java-pack",
                  "vscjava.vscode-gradle"
              ]
          }
      }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat May 18 23:34:57 UTC 2024
    - 429 bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.h

    limitations under the License.
    ==============================================================================*/
    
    // This file defines the operations used in the standard MLIR TensorFlow dialect
    // after control dependences are raise to the standard form.
    
    #ifndef TENSORFLOW_COMPILER_MLIR_TENSORFLOW_IR_TF_OPS_H_
    #define TENSORFLOW_COMPILER_MLIR_TENSORFLOW_IR_TF_OPS_H_
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 04 22:48:00 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/networking/v1alpha1/generated.proto

    // case of multiple matching ClusterCIDR resources, the allocator will attempt
    // to break ties using internal heuristics, but any ClusterCIDR whose node
    // selector matches the Node may be used.
    message ClusterCIDR {
      // Standard object's metadata.
      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 6K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/list_testdata.txt

    # Issue 65406. The testdata directory in GOROOT/src
    # shouldn't be treated as a standard package.
    
    go list -f '{{.ImportPath}} {{.Dir}}' testdata
    ! stderr 'found package testdata in multiple modules'
    stdout 'testdata '$WORK${/}'gopath'${/}'src'
    
    -- go.mod --
    module testdata
    -- p.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 18:16:28 UTC 2024
    - 295 bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r43/CapturingUserInputCrossVersionSpec.groovy

        }
    
        def "can capture user input if standard input was provided"() {
            when:
            withConnection { ProjectConnection connection ->
                runBuildWithStandardInput(connection)
            }
    
            then:
            output.contains(PROMPT)
            output.contains(answerOutput(true))
        }
    
        def "cannot capture user input if standard input was not provided"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 19:25:32 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top