Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 422 for representing (0.16 sec)

  1. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/internal/xcodeproj/PBXLegacyTarget.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.ide.xcode.internal.xcodeproj;
    
    /**
     * Concrete target type representing targets built by xcode itself, rather than an external build
     * system.
     */
    public class PBXLegacyTarget extends PBXTarget {
        private String buildArgumentsString = "$(ACTION)";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__authentication.k8s.io__v1alpha1_openapi.json

          "io.k8s.apimachinery.pkg.apis.meta.v1.FieldsV1": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:25 UTC 2023
    - 31.5K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/graph/DirectedGraphConnections.java

        }
      }
    
      private static final Object PRED = new Object();
    
      // Every value in this map must either be an instance of PredAndSucc with a successorValue of
      // type V, PRED (representing predecessor), or an instance of type V (representing successor).
      private final Map<N, Object> adjacentNodeValues;
    
      /**
       * All node connections in this graph, in edge insertion order.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 18K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis_openapi.json

                "type": "string"
              },
              "kind": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:05:52 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/file/ConfigurableFilePermissions.java

         * Sets Unix style permissions. Accept values in two styles of notation:
         * <ul>
         *     <li>NUMERIC notation: uses 3 octal (base-8) digits representing permissions for the 3 categories of users; for example "755"</li>
         *     <li>SYMBOLIC notation: uses 3 sets of 3 characters, each set representing the permissions for one of the user categories; for example "rwxr-xr-x"</li>
         * </ul>
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 12:31:43 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  6. src/image/image.go

    	i := p.PixOffset(x, y)
    	s := p.Pix[i : i+4 : i+4] // Small cap improves performance, see https://golang.org/issue/27857
    	s[0] = c.R
    	s[1] = c.G
    	s[2] = c.B
    	s[3] = c.A
    }
    
    // SubImage returns an image representing the portion of the image p visible
    // through r. The returned value shares pixels with the original image.
    func (p *RGBA) SubImage(r Rectangle) Image {
    	r = r.Intersect(p.Rect)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 34.9K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/file/FilePermissions.java

     * <p>
     * Follows the style of Unix file permissions, based on the concept of file ownership.
     * <p>
     * Permissions are grouped into 3 distinct categories (representing different classes of users):
     * <ul>
     *     <li>OWNER (user) permissions: what actions the owner of the file/directory can perform on the file/directory</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 12:31:43 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__authentication.k8s.io__v1beta1_openapi.json

          "io.k8s.apimachinery.pkg.apis.meta.v1.FieldsV1": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:25 UTC 2023
    - 31.5K bytes
    - Viewed (0)
  9. pkg/proxy/util/nfacct/handler.go

    	"golang.org/x/sys/unix"
    )
    
    // handler is an injectable interface for creating netlink request.
    type handler interface {
    	newRequest(cmd int, flags uint16) request
    }
    
    // request is an injectable interface representing a netlink request.
    type request interface {
    	Serialize() []byte
    	AddData(data nl.NetlinkRequestData)
    	AddRawData(data []byte)
    	Execute(sockType int, resType uint16) ([][]byte, error)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 06:47:50 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/python/converter_python_api.h

    // Convert a model represented in `input_contents`. `model_flags_proto`
    // describes model parameters. `flags_proto` describes conversion
    // parameters (see relevant .protos for more information). Returns a string
    // representing the contents of the converted model. When extended_return
    // flag is set to true returns a dictionary that contains string representation
    // of the converted model and some statistics like arithmetic ops count.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 18:18:30 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top