Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 466 for comp (0.05 sec)

  1. pkg/scheduler/internal/queue/scheduling_queue.go

    	options := defaultPriorityQueueOptions
    	if options.podLister == nil {
    		options.podLister = informerFactory.Core().V1().Pods().Lister()
    	}
    	for _, opt := range opts {
    		opt(&options)
    	}
    
    	comp := func(podInfo1, podInfo2 interface{}) bool {
    		pInfo1 := podInfo1.(*framework.QueuedPodInfo)
    		pInfo2 := podInfo2.(*framework.QueuedPodInfo)
    		return lessFn(pInfo1, pInfo2)
    	}
    
    	pq := &PriorityQueue{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  2. src/archive/tar/writer_test.go

    		"0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000/file.txt",
    		"/home/support/.openoffice.org/3/user/uno_packages/cache/registry/com.sun.star.comp.deployment.executable.PackageRegistryBackend",
    	}
    
    	for i, name := range names {
    		var b bytes.Buffer
    
    		tw := NewWriter(&b)
    		if err := tw.WriteHeader(&Header{
    			Name: name,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 38.7K bytes
    - Viewed (0)
  3. src/internal/poll/fd_windows_test.go

    	}
    	defer f.Close()
    
    	err = checkFileIsNotPartOfNetpoll(f)
    	if err != nil {
    		t.Fatal(err)
    	}
    }
    
    func TestSerialFdsAreInitialised(t *testing.T) {
    	for _, name := range []string{"COM1", "COM2", "COM3", "COM4"} {
    		t.Run(name, func(t *testing.T) {
    			h, err := syscall.CreateFile(syscall.StringToUTF16Ptr(name),
    				syscall.GENERIC_READ|syscall.GENERIC_WRITE,
    				0,
    				nil,
    				syscall.OPEN_EXISTING,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 14 08:33:36 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/mod/module/module.go

    // badWindowsNames are the reserved file path elements on Windows.
    // See https://docs.microsoft.com/en-us/windows/desktop/fileio/naming-a-file
    var badWindowsNames = []string{
    	"CON",
    	"PRN",
    	"AUX",
    	"NUL",
    	"COM0",
    	"COM1",
    	"COM2",
    	"COM3",
    	"COM4",
    	"COM5",
    	"COM6",
    	"COM7",
    	"COM8",
    	"COM9",
    	"LPT0",
    	"LPT1",
    	"LPT2",
    	"LPT3",
    	"LPT4",
    	"LPT5",
    	"LPT6",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 20:17:07 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  5. test/cmp.go

    Aaron Jacobs <******@****.***> 1435103412 +1000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 26 03:38:21 UTC 2015
    - 7.6K bytes
    - Viewed (0)
  6. src/path/filepath/path_test.go

    	{"nul.", false},
    	{"a/nul:", false},
    	{"a/nul : a", false},
    	{"com0", true},
    	{"com1", false},
    	{"com2", false},
    	{"com3", false},
    	{"com4", false},
    	{"com5", false},
    	{"com6", false},
    	{"com7", false},
    	{"com8", false},
    	{"com9", false},
    	{"com¹", false},
    	{"com²", false},
    	{"com³", false},
    	{"com¹ : a", false},
    	{"cOm1", false},
    	{"lpt1", false},
    	{"LPT1", false},
    	{"lpt³", false},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:38:19 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  7. src/cmp.bash

    	echo $pkg
    	DIR=$GOROOT/src/$pkg
    	go build -gcflags "$FLAGS2 -S" -o /dev/null $pkg &> $DIR/new.txt
    done
    
    echo
    echo
    echo "3) compare assembly files"
    for pkg in `go list std`; do
    	DIR=$GOROOT/src/$pkg
    
    	if cmp $DIR/old.txt $DIR/new.txt &> /dev/null
    	then rm $DIR/old.txt $DIR/new.txt
    	else echo "==> $DIR"
    	fi
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 18:03:31 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. src/cmp/cmp.go

    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package cmp provides types and functions related to comparing
    // ordered values.
    package cmp
    
    // Ordered is a constraint that permits any ordered type: any type
    // that supports the operators < <= >= >.
    // If future releases of Go add new ordered types,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 16:31:02 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. testing/integ-test/src/integTest/groovy/org/gradle/integtests/StdioIntegrationTest.groovy

            given:
            buildFile << '''
    task echo {
        doLast {
            def reader = new BufferedReader(new InputStreamReader(System.in))
            while (true) {
                def line = reader.readLine() // readline will chomp the newline off the end
                if (!line) {
                    break
                }
                print "[$line]"
            }
        }
    }
    '''
            executer.withStdinPipe(new PipedOutputStream() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 30 05:02:18 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

        // CHECK-NEXT: %[[LEAKY:.*]] = mhlo.multiply %[[INP:.*]], %[[ALPHA]] : tensor<1x4x4x3xf32>
        // CHECK-NEXT: %[[CMP:.*]] = mhlo.compare GT, %[[INP]], %[[ZERO]], NOTYPE : (tensor<1x4x4x3xf32>, tensor<1x4x4x3xf32>) -> tensor<1x4x4x3xi1>
        // CHECK-NEXT: %[[RES:.*]] = mhlo.select %[[CMP]], %[[INP]], %[[LEAKY]] : tensor<1x4x4x3xi1>, tensor<1x4x4x3xf32>
        // CHECK-NEXT: return %[[RES]] : tensor<1x4x4x3xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
Back to top