Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 583 for representing (0.22 sec)

  1. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/field.go

    // ParseSigned will panic if b is invalid.
    func (b BitField) ParseSigned(i [2]uint32) int32 {
    	u := int32(b.Parse(i))
    	return u << (32 - b.Bits) >> (32 - b.Bits)
    }
    
    // BitFields is a series of BitFields representing a single number.
    type BitFields []BitField
    
    func (bs BitFields) String() string {
    	ss := make([]string, len(bs))
    	for i, bf := range bs {
    		ss[i] = bf.String()
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:59:52 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. operator/cmd/mesh/testdata/operator/output/operator-dump.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: Wed Jan 10 05:10:03 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/LazyRuleAwareWithBaseConfigurationMetadata.java

    import org.gradle.internal.component.model.VariantResolveMetadata;
    
    import javax.annotation.Nullable;
    import java.util.List;
    import java.util.Set;
    
    /**
     * A configuration representing an additional variant of a published component added by a component metadata rule.
     * It can be backed by an existing configuration/variant (base) or can initially be empty (base = null).
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 6K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/Project.java

    import org.apache.maven.api.annotations.Experimental;
    import org.apache.maven.api.annotations.Nonnull;
    import org.apache.maven.api.model.Build;
    import org.apache.maven.api.model.Model;
    
    /**
     * Interface representing a Maven project which can be created using the
     * {@link org.apache.maven.api.services.ProjectBuilder} service.
     * Such objects are immutable and plugin that wish to modify such objects
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 05 09:42:51 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/syntax/nodes.go

    // Nodes
    
    type Node interface {
    	// Pos() returns the position associated with the node as follows:
    	// 1) The position of a node representing a terminal syntax production
    	//    (Name, BasicLit, etc.) is the position of the respective production
    	//    in the source.
    	// 2) The position of a node representing a non-terminal production
    	//    (IndexExpr, IfStmt, etc.) is the position of a token uniquely
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 14:52:38 UTC 2023
    - 9K bytes
    - Viewed (0)
  6. guava/src/com/google/common/math/LinearTransformation.java

        }
      }
    
      /**
       * Builds an instance representing a vertical transformation with a constant value of {@code x}.
       * (The inverse of this will be a horizontal transformation.)
       */
      public static LinearTransformation vertical(double x) {
        checkArgument(isFinite(x));
        return new VerticalLinearTransformation(x);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/cli-runtime/pkg/resource/result.go

    		}
    		infos = append(infos, info)
    		return nil
    	})
    	err = utilerrors.FilterOut(err, r.ignoreErrors...)
    
    	r.info, r.err = infos, err
    	return infos, err
    }
    
    // Object returns a single object representing the output of a single visit to all
    // found resources.  If the Builder was a singular context (expected to return a
    // single resource by user input) and only a single resource was found, the resource
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 23:00:24 UTC 2019
    - 7.3K bytes
    - Viewed (0)
  8. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/ClasspathCompareStrategy.java

    import org.gradle.internal.fingerprint.FileSystemLocationFingerprint;
    
    import javax.annotation.Nullable;
    import java.util.Iterator;
    import java.util.Map;
    
    /**
     * Compares two {@link FileCollectionFingerprint}s representing classpaths.
     *
     * That means that the comparison happens in-order with relative path sensitivity.
     */
    public class ClasspathCompareStrategy extends AbstractFingerprintCompareStrategy {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  9. cluster/addons/calico-policy-controller/hostendpoints-crd.yaml

                type: string
              kind:
                description: 'Kind is a string value representing the REST resource this
                  object represents. Servers may infer this from the endpoint the client
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 4.9K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/MapDifference.java

    import com.google.errorprone.annotations.DoNotMock;
    import java.util.Map;
    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * An object representing the differences between two maps.
     *
     * @author Kevin Bourrillion
     * @since 2.0
     */
    @DoNotMock("Use Maps.difference")
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Aug 04 13:28:27 UTC 2021
    - 3.5K bytes
    - Viewed (0)
Back to top