Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 149 for extended (0.2 sec)

  1. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (MOV(H|W)reg x:(MOVHloadidx _ _ _)) => x
    (MOV(WZ|W)reg x:(MOV(WZ|W)load _ _)) => x
    (MOV(WZ|W)reg x:(MOV(WZ|W)loadidx _ _ _)) => x
    (MOV(B|W)Zreg x:(Select0 (LoweredAtomicLoad(8|32) _ _))) => x
    
    // don't extend if argument is already extended
    (MOVBreg x:(Arg <t>)) && is8BitInt(t) && t.IsSigned() => x
    (MOVBZreg x:(Arg <t>)) && is8BitInt(t) && !t.IsSigned() => x
    (MOVHreg x:(Arg <t>)) && (is8BitInt(t) || is16BitInt(t)) && t.IsSigned() => x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    // Pack packs a full Message.
    func (m *Message) Pack() ([]byte, error) {
    	return m.AppendPack(make([]byte, 0, packStartingCap))
    }
    
    // AppendPack is like Pack but appends the full Message to b and returns the
    // extended buffer.
    func (m *Message) AppendPack(b []byte) ([]byte, error) {
    	// Validate the lengths. It is very unlikely that anyone will try to
    	// pack more than 65535 of any particular type, but it is possible and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/S390XOps.go

    		{name: "MOVBZreg", argLength: 1, reg: gp11sp, asm: "MOVBZ", typ: "UInt64"}, // zero extend arg0 from int8 to int64
    		{name: "MOVHreg", argLength: 1, reg: gp11sp, asm: "MOVH", typ: "Int64"},    // sign extend arg0 from int16 to int64
    		{name: "MOVHZreg", argLength: 1, reg: gp11sp, asm: "MOVHZ", typ: "UInt64"}, // zero extend arg0 from int16 to int64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/filesystem/modular_filesystem_test.cc

      Status status = env_->RecursivelyCreateDir(parent_path);
      if (!status.ok())
        GTEST_SKIP() << "RecursivelyCreateDir() not supported: " << status;
    
      const std::string new_dirpath = GetURIForPath("some/path/that/is/extended");
      status = env_->RecursivelyCreateDir(new_dirpath);
      EXPECT_PRED2(UnimplementedOrReturnsCode, status, Code::OK);
    }
    
    TEST_P(ModularFileSystemTest, TestRecursivelyCreateDirFromNestedFile) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 20:25:58 UTC 2022
    - 71K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    	"details":  "Extended data associated with the reason.  Each reason may define its own extended details. This field is optional and the data returned is not guaranteed to conform to any schema except that defined by the reason type.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  6. pkg/kubelet/nodestatus/setters_test.go

    						"inactive":        *resource.NewQuantity(0, resource.BinarySI),
    					},
    				},
    			},
    		},
    		{
    			desc: "extended resources not present in capacity are removed from allocatable",
    			node: &v1.Node{
    				Status: v1.NodeStatus{
    					Allocatable: v1.ResourceList{
    						"example.com/extended": *resource.NewQuantity(1, resource.BinarySI),
    					},
    				},
    			},
    			maxPods: 110,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 21:47:24 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  7. cmd/xl-storage-format-v2.go

    	WrittenByVersion uint64                `msg:"v"` // Tracks written by MinIO version
    }
    
    // xlFlags contains flags on the object.
    // This can be extended up to 64 bits without breaking compatibility.
    type xlFlags uint8
    
    const (
    	xlFlagFreeVersion xlFlags = 1 << iota
    	xlFlagUsesDataDir
    	xlFlagInlineData
    )
    
    func (x xlFlags) String() string {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    //
    // Smart pointers:
    //   scoped_ptr     - as in TR2.
    //
    // Regular expressions:
    //   RE             - a simple regular expression class using the POSIX
    //                    Extended Regular Expression syntax on UNIX-like
    //                    platforms, or a reduced regular exception syntax on
    //                    other platforms, including Windows.
    //
    // Logging:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  9. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // is no information available. A Reason clarifies an HTTP status
      // code but does not override it.
      // +optional
      optional string reason = 4;
    
      // Extended data associated with the reason.  Each reason may define its
      // own extended details. This field is optional and the data returned
      // is not guaranteed to conform to any schema except that defined by
      // the reason type.
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // is no information available. A Reason clarifies an HTTP status
      // code but does not override it.
      // +optional
      optional string reason = 4;
    
      // Extended data associated with the reason.  Each reason may define its
      // own extended details. This field is optional and the data returned
      // is not guaranteed to conform to any schema except that defined by
      // the reason type.
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
Back to top