Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of about 10,000 for ARE (0.28 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/json/json.go

    // Unmarshal unmarshals the given data.
    // Object keys are case-sensitive.
    // Numbers decoded into interface{} fields are converted to int64 or float64.
    func Unmarshal(data []byte, v interface{}) error {
    	return kjson.UnmarshalCaseSensitivePreserveInts(data, v)
    }
    
    // ConvertInterfaceNumbers converts any json.Number values to int64 or float64.
    // Values which are map[string]interface{} or []interface{} are recursively visited
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 20 16:49:23 UTC 2021
    - 3.4K bytes
    - Viewed (0)
  2. tensorflow/cc/gradients/README.md

    # C++ gradients
    
    Gradients are currently being ported from
    [python](https://github.com/tensorflow/tensorflow/tree/master/tensorflow/python/ops)
    to C++ (in this directory).
    
    Contributions are welcome and much appreciated; please follow the instructions
    below.
    
    1.  Create the op gradient function in `foo_grad.cc` corresponding to the
        `foo_grad.py` file where the op originated (i.e. `array_grad.py` op
        gradients should be written in `array_grad.cc`).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 29 19:12:55 UTC 2021
    - 2K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildSrcProblemReportingIntegrationTest.groovy

                withProblem("Task `:broken` of type `org.gradle.api.DefaultTask`: cannot serialize object of type 'org.gradle.api.internal.project.DefaultProject', a subtype of 'org.gradle.api.Project', as these are not supported with the configuration cache.")
                problemsWithStackTraceCount = 1
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  4. cluster/addons/volumesnapshots/crd/snapshot.storage.k8s.io_volumesnapshotclasses.yaml

                    VolumeSnapshot is deleted. Supported values are "Retain" and "Delete".
                    "Retain" means that the VolumeSnapshotContent and its physical snapshot
                    on underlying storage system are kept. "Delete" means that the VolumeSnapshotContent
                    and its physical snapshot on underlying storage system are deleted.
                    Required.
                  enum:
                    - Delete
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 26 07:24:12 UTC 2022
    - 6.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/variant_attributes.adoc

        a. If the attribute has a known precedence, Gradle will stop as soon as there is a single candidate remaining.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 18:51:23 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  6. src/encoding/gob/doc.go

    a specification of its type, expressed in terms of a small set of predefined
    types. Pointers are not transmitted, but the things they point to are
    transmitted; that is, the values are flattened. Nil pointers are not permitted,
    as they have no value. Recursive types work fine, but
    recursive values (data with cycles) are problematic. This may change.
    
    To use gobs, create an [Encoder] and present it with a series of data items as
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/ExecutionFailure.java

         *
         * <p>Error messages are normalized to use new-line char as line separator.
         */
        ExecutionFailure assertHasCause(String cause);
    
        /**
         * Asserts that there is a failure present with the given cause (ie the bit after the description).
         *
         * <p>Error messages are normalized to use new-line char as line separator.
         * They are also required to contain a link to documentation.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 09:21:25 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/batch/v1/types.go

    	// the "SucceededCriteriaMet" condition is added, and the lingering pods are removed.
    	// The terminal state for such a Job has the "Complete" condition.
    	// Additionally, these rules are evaluated in order; Once the Job meets one of the rules,
    	// other rules are ignored. At most 20 elements are allowed.
    	// +listType=atomic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  9. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/KaEngineService.kt

     *
     * Engine services do not need to be implemented by a platform. Quite the contrary, they are implemented by the Analysis API engine and
     * intended to support platform implementations. They are defined in the Platform Interface, as opposed to the user-facing Analysis API,
     * because they are intended for the consumption of platform implementations, but not Analysis API users.
     *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. src/go/doc/comment/testdata/link4.txt

    -- input --
    These are not links.
    
    [x
    
    [x]:
    
    [x]:https://go.dev
    
    [x]https://go.dev
    
    [x]: surprise://go.dev
    
    [x]: surprise!
    
    But this is, with a tab (although it's unused).
    
    [z]:	https://go.dev
    -- gofmt --
    These are not links.
    
    [x
    
    [x]:
    
    [x]:https://go.dev
    
    [x]https://go.dev
    
    [x]: surprise://go.dev
    
    [x]: surprise!
    
    But this is, with a tab (although it's unused).
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:43 UTC 2022
    - 1020 bytes
    - Viewed (0)
Back to top