Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 162 for loadsys (0.14 sec)

  1. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/ToolingApiRemoteIntegrationTest.groovy

                launcher.run()
            }
    
            then:
            toolingApi.gradleUserHomeDir.file("wrapper/dists/custom-dist").assertIsDir().listFiles().size() == 1
        }
    
        def "loads credentials from gradle.properties"() {
            given:
            server.withBasicAuthentication("username", "password")
            file("gradle.properties") << """
                systemProp.gradle.wrapperUser=username
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/ppc64/doc.go

    CR0 is the default for fixed-point instructions; CR1 for floating point; CR6 for
    vector instructions.
    
    Example:
    
    	ANDCC R3, R4, R5		<=>	and. r5, r3, r4 (set CR0)
    
    4. Loads and stores from memory
    
    In Go asm, opcodes starting with 'MOV' indicate a load or store. When the target
    is a memory reference, then it is a store; when the target is a register and the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  3. cmd/bucket-metadata.go

    func (b *BucketMetadata) SetCreatedAt(createdAt time.Time) {
    	if b.Created.IsZero() {
    		b.Created = UTCNow()
    	}
    	if !createdAt.IsZero() {
    		b.Created = createdAt.UTC()
    	}
    }
    
    // Load - loads the metadata of bucket by name from ObjectLayer api.
    // If an error is returned the returned metadata will be default initialized.
    func readBucketMetadata(ctx context.Context, api ObjectLayer, name string) (BucketMetadata, error) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  4. src/syscall/ztypes_linux_ppc64le.go

    	Softe     uint64
    	Trap      uint64
    	Dar       uint64
    	Dsisr     uint64
    	Result    uint64
    }
    
    type FdSet struct {
    	Bits [16]int64
    }
    
    type Sysinfo_t struct {
    	Uptime    int64
    	Loads     [3]uint64
    	Totalram  uint64
    	Freeram   uint64
    	Sharedram uint64
    	Bufferram uint64
    	Totalswap uint64
    	Freeswap  uint64
    	Procs     uint16
    	Pad       uint16
    	Pad_cgo_0 [4]byte
    	Totalhigh uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	// Atomic operations used for semantically inlining sync/atomic and
    	// internal/runtime/atomic. Atomic loads return a new memory so that
    	// the loads are properly ordered with respect to other loads and
    	// stores.
    	{name: "AtomicLoad8", argLength: 2, typ: "(UInt8,Mem)"},                                    // Load from arg0.  arg1=memory.  Returns loaded value and new memory.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/Wasm.rules

    (Com(64|32|16|8) x) => (I64Xor x (I64Const [-1]))
    
    (Not ...) => (I64Eqz ...)
    
    // Lowering pointer arithmetic
    (OffPtr ...) => (I64AddConst ...)
    
    // Lowering extension
    // It is unnecessary to extend loads
    (SignExt32to64        x:(I64Load32S _ _)) => x
    (SignExt16to(64|32)   x:(I64Load16S _ _)) => x
    (SignExt8to(64|32|16) x:(I64Load8S  _ _)) => x
    (ZeroExt32to64        x:(I64Load32U _ _)) => x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 03:56:57 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/walk/switch.go

    	// If we did both expr[3] loads in the unsigned domain, they would be CSEd, and that
    	// would in turn defeat the combining of expr[0]...expr[3] into a single 4-byte load.
    	// See issue 48222.
    	// By using signed loads for the ordered comparison and unsigned loads for the
    	// equality comparison, they don't get CSEd and the equality comparisons will be
    	// done using wider loads.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:01 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  8. src/syscall/ztypes_linux_arm64.go

    type PtraceRegs struct {
    	Regs   [31]uint64
    	Sp     uint64
    	Pc     uint64
    	Pstate uint64
    }
    
    type FdSet struct {
    	Bits [16]int64
    }
    
    type Sysinfo_t struct {
    	Uptime    int64
    	Loads     [3]uint64
    	Totalram  uint64
    	Freeram   uint64
    	Sharedram uint64
    	Bufferram uint64
    	Totalswap uint64
    	Freeswap  uint64
    	Procs     uint16
    	Pad       uint16
    	Pad_cgo_0 [4]byte
    	Totalhigh uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/RISCV64Ops.go

    			},
    			typ:            "Mem",
    			faultOnNilArg0: true,
    			faultOnNilArg1: true,
    		},
    
    		// Atomic loads.
    		// load from arg0. arg1=mem.
    		// returns <value,memory> so they can be properly ordered with other loads.
    		{name: "LoweredAtomicLoad8", argLength: 2, reg: gpload, faultOnNilArg0: true},
    		{name: "LoweredAtomicLoad32", argLength: 2, reg: gpload, faultOnNilArg0: true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_mips64.go

    	Hi       uint64
    	Epc      uint64
    	Badvaddr uint64
    	Status   uint64
    	Cause    uint64
    }
    
    type FdSet struct {
    	Bits [16]int64
    }
    
    type Sysinfo_t struct {
    	Uptime    int64
    	Loads     [3]uint64
    	Totalram  uint64
    	Freeram   uint64
    	Sharedram uint64
    	Bufferram uint64
    	Totalswap uint64
    	Freeswap  uint64
    	Procs     uint16
    	Pad       uint16
    	Totalhigh uint64
    	Freehigh  uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
Back to top