Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 234 for formaction (0.15 sec)

  1. src/net/dial.go

    // When using TCP, and the host in the address parameter resolves to
    // multiple IP addresses, the timeout is spread over each consecutive
    // dial, such that each is given an appropriate fraction of the time
    // to connect.
    //
    // See func Dial for a description of the network and address
    // parameters.
    func DialTimeout(network, address string, timeout time.Duration) (Conn, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  2. src/hash/crc32/crc32_test.go

    	{0xa20b7167, 0x66ed1d8b, "The fugacity of a constituent in a mixture of gases at a given temperature is proportional to its mole fraction.  Lewis-Randall Rule", "crc\x01ʇ\x91M<lR[", "crc\x01wB\x84\x81{\xaco\xb1"},
    	{0x8e0bb443, 0xdcded527, "How can you write a big system without C++?  -Paul Glick", "crc\x01ʇ\x91M\x0e\x88\x89\xed", "crc\x01wB\x84\x813\xd7C\u007f"},
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/options/server_run_options.go

    		"The client's other in-flight requests won't be affected, and the client will reconnect, likely landing on a different apiserver after going through the load balancer again. "+
    		"This argument sets the fraction of requests that will be sent a GOAWAY. Clusters with single apiservers, or which don't use a load balancer, should NOT enable this. "+
    		"Min is 0 (off), Max is .02 (1/50 requests); .001 (1/1000) is a recommended starting point.")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 21:53:51 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  4. src/runtime/mgcscavenge.go

    	s.g = getg()
    
    	s.timer = new(timer)
    	f := func(s any, _ uintptr, _ int64) {
    		s.(*scavengerState).wake()
    	}
    	s.timer.init(f, s)
    
    	// input: fraction of CPU time actually used.
    	// setpoint: ideal CPU fraction.
    	// output: ratio of time worked to time slept (determines sleep time).
    	//
    	// The output of this controller is somewhat indirect to what we actually
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  5. src/math/big/ftoa.go

    	if d.exp > 0 {
    		m := min(len(d.mant), d.exp)
    		buf = append(buf, d.mant[:m]...)
    		for ; m < d.exp; m++ {
    			buf = append(buf, '0')
    		}
    	} else {
    		buf = append(buf, '0')
    	}
    
    	// fraction
    	if prec > 0 {
    		buf = append(buf, '.')
    		for i := 0; i < prec; i++ {
    			buf = append(buf, d.at(d.exp+i))
    		}
    	}
    
    	return buf
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/flowcontrol/v1/types.go

    	LimitResponse LimitResponse `json:"limitResponse,omitempty" protobuf:"bytes,2,opt,name=limitResponse"`
    
    	// `lendablePercent` prescribes the fraction of the level's NominalCL that
    	// can be borrowed by other priority levels. The value of this
    	// field must be between 0 and 100, inclusive, and it defaults to 0.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/bundling/ConcurrentArchiveIntegrationTest.groovy

                    RegularFileProperty getArchiveFile()
                    DirectoryProperty getDestinationDir()
                    Property<Integer> getIndex()
                }
                abstract class Extracter implements WorkAction<ExtracterParameters> {
                    @Inject
                    abstract FileSystemOperations getFileSystemOperations()
    
                    @Inject
                    abstract ArchiveOperations getArchiveOperations()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 17:32:21 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  8. src/math/big/rat.go

    		// z == 0; normalize sign and denominator
    		z.a.neg = false
    		fallthrough
    	case len(z.b.abs) == 0:
    		// z is integer; normalize denominator
    		z.b.abs = z.b.abs.setWord(1)
    	default:
    		// z is fraction; normalize numerator and denominator
    		neg := z.a.neg
    		z.a.neg = false
    		z.b.neg = false
    		if f := NewInt(0).lehmerGCD(nil, nil, &z.a, &z.b); f.Cmp(intOne) != 0 {
    			z.a.abs, _ = z.a.abs.div(nil, z.a.abs, f.abs)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/worker_api.adoc

    Then, you need to refactor the part of your custom task that does the work for each individual file into a separate class.
    This class is your "unit of work" implementation, and it should be an abstract class that extends `org.gradle.workers.WorkAction`:
    
    .buildSrc/src/main/java/GenerateMD5.java
    [source,java]
    ----
    include::{snippetsPath}/workerApi/md5NoIsolation/groovy/buildSrc/src/main/java/GenerateMD5.java[]
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 28 13:41:08 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  10. src/math/big/natconv.go

    		}
    		err = errNoDigits // fall through; result will be 0
    	}
    
    	// add remaining digits to result
    	if i > 0 {
    		z = z.mulAddWW(z, pow(b1, i), di)
    	}
    	res = z.norm()
    
    	// adjust count for fraction, if any
    	if dp >= 0 {
    		// 0 <= dp <= count
    		count = dp - count
    	}
    
    	return
    }
    
    // utoa converts x to an ASCII representation in the given base;
    // base must be between 2 and MaxBase, inclusive.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 14.6K bytes
    - Viewed (0)
Back to top