Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 401 for droplet (0.11 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/PluginTree.kt

                val root = linkedMapOf<String, PluginTree>()
                plugins.sortedBy { it.id }.forEach { plugin ->
                    val path = plugin.id.split('.')
                    val pluginGroupPath = path.dropLast(1)
                    pluginTreeForGroup(pluginGroupPath, root)
                        ?.put(path.last(), plugin)
                }
                return root
            }
    
            private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_get_indirect.txt

    # indirect tag should be added by go mod tidy
    cp $WORK/tmp/usequote.go x.go
    go mod tidy
    grep 'rsc.io/quote v1.5.2$' go.mod
    grep 'golang.org/x/text [v0-9a-f\.-]+ // indirect' go.mod
    
    # requirement should be dropped entirely if not needed
    cp $WORK/tmp/uselang.go x.go
    go mod tidy
    ! grep rsc.io/quote go.mod
    grep 'golang.org/x/text [v0-9a-f\.-]+$' go.mod
    
    -- go.mod --
    module x
    require rsc.io/quote v1.5.1
    -- x.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  3. platforms/jvm/scala/src/integTest/groovy/org/gradle/integtests/fixtures/ScalaCoverage.groovy

                return VersionCoverage.versionsAtLeast(SCALA_2, "2.13.0")
            }
            if (javaVersion.isCompatibleWith(JavaVersion.VERSION_1_8)) {
                // Java 8 support not dropped yet
                return SCALA_2
            }
            if (javaVersion.isCompatibleWith(JavaVersion.VERSION_1_6)) {
                // 2.12+ requires Java 8
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:33 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/Resolver.kt

            trees: List<Import>,
            analysisContext: AnalysisContext
        ): Map<String, FqName> = buildMap {
            trees.forEach { import ->
                val fqn = DefaultFqName(
                    import.name.nameParts.dropLast(1).joinToString("."), import.name.nameParts.last()
                )
    
                compute(fqn.simpleName) { _, existing ->
                    if (existing != null && existing != fqn) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:46 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. doc/next/7-ports.md

    The `GORISCV64` environment variable defaults to `rva20u64`.
    
    ### Wasm {#wasm}
    
    <!-- go.dev/issue/63718 -->
    The `go_wasip1_wasm_exec` script in `GOROOT/misc/wasm` has dropped support
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:52 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/mlir2graphdef/functional-if-ops.mlir

    }
    
    // Verify that If op is mapped to TensorFlow StatelessIf op if the is_stateless
    // attribute is present and otherwise it is mapped to TensorFlow If op. In both
    // cases, the additional attribute should be dropped.
    
    // CHECK: name: "StatefulIf"
    // CHECK-NOT: name:
    // CHECK: op: "If"
    // CHECK-NOT: is_stateless
    // CHECK:  attr {
    // CHECK:    key: "output_shapes"
    // CHECK:    value {
    // CHECK:      list {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 25 12:28:56 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/mlir2graphdef/functional-while-ops.mlir

    }
    
    // Verify that While op is mapped to TensorFlow StatelessWhile op if the
    // is_stateless attribute is present and otherwise it is mapped to TensorFlow
    // While op. In both cases, the additional attribute should be dropped.
    
    // CHECK: name: "StatefulWhile"
    // CHECK-NOT: name:
    // CHECK: op: "While"
    // CHECK-NOT: is_stateless
    // CHECK-NOT: shape_invariant
    // CHECK:  attr {
    // CHECK:    key: "output_shapes"
    // CHECK:    value {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 25 12:28:56 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__authorization.k8s.io__v1_openapi.json

    containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 66.1K bytes
    - Viewed (0)
  9. pkg/controller/deployment/rollback.go

    	setRollbackTo(d, nil)
    	_, err := dc.client.AppsV1().Deployments(d.Namespace).Update(ctx, d, metav1.UpdateOptions{})
    	return err
    }
    
    // TODO: Remove this when extensions/v1beta1 and apps/v1beta1 Deployment are dropped.
    func getRollbackTo(d *apps.Deployment) *extensions.RollbackConfig {
    	// Extract the annotation used for round-tripping the deprecated RollbackTo field.
    	revision := d.Annotations[apps.DeprecatedRollbackTo]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 05 23:39:52 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/file_system_watching.adoc

    If a build declares its inputs and outputs correctly, this should not happen.
    So it's either a bug we must fix or your build lacks declaration for some inputs or outputs.
    
    VFS state dropped due to lost state::
    Did you receive a message that reads `Dropped VFS state due to lost state` during a build?
    _Please https://gradle-community.slack.com/app_redirect?channel=file-system-watching[let us know on the Gradle community Slack]._
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 26 16:37:56 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top