Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 583 for representing (0.31 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/authentication/AllSchemesAuthentication.java

     */
    
    package org.gradle.internal.authentication;
    
    import org.gradle.api.credentials.Credentials;
    import org.gradle.authentication.Authentication;
    
    /**
     * Authentication scheme representing all supported schemes for a given protocol
     */
    public class AllSchemesAuthentication extends AbstractAuthentication {
        public AllSchemesAuthentication(Credentials credentials) {
            super("all", Authentication.class);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 07 17:14:48 UTC 2016
    - 1.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_patterns.td

      "!$0 || $0.getValue() == ::mlir::mhlo::ComparisonType::FLOAT">>;
    def SameTypeOrDefaultCompare : Constraint<CPred<
      "SameTypeOrDefaultCompare($0, $1)">>;
    
    // Converts a dag of HLOs representing banker rounding (round x.5 to nearest
    // even) to tf.round. This only supports float types because mhlo.floor only
    // supports float types. tf.round with integer input type will become an
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Feb 03 08:58:22 UTC 2024
    - 34K bytes
    - Viewed (0)
  3. platforms/software/test-suites-base/src/main/java/org/gradle/testing/base/TestSuiteSpec.java

     */
    package org.gradle.testing.base;
    
    import org.gradle.api.Incubating;
    import org.gradle.platform.base.ComponentSpec;
    import org.gradle.platform.base.GeneralComponentSpec;
    
    /**
     * A component representing a suite of tests that will be built and executed together.
     */
    @Incubating
    public interface TestSuiteSpec extends GeneralComponentSpec {
        /**
         * The tested component.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 17 16:02:04 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/SortedMapDifference.java

     */
    
    package com.google.common.collect;
    
    import com.google.common.annotations.GwtCompatible;
    import java.util.SortedMap;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * An object representing the differences between two sorted maps.
     *
     * @author Louis Wasserman
     * @since 8.0
     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Aug 04 13:28:27 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  5. manifests/charts/istio-operator/crds/crd-operator.yaml

          name: Revision
          type: string
        - description: IOP current state
          jsonPath: .status.status
          name: Status
          type: string
        - description: 'CreationTimestamp is a timestamp representing the server time
            when this object was created. It is not guaranteed to be set in happens-before
            order across separate operations. Clients may not set this value. It is represented
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 27 03:38:21 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  6. src/main/java/jcifs/SID.java

    
        /**
         * Get the RID
         * 
         * This is the last subauthority identifier
         * 
         * @return the RID
         */
        int getRid ();
    
    
        /**
         * Return a String representing this SID ideal for display to
         * users. This method should return the same text that the ACL
         * editor in Windows would display.
         * <p>
         * Specifically, if the SID has
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 5.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types/sym.go

    // allows using Sym pointer equality to test for Go identifier uniqueness when
    // handling selector expressions.
    //
    // Ideally, Sym should be used for representing Go language constructs,
    // while cmd/internal/obj.LSym is used for representing emitted artifacts.
    //
    // NOTE: In practice, things can be messier than the description above
    // for various reasons (historical, convenience).
    type Sym struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 26 21:56:56 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  8. src/go/parser/interface.go

    //
    // If the source couldn't be read, the returned AST is nil and the error
    // indicates the specific failure. If the source was read but syntax
    // errors were found, the result is a partial AST (with [ast.Bad]* nodes
    // representing the fragments of erroneous source code). Multiple errors
    // are returned via a scanner.ErrorList which is sorted by source position.
    func ParseFile(fset *token.FileSet, filename string, src any, mode Mode) (f *ast.File, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  9. cluster/addons/volumesnapshots/crd/snapshot.storage.k8s.io_volumesnapshots.yaml

              name: SourcePVC
              type: string
            - description: If a snapshot already exists, this contains the name of the existing
                VolumeSnapshotContent object representing the existing snapshot.
              jsonPath: .spec.source.volumeSnapshotContentName
              name: SourceSnapshotContent
              type: string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 26 07:24:12 UTC 2022
    - 20.9K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/toolchain/Toolchain.java

         * @return the toolchain type
         */
        String getType();
    
        /**
         * Gets the platform tool executable.
         *
         * @param toolName the tool platform independent tool name.
         * @return file representing the tool executable, or null if the tool can not be found
         */
        String findTool(String toolName);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top