Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 3,606 for nmatch (0.1 sec)

  1. platforms/core-execution/workers/src/test/groovy/org/gradle/workers/internal/WorkerDaemonClientsManagerTest.groovy

            def noMatch = Stub(WorkerDaemonClient) {
                isCompatibleWith(_) >> false
            }
    
            expect:
            manager.reserveIdleClient(options, [noMatch]) == null
        }
    
        def "reserves idle client when match found"() {
            def noMatch = Stub(WorkerDaemonClient) { isCompatibleWith(_) >> false }
            def match = Stub(WorkerDaemonClient) { isCompatibleWith(_) >> true }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:56:11 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/tls.go

    	gatewayMatch := len(match.Gateways) == 0
    	for _, gateway := range match.Gateways {
    		gatewayMatch = gatewayMatch || gateways.Contains(gateway)
    	}
    
    	labelMatch := labels.Instance(match.SourceLabels).SubsetOf(proxyLabels)
    
    	portMatch := match.Port == 0 || match.Port == uint32(port)
    
    	nsMatch := match.SourceNamespace == "" || match.SourceNamespace == proxyNamespace
    
    	return gatewayMatch && labelMatch && portMatch && nsMatch
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  3. cmd/batch-rotate_gen.go

    Krishnan Parthasarathi <******@****.***> 1701514293 -0800
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 02 10:51:33 UTC 2023
    - 27.1K bytes
    - Viewed (0)
  4. ci/official/containers/linux_arm64/builder.devtoolset/gcc9-fixups.patch

    Michael Hudgins <******@****.***> 1695048765 +0000
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 14:52:45 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  5. src/regexp/syntax/prog.go

    			return 0
    		}
    		return noMatch
    
    	case 4, 6, 8:
    		// Linear search for a few pairs.
    		// Should handle ASCII well.
    		for j := 0; j < len(rune); j += 2 {
    			if r < rune[j] {
    				return noMatch
    			}
    			if r <= rune[j+1] {
    				return j / 2
    			}
    		}
    		return noMatch
    	}
    
    	// Otherwise binary search.
    	lo := 0
    	hi := len(rune) / 2
    	for lo < hi {
    		m := int(uint(lo+hi) >> 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:50:01 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  6. test/codegen/math.go

    	// ppc64x:"FMADD"
    	// riscv64:"FMADDD"
    	return math.FMA(x, y, z)
    }
    
    func fms(x, y, z float64) float64 {
    	// riscv64:"FMSUBD"
    	return math.FMA(x, y, -z)
    }
    
    func fnms(x, y, z float64) float64 {
    	// riscv64:"FNMSUBD",-"FNMADDD"
    	return math.FMA(-x, y, z)
    }
    
    func fnma(x, y, z float64) float64 {
    	// riscv64:"FNMADDD",-"FNMSUBD"
    	return math.FMA(x, -y, -z)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 15:24:29 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. releasenotes/notes/secret-watch.yaml

    John Howard <******@****.***> 1631896091 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Sep 17 16:28:11 UTC 2021
    - 177 bytes
    - Viewed (0)
  8. cmd/batch-expire_gen_test.go

    Krishnan Parthasarathi <******@****.***> 1701514293 -0800
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 02 10:51:33 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  9. src/cmd/distpack/archive.go

    // The patterns use the syntax of path.Match, with an extension of allowing
    // a leading **/ or trailing /**, which match any number of path elements
    // (including no path elements) before or after the main match.
    func (a *Archive) Remove(patterns ...string) {
    	a.Filter(func(name string) bool {
    		for _, pattern := range patterns {
    			match, err := amatch(pattern, name)
    			if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 11 17:37:52 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/api/resource/math.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package resource
    
    import (
    	"math/big"
    
    	inf "gopkg.in/inf.v0"
    )
    
    const (
    	// maxInt64Factors is the highest value that will be checked when removing factors of 10 from an int64.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 23 13:07:14 UTC 2020
    - 7.3K bytes
    - Viewed (0)
Back to top