Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 4,066 for sget (0.26 sec)

  1. src/internal/coverage/decodecounter/decodecounterfile.go

    	sget := func() (string, error) {
    		kidx := slr.ReadULEB128()
    		if int(kidx) >= cdr.stab.Entries() {
    			return "", fmt.Errorf("malformed string table ref")
    		}
    		return cdr.stab.Get(uint32(kidx)), nil
    	}
    	nents := slr.ReadULEB128()
    	cdr.args = make(map[string]string, int(nents))
    	for i := uint64(0); i < nents; i++ {
    		k, errk := sget()
    		if errk != nil {
    			return errk
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 27 15:29:54 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/get.go

    )
    
    // getterFunc performs a get request with the given context and object name. The request
    // may be used to deserialize an options object to pass to the getter.
    type getterFunc func(ctx context.Context, name string, req *http.Request) (runtime.Object, error)
    
    // getResourceHandler is an HTTP handler function for get requests. It delegates to the
    // passed-in getterFunc to perform the actual get.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 10:22:16 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/wasm/wasmobj.go

    		}
    
    		switch p.As {
    		case AGet:
    			if p.From.Type == obj.TYPE_ADDR {
    				get := *p
    				p.As = obj.ANOP
    
    				switch get.From.Name {
    				case obj.NAME_EXTERN:
    					p = appendp(p, AI64Const, get.From)
    				case obj.NAME_AUTO, obj.NAME_PARAM:
    					p = appendp(p, AGet, regAddr(get.From.Reg))
    					if get.From.Reg == REG_SP {
    						p = appendp(p, AI64ExtendI32U)
    					}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  4. platforms/software/security/src/testFixtures/groovy/org/gradle/security/fixtures/SigningFixtures.groovy

            PGPSignatureGenerator sGen = new PGPSignatureGenerator(new BcPGPContentSignerBuilder(PublicKeyAlgorithmTags.RSA_GENERAL, HashAlgorithmTags.SHA1));
    
            sGen.init(PGPSignature.POSITIVE_CERTIFICATION, signingKeyPair.privateKey)
    
            PGPSignature signature = sGen.generateCertification(userAttributesVector, signingKeyPair.publicKey)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  5. cmd/metacache-set.go

    	// Retention configuration, needed to be passed along with lifecycle if set.
    	Retention lock.Retention `msg:"-"`
    
    	// Replication configuration
    	Replication replicationConfig `msg:"-"`
    
    	// StopDiskAtLimit will stop listing on each disk when limit number off objects has been returned.
    	StopDiskAtLimit bool
    
    	// pool and set of where the cache is located.
    	pool, set int
    }
    
    func init() {
    	gob.Register(listPathOptions{})
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 22:18:44 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/experimental/tac/tests/get-alternative-subgraph.mlir

    // RUN: tac-opt-all-backends -tfl-get-alternative-subgraph='device-specs=GPU' %s -split-input-file -verify-diagnostics | FileCheck %s
    
    module {
      func.func @simpleTest(%arg0: tensor<1xf32>, %arg1: tensor<1xf32>, %arg2: tensor<1xf32>, %arg3: tensor<1xf32>) -> tensor<2x1xf32> {
        %0 = func.call @func_0_GPU_FLOAT(%arg0, %arg1, %arg2) {tac.interface_name = "func_0"} : (tensor<1xf32>, tensor<1xf32>, tensor<1xf32>) -> tensor<1xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  7. src/runtime/runtime-gdb_test.go

    		"-iex", "add-auto-load-safe-path " + filepath.Join(testenv.GOROOT(t), "src", "runtime"),
    		"-ex", "set startup-with-shell off",
    		// Some gdb may set scheduling-locking as "step" by default. This prevents background tasks
    		// (e.g GC) from completing which may result in a hang when executing the step command.
    		// See #49852.
    		"-ex", "set scheduler-locking off",
    		"-ex", "break main.main",
    		"-ex", "run",
    		"-ex", "step",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  8. src/runtime/netpoll_solaris.go

    }
    
    // Updates the association with a new set of interested events. After
    // this call, port_getn will return one and only one event for that
    // particular descriptor, so this function needs to be called again.
    func netpollupdate(pd *pollDesc, set, clear uint32) {
    	if pd.info().closing() {
    		return
    	}
    
    	old := pd.user
    	events := (old & ^clear) | set
    	if old == events {
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/PropertyLifecycleIntegrationTest.groovy

                property.set(provider)
    
                assert property.get() == 1
                assert property.get() == 2
    
                property.finalizeValue()
    
                assert counter == 3 // is eager
                assert property.get() == 3
    
                counter = 45
                assert property.get() == 3
    
                property.set(12)
            """
    
            when:
            fails()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 04 14:00:52 UTC 2024
    - 15K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/ProviderIntegrationTest.groovy

                    text.set('Hello')
                }
                tasks.register('myTask2', MyTask) {
                    text.set('World')
                }
    
                tasks.register('combined', MyTask) {
                    text.set(providers.zip(
                        tasks.named('myTask1').map { t -> t.text.get() },
                        tasks.named('myTask2').map { t -> t.text.get() }) { h, w ->
                        "\$h, \$w!"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 15:32:52 UTC 2023
    - 11.6K bytes
    - Viewed (0)
Back to top