Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 645 for earliest (0.22 sec)

  1. pkg/scheduler/framework/plugins/queuesort/priority_sort_test.go

    				PodInfo: mustNewPodInfo(t, st.MakePod().Priority(lowPriority).Obj()),
    			},
    			expected: true, // p1 should be ahead of p2 in the queue
    		},
    		{
    			name: "equal priority. p1 is added to schedulingQ earlier than p2",
    			p1: &framework.QueuedPodInfo{
    				PodInfo:   mustNewPodInfo(t, st.MakePod().Priority(highPriority).Obj()),
    				Timestamp: t1,
    			},
    			p2: &framework.QueuedPodInfo{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 12 14:11:04 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  2. test/fixedbugs/bug488.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // The gccgo compiler had a bug: if one file in a package did a dot
    // import, then an earlier file in the package would incorrectly
    // resolve to the imported names rather than reporting undefined
    // errors.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 404 bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/plugin/devel/variants/TargetJVMVersionOnLibraryTooNewFailureDescriberIntegrationTest.groovy

            failure.assertHasErrorOutput("Caused by: " + VariantSelectionException.class.getName())
            failure.assertHasResolution("Change the dependency on 'project :producer' to an earlier version that supports JVM runtime version $tooHighJava.")
        }
    
        def 'JVM version too low even if other non-Library category variants available uses standard error message for non-plugin'() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 4.3K bytes
    - Viewed (1)
  4. pkg/registry/core/event/strategy_test.go

    			Source: api.EventSource{Component: "test"},
    			Type:   api.EventTypeNormal,
    		}
    	}
    	eventA := makeEvent("eventA")
    	eventB := makeEvent("eventB")
    	errList := Strategy.ValidateUpdate(context.Background(), eventA, eventB)
    	if len(errList) == 0 {
    		t.Errorf("ValidateUpdate should fail on name change")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  5. releasenotes/notes/sds-cacert-precedence.yaml

      This behavior was accidentally inverted in Istio 1.8; this changes restores the behavior to match Istio 1.7 and earlier....
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 05 10:55:59 UTC 2021
    - 356 bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/authentication/request/x509/x509.go

    			err,
    		)
    	}
    
    	var errlist []error
    	for _, chain := range chains {
    		user, ok, err := a.user.User(chain)
    		if err != nil {
    			errlist = append(errlist, err)
    			continue
    		}
    
    		if ok {
    			return user, ok, err
    		}
    	}
    	return nil, false, utilerrors.NewAggregate(errlist)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 18 01:31:22 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/testshared/testdata/dep3/dep3.go

    package dep3
    
    // The point of this test file is that it references a type from
    // depBase that is also referenced in dep2, but dep2 is loaded by the
    // linker before depBase (because it is earlier in the import list).
    // There was a bug in the linker where it would not correctly read out
    // the type data in this case and later crash.
    
    import (
    	"testshared/dep2"
    	"testshared/depBase"
    )
    
    type Dep3 struct {
    	dep  depBase.Dep
    	dep2 dep2.Dep2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 503 bytes
    - Viewed (0)
  8. test/fixedbugs/issue18915.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Make sure error message for invalid conditions
    // or tags are consistent with earlier Go versions.
    
    package p
    
    func _() {
    	if a := 10 { // ERROR "cannot use a := 10 as value|expected .*;|declared and not used"
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 21:10:19 UTC 2022
    - 581 bytes
    - Viewed (0)
  9. pilot/pkg/util/network/ip.go

    func AllIPv6(ipAddrs []string) bool {
    	for i := 0; i < len(ipAddrs); i++ {
    		addr, err := netip.ParseAddr(ipAddrs[i])
    		if err != nil {
    			// Should not happen, invalid IP in proxy's IPAddresses slice should have been caught earlier,
    			// skip it to prevent a panic.
    			continue
    		}
    		if addr.Is4() {
    			return false
    		}
    	}
    	return true
    }
    
    // AllIPv4 checks the addresses slice and returns true if all addresses
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 21 21:27:21 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  10. src/go/types/commentMap_test.go

            import  /* ERROR "8:9" */  // indented with blanks
    `
    	m := commentMap([]byte(src), regexp.MustCompile("^ ERROR "))
    	found := 0 // number of errors found
    	for line, errlist := range m {
    		for _, err := range errlist {
    			if err.line != line {
    				t.Errorf("%v: got map line %d; want %d", err, err.line, line)
    				continue
    			}
    			// err.line == line
    
    			got := strings.TrimSpace(err.text[len(" ERROR "):])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 3K bytes
    - Viewed (0)
Back to top