Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 171 for setchr (0.16 sec)

  1. subprojects/core/src/test/groovy/org/gradle/internal/classpath/BasicCallInterceptionTest.groovy

            "normal setter"       | "call site" | "setTestString(String)"                       | { it.testString = "value" }          | false
            "boolean setter"      | "call site" | "setTestFlag(boolean)"                        | { it.testFlag = true }               | false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 09:44:54 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  2. src/runtime/signal_openbsd_arm.go

    	return *(*uint32)(add(unsafe.Pointer(c.info), 16))
    }
    
    func (c *sigctxt) set_pc(x uint32)  { c.regs().sc_pc = x }
    func (c *sigctxt) set_sp(x uint32)  { c.regs().sc_usr_sp = x }
    func (c *sigctxt) set_lr(x uint32)  { c.regs().sc_usr_lr = x }
    func (c *sigctxt) set_r10(x uint32) { c.regs().sc_r10 = x }
    
    func (c *sigctxt) set_sigcode(x uint32) { c.info.si_code = int32(x) }
    func (c *sigctxt) set_sigaddr(x uint32) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 13 18:13:30 UTC 2018
    - 2.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/PropertyAccessorTypeTest.groovy

            PropertyAccessorType.of(DeviantBean.class.getMethod("isidore")) == PropertyAccessorType.IS_GETTER
            PropertyAccessorType.fromName('settings') == PropertyAccessorType.SETTER
            PropertyAccessorType.of(DeviantBean.class.getMethod("settings", String)) == PropertyAccessorType.SETTER
        }
    
        def "deviant bean properties are considered as such by Java"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  4. pkg/wasm/cache.go

    		}
    		wasmLog.Debugf("fetching oci image from %s with options: %v", key.downloadURL, imgFetcherOps)
    		fetcher := NewImageFetcher(ctx, imgFetcherOps)
    		binaryFetcher, dChecksum, err = fetcher.PrepareFetch(u.Host + u.Path)
    		if err != nil {
    			wasmRemoteFetchCount.With(resultTag.Value(manifestFailure)).Increment()
    			return nil, fmt.Errorf("could not fetch Wasm OCI image: %v", err)
    		}
    	default:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. docs/sts/client_grants/__init__.py

            """
            Search for credentials with client_grants
            """
            if self.cid is not None:
                fetcher = self._create_credentials_fetcher()
                return RefreshableCredentials.create_from_metadata(
                    metadata=fetcher(),
                    refresh_using=fetcher,
                    method=self.METHOD,
                )
            else:
                return None
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 23 18:58:53 UTC 2021
    - 4.6K bytes
    - Viewed (0)
  6. src/mdo/java/WrapperProperties.java

    class WrapperProperties extends Properties {
    
        final Supplier<Map<String, String>> getter;
        final Consumer<Properties> setter;
    
        WrapperProperties(Supplier<Map<String, String>> getter, Consumer<Properties> setter) {
            this.getter = getter;
            this.setter = setter;
        }
    
        @Override
        public String getProperty(String key) {
            return getter.get().get(key);
        }
    
        @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 16:30:18 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/internal/plugin/plugin.go

    import (
    	"io"
    	"net/http"
    	"regexp"
    	"time"
    
    	"github.com/google/pprof/profile"
    )
    
    // Options groups all the optional plugins into pprof.
    type Options struct {
    	Writer  Writer
    	Flagset FlagSet
    	Fetch   Fetcher
    	Sym     Symbolizer
    	Obj     ObjTool
    	UI      UI
    
    	// HTTPServer is a function that should block serving http requests,
    	// including the handlers specified in args.  If non-nil, pprof will
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  8. src/runtime/defs_windows_arm.go

    func (c *context) lr() uintptr { return uintptr(c.lrr) }
    
    func (c *context) set_ip(x uintptr) { c.pc = uint32(x) }
    func (c *context) set_sp(x uintptr) { c.spr = uint32(x) }
    func (c *context) set_lr(x uintptr) { c.lrr = uint32(x) }
    
    // arm does not have frame pointer register.
    func (c *context) set_fp(x uintptr) {}
    
    func prepareContextForSigResume(c *context) {
    	c.r0 = c.spr
    	c.r1 = c.pc
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 08:26:52 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  9. src/runtime/defs_windows_386.go

    func (c *context) sp() uintptr { return uintptr(c.esp) }
    
    // 386 does not have link register, so this returns 0.
    func (c *context) lr() uintptr      { return 0 }
    func (c *context) set_lr(x uintptr) {}
    
    func (c *context) set_ip(x uintptr) { c.eip = uint32(x) }
    func (c *context) set_sp(x uintptr) { c.esp = uint32(x) }
    
    // 386 does not have frame pointer register.
    func (c *context) set_fp(x uintptr) {}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 08:26:52 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. pkg/security/security.go

    	// identity.
    	WorkloadKeyCertResourceName = "default"
    
    	// GCE is Credential fetcher type of Google plugin
    	GCE = "GoogleComputeEngine"
    
    	// JWT is a Credential fetcher type that reads from a JWT token file
    	JWT = "JWT"
    
    	// Mock is Credential fetcher type of mock plugin
    	Mock = "Mock" // testing only
    
    	// GoogleCAProvider uses the Google CA for workload certificate signing
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 19.1K bytes
    - Viewed (0)
Back to top