Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 236 for IsSame (0.16 sec)

  1. docs/en/docs/tutorial/extra-data-types.md

    # Extra Data Types
    
    Up to now, you have been using common data types, like:
    
    * `int`
    * `float`
    * `str`
    * `bool`
    
    But you can also use more complex data types.
    
    And you will still have the same features as seen up to now:
    
    * Great editor support.
    * Data conversion from incoming requests.
    * Data conversion for response data.
    * Data validation.
    * Automatic annotation and documentation.
    
    ## Other data types
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/TreeTraverser.java

     *     their equivalent on the result of {@code Traverser.forTree(tree)} where {@code tree}
     *     implements {@code SuccessorsFunction}, which has a similar API as {@link #children} or can be
     *     the same lambda function as passed into {@link #using(Function)}.
     *     <p>This class is scheduled to be removed in October 2019.
     */
    // TODO(b/68134636): Remove by 2019-10
    @Deprecated
    @Beta
    @GwtCompatible
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/serviceexportcache.go

    			}
    
    			// Otherwise, endpoints are only discoverable from within the same cluster.
    			return model.DiscoverableFromSameCluster
    		}
    
    		// Set the discoverability policy for the cluster.local host.
    		if features.EnableMCSClusterLocal {
    			// MCS cluster.local mode is enabled. Allow endpoints for the cluster.local host to be
    			// discoverable only from within the same cluster.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/provider/HasMultipleValues.java

         *
         * <p>This is the same as {@link #set(Iterable)} but returns this property to allow method chaining.</p>
         *
         * @param elements The elements, can be null.
         * @return this
         * @since 5.6
         */
        HasMultipleValues<T> value(@Nullable Iterable<? extends T> elements);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 18:32:13 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/utils/perception_ops_utils.cc

                                   << " is not set or not a string";
      }
      if (padding.getValue() != "VALID" && padding.getValue() != "SAME") {
        return func_.emitWarning()
               << "Padding for " << kMaxUnpooling << " must be 'SAME' or 'VALID'";
      }
      return success();
    }
    
    LogicalResult ConvertMaxUnpoolingFunc::CreateCustomOptions(
        std::string& custom_option_buffer) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/gradle_wrapper_basics.adoc

    image::wrapper-workflow.png[]
    
    The Wrapper is available as a `gradlew` or `gradlew.bat` file.
    
    The Wrapper provides the following benefits:
    
    - Standardizes a project on a given Gradle version.
    - Provisions the same Gradle version for different users.
    - Provisions the Gradle version for different execution environments (IDEs, CI servers...).
    
    [[sec:using_the_wrapper]]
    == Using the Gradle Wrapper
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 19:34:59 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/RangeMap.java

     * with the range (if any) that contains a specified key.
     *
     * <p>In contrast to {@link RangeSet}, no "coalescing" is done of {@linkplain
     * Range#isConnected(Range) connected} ranges, even if they are mapped to the same value.
     *
     * @author Louis Wasserman
     * @since 14.0
     */
    @SuppressWarnings("rawtypes") // https://github.com/google/guava/issues/989
    @DoNotMock("Use ImmutableRangeMap or TreeRangeMap")
    @GwtIncompatible
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  8. releasenotes/notes/se-conflict.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
      - 50478
    releaseNotes:
      - |
        **Fixed** a behavioral change in Istio 1.20 that caused merging of ServiceEntries with the same hostname and port names
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 02:06:39 UTC 2024
    - 261 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/build_pgo.txt

    stdout '"BuildID":' # check that output actually contains a build ID
    cp stdout list.out
    
    # build again with the same profile, should be cached
    go build -x -pgo=prof -o triv.exe triv.go
    ! stderr 'compile.*triv.go'
    
    # check that the build ID is the same
    go list -export -json=BuildID -pgo=prof triv.go
    cmp stdout list.out
    
    # overwrite the prof
    go run overwrite.go
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/registry/DaemonRegistryServicesTest.groovy

            add(Chmod, chmod)
        }}
    
        def registry(baseDir) {
            new DefaultServiceRegistry(parent).addProvider(new DaemonRegistryServices(tmp.createDir(baseDir)))
        }
    
        def "same daemon registry instance is used for same daemon registry file across service instances"() {
            expect:
            registry("a").get(DaemonRegistry).is(registry("a").get(DaemonRegistry))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 00:09:57 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top