Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 161 for Invert (0.73 sec)

  1. src/cmd/link/internal/ld/lib.go

    	Maxalign   int
    	Minalign   int
    	Dwarfregsp int
    	Dwarfreglr int
    
    	// Threshold of total text size, used for trampoline insertion. If the total
    	// text size is smaller than TrampLimit, we won't need to insert trampolines.
    	// It is pretty close to the offset range of a direct CALL machine instruction.
    	// We leave some room for extra stuff like PLT stubs.
    	TrampLimit uint64
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/celcoststability_test.go

    				"type(self.val1) == double": 4,
    
    				// Use a int64 value with a number openAPI schema type since float representations of whole numbers
    				// (e.g. 1.0, 0.0) can convert to int representations (e.g. 1, 0) in yaml to json translation, and
    				// then get parsed as int64s.
    				"type(self.val7) == double": 4,
    				"self.val7 == 1.0":          3,
    			},
    		},
    		{name: "numeric comparisons",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:20:16 UTC 2024
    - 80.2K bytes
    - Viewed (0)
  3. guava/src/com/google/common/util/concurrent/Futures.java

       * the input, and if the input is cancelled, the returned {@code Future} will receive a callback
       * in which it will attempt to cancel itself.
       *
       * <p>An example use of this method is to convert a serializable object returned from an RPC into
       * a POJO.
       *
       * @param input The future to transform
       * @param function A Function to transform the results of the provided future to the results of
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 64.1K bytes
    - Viewed (0)
  4. src/runtime/mgcpacer.go

    // heuristic anyway. Furthermore, no part of the heuristic depends on
    // the two assist ratio values being exact reciprocals of one another, since
    // the two values are used to convert values from different sources.
    //
    // The worst case result of this raciness is that we may miss a larger shift
    // in the ratio (say, if we decide to pace more aggressively against the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencySubstitutionRulesIntegrationTest.groovy

                    substitute module(":foo:bar:baz:") using module("")
                }
    """
    
            when:
            fails "checkDeps"
    
            then:
            failure.assertHasCause("Cannot convert the provided notation to an object of type ComponentSelector: :foo:bar:baz:")
        }
    
        void "reasonable error message when attempting to add rule that substitutes with an unversioned module selector"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 52.8K bytes
    - Viewed (0)
  6. src/time/time.go

    	// but otherwise can be changed at will.
    	absoluteZeroYear = -292277022399
    
    	// The year of the zero Time.
    	// Assumed by the unixToInternal computation below.
    	internalYear = 1
    
    	// Offsets to convert between internal and absolute or Unix times.
    	absoluteToInternal int64 = (absoluteZeroYear - internalYear) * 365.2425 * secondsPerDay
    	internalToAbsolute       = -absoluteToInternal
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  7. pkg/controller/replicaset/replica_set_test.go

    	received := make(chan string)
    	manager.syncHandler = func(ctx context.Context, key string) error {
    		received <- key
    		return nil
    	}
    
    	// The DeletedFinalStateUnknown object should cause the ReplicaSet manager to insert
    	// the controller matching the selectors of the deleted pod into the work queue.
    	labelMap := map[string]string{"foo": "bar"}
    	rsSpec := newReplicaSet(1, labelMap)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
  8. src/net/http/transport.go

    	//     RoundTripper returns.
    	ctx, cancel := context.WithCancelCause(req.Context())
    
    	// Convert Request.Cancel into context cancelation.
    	if origReq.Cancel != nil {
    		go awaitLegacyCancel(ctx, cancel, origReq)
    	}
    
    	// Convert Transport.CancelRequest into context cancelation.
    	//
    	// This is lamentably expensive. CancelRequest has been deprecated for a long time
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  9. src/runtime/map.go

    	base := bucketShift(b)
    	nbuckets := base
    	// For small b, overflow buckets are unlikely.
    	// Avoid the overhead of the calculation.
    	if b >= 4 {
    		// Add on the estimated number of overflow buckets
    		// required to insert the median number of elements
    		// used with this value of b.
    		nbuckets += bucketShift(b - 4)
    		sz := t.Bucket.Size_ * nbuckets
    		up := roundupsize(sz, !t.Bucket.Pointers())
    		if up != sz {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ppc64/ssa.go

    		//
    		// AuxInt value indicates conditions 0=LT 1=GT 2=EQ 3=SO 4=GE 5=LE 6=NE 7=NSO.
    		// ISEL accepts a CR bit argument, not a condition as expressed by AuxInt.
    		// Convert the condition to a CR bit argument by the following conversion:
    		//
    		// AuxInt&3 ? arg0 : arg1 for conditions LT, GT, EQ, SO
    		// AuxInt&3 ? arg1 : arg0 for conditions GE, LE, NE, NSO
    		p := s.Prog(v.Op.Asm())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
Back to top