Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 401 for IsSame (0.17 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. src/io/ioutil/tempfile.go

    // replaces the last "*".
    // If dir is the empty string, TempFile uses the default directory
    // for temporary files (see [os.TempDir]).
    // Multiple programs calling TempFile simultaneously
    // will not choose the same file. The caller can use f.Name()
    // to find the pathname of the file. It is the caller's responsibility
    // to remove the file when no longer needed.
    //
    // Deprecated: As of Go 1.17, this function simply calls [os.CreateTemp].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:34:35 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  4. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/MavenArtifactSet.java

         *
         * The semantics of this method are the same as {@link MavenPublication#artifact(Object)}.
         *
         * @param source The source of the artifact content.
         */
        MavenArtifact artifact(Object source);
    
        /**
         * Creates and adds a {@link MavenArtifact} to the set, which is configured by the associated action.
         *
         * The semantics of this method are the same as {@link MavenPublication#artifact(Object, Action)}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/utils/side_effect_analysis_util.cc

      auto device_attr = op->getAttrOfType<StringAttr>("device");
      // Treat missing device attribute like unspecified (= empty string) attribute.
      // Note that different op instances with the same string (including empty
      // string) are seen as dependent (same resource instance).
      if (!device_attr) return "";
      return device_attr.str();
    }
    
    void MarkResourceAsReadAndWrite(
        Value value,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 16 00:33:17 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  6. 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)
  7. platforms/documentation/docs/src/samples/build-organization/composite-builds/plugin-dev/README.adoc

    == Composite build to develop a Gradle plugin
    
    This sample demonstrates a composite build used to develop a Gradle plugin in conjunction with a consuming build.
    
    The plugin could be in the same repository (only used by this build) or it could be in a different repository (used by many other builds).
    
    This removes the need for the special `buildSrc` project and makes prototyping plugins even easier.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/testdata/deployment-multi-service.yaml

    apiVersion: v1
    kind: Namespace
    metadata:
      name: bookinfo
      labels:
        istio-injection: "enabled"
    spec: {}
    ---
    # Deployment should generate a warning: two services using that deployment
    # using the same port but different protocol.
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: multiple-svc-multiple-prot
      namespace: bookinfo
      labels:
        app: details
        version: v1
    spec:
      replicas: 1
      selector:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 05 21:52:53 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/DefaultAttributeMatcher.java

            // Often times, collections of candidates will themselves differ even though their attributes are the same.
            // Disambiguating two different candidate lists which map to the same attribute lists in reality performs
            // the same work, so instead we cache disambiguation results based on the attributes being disambiguated.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/writer/PgpKeyGrouperTest.groovy

                "com.github.javaparser",
                "io.github.http-builder-ng.test"
            ]) as Set == [["org", "jetbrains"], ["io","github", "http-builder-ng"]] as Set
        }
    
        def "groups entries which have the same module component id"() {
            grouper {
                entry("org", "foo", "1.0", "foo-1.0.jar").addVerifiedKey(KEY_1)
                entry("org", "foo", "1.0", "foo-1.0.pom").addVerifiedKey(KEY_1)
            }
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8.6K bytes
    - Viewed (0)
Back to top