Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 102 for REGISTER (0.26 sec)

  1. src/cmd/compile/internal/ssa/regalloc.go

    	v *Value // Original (preregalloc) Value stored in this register.
    	c *Value // A Value equal to v which is currently in a register.  Might be v or a copy of it.
    	// If a register is unused, v==c==nil
    }
    
    type regAllocState struct {
    	f *Func
    
    	sdom        SparseTree
    	registers   []Register
    	numRegs     register
    	SPReg       register
    	SBReg       register
    	GReg        register
    	allocatable regMask
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  2. cmd/peer-rest-server.go

    	logger.FatalIf(getMetacacheListingRPC.Register(gm, server.GetMetacacheListingHandler), "unable to register handler")
    	logger.FatalIf(getMetricsRPC.Register(gm, server.GetMetricsHandler), "unable to register handler")
    	logger.FatalIf(getNetInfoRPC.Register(gm, server.GetNetInfoHandler), "unable to register handler")
    	logger.FatalIf(getOSInfoRPC.Register(gm, server.GetOSInfoHandler), "unable to register handler")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/DefaultModelRegistryTest.groovy

        def "discover children of scope when defining scope when node matching input type is not already discovered"() {
            registry.register("dep") { it.unmanaged(Bean, new Bean()) }
            registry.register("target") { it.unmanaged(String) }
            registry.register("childA") { it.unmanaged(String) }
            registry.register("childB") { it.unmanaged(String) }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 56K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/S390XOps.go

    // Notes:
    //  - Integer types live in the low portion of registers. Upper portions are junk.
    //  - Boolean types use the low-order byte of a register. 0=false, 1=true.
    //    Upper bytes are junk.
    //  - When doing sub-register operations, we try to write the whole
    //    destination register to avoid a partial-register write.
    //  - Unused portions of AuxInt (or the Val portion of ValAndOff) are
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K bytes
    - Viewed (0)
  5. cmd/test-utils_test.go

    		switch apiFunction {
    		case "PostPolicy":
    			// Register PostPolicy handler.
    			bucket.Methods(http.MethodPost).HeadersRegexp("Content-Type", "multipart/form-data*").HandlerFunc(api.PostPolicyBucketHandler)
    		case "HeadObject":
    			// Register HeadObject handler.
    			bucket.Methods("Head").Path("/{object:.+}").HandlerFunc(api.HeadObjectHandler)
    		case "GetObject":
    			// Register GetObject handler.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/riscv/obj.go

    	//  2. zero or more register operand identifiers (I = integer
    	//     register, F = float register), in uppercase
    	//  3. the word "Encoding"
    	//
    	// For example, rIIIEncoding indicates an R-type instruction with two
    	// integer register inputs and an integer register output; sFEncoding
    	// indicates an S-type instruction with rs2 being a float register.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/DefaultServiceRegistryTest.groovy

        }
    
        def failsWhenInterfaceIsRegistered() {
            def registry = new DefaultServiceRegistry()
            when:
            registry.register {
                it.add(Runnable)
            }
    
            then:
            def e = thrown(ServiceValidationException)
            e.message == "Cannot register an interface for construction."
        }
    
        def cachesInstancesCreatedUsingAProviderFactoryMethod() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:53:25 UTC 2024
    - 59.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/debug.go

    // BuildFuncDebugNoOptimized populates a FuncDebug object "rval" with
    // entries corresponding to the register-resident input parameters for
    // the function "f"; it is used when we are compiling without
    // optimization but the register ABI is enabled. For each reg param,
    // it constructs a 2-element location list: the first element holds
    // the input register, and the second element holds the stack location
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset_test.go

    // even though that is unfair.
    // Expects fairness when there is no competition, unfairness when there is competition.
    func TestNoRestraint(t *testing.T) {
    	metrics.Register()
    	testCases := []struct {
    		concurrency int
    		margin      float64
    		fair        bool
    		name        string
    	}{
    		{concurrency: 10, margin: 0.001, fair: true, name: "no-competition"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 58.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

                        task.$code
                    }
                }
    
                tasks.register("a", MyTask)
                tasks.register("b", MyTask) {
                    doLast(new MyAction())
                }
                tasks.register("c") {
                    doFirst(new MyAction())
                }
                tasks.register("d") {
                    doFirst { $code }
                }
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
Back to top