Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 51 for Extender (0.16 sec)

  1. src/runtime/malloc.go

    	// heapAddrBits is the number of bits in a heap address. On
    	// amd64, addresses are sign-extended beyond heapAddrBits. On
    	// other arches, they are zero-extended.
    	//
    	// On most 64-bit platforms, we limit this to 48 bits based on a
    	// combination of hardware and OS limitations.
    	//
    	// amd64 hardware limits addresses to 48 bits, sign-extended
    	// to 64 bits. Addresses where the top 16 bits are not either
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            def configuration3 = conf("replacedConf")
            configuration.setExtendsFrom([configuration3])
    
            then:
            configuration.extendsFrom == [configuration3] as Set
        }
    
        def "extended configurations are not duplicated"() {
            def configuration = conf()
            def configuration1 = conf("other")
    
            when:
            configuration.extendsFrom(configuration1, configuration1)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. src/cmd/compile/internal/ssa/_gen/S390XOps.go

    		// compare-and-branch (register-immediate)
    		//  - integrates comparison of Controls[0] with AuxInt
    		//  - control value must be in a general purpose register
    		//  - the AuxInt value is sign-extended for signed comparisons
    		//    and zero-extended for unsigned comparisons
    		{name: "CIJ", controls: 1, aux: "S390XCCMaskInt8"},    // signed 32-bit integer comparison
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top