Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 348 for found$ (0.27 sec)

  1. pkg/kubelet/status/status_manager_test.go

    	if len(left) != len(right) {
    		return false
    	}
    
    	for _, l := range left {
    		found := false
    		for _, r := range right {
    			if l.Type == r.Type {
    				found = true
    				if l.Status != r.Status || l.Reason != r.Reason {
    					return false
    				}
    			}
    		}
    		if !found {
    			return false
    		}
    	}
    	return true
    }
    
    func getPodStatus() v1.PodStatus {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
  2. tests/integration/ambient/baseline_test.go

    			pods, err := fetch()
    			if err != nil {
    				return err
    			}
    			if len(pods) > 0 {
    				// found (this is actually bad, but the failure condition is inverted later a bit awkward)
    				return nil
    			}
    			return fmt.Errorf("no waypoints found")
    		}, retry.Timeout(1*time.Second), retry.BackoffDelay(time.Millisecond*100))
    		if waypointError == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  3. src/runtime/mgcmark.go

    // Copyright 2009 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.
    
    // Garbage collector: marking and scanning
    
    package runtime
    
    import (
    	"internal/abi"
    	"internal/goarch"
    	"internal/runtime/atomic"
    	"runtime/internal/sys"
    	"unsafe"
    )
    
    const (
    	fixedRootFinalizers = iota
    	fixedRootFreeGStacks
    	fixedRootCount
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  4. maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

                                errOn30,
                                Version.V20,
                                "profiles.profile.id",
                                null,
                                "must be unique but found duplicate profile with id " + profile.getId(),
                                profile);
                    }
    
                    validate30RawProfileActivation(problems, profile.getActivation(), prefix);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 76K bytes
    - Viewed (0)
  5. cmd/erasure-object.go

    	offline := 0
    	for i := 0; i < len(errs); i++ {
    		var found bool
    		switch {
    		case errors.Is(errs[i], errDiskNotFound):
    			found = true
    		default:
    			for p := range dataErrsByPart {
    				if dataErrsByPart[p][i] == checkPartDiskNotFound {
    					found = true
    					break
    				}
    			}
    		}
    		if found {
    			offline++
    		}
    	}
    	if offline > 0 {
    		tags["offline"] = offline
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  6. pkg/proxy/winkernel/proxier.go

    		return
    	}
    	if queriedEndpoints == nil {
    		klog.V(4).InfoS("No existing endpoints found in HNS")
    		queriedEndpoints = make(map[string]*(endpointInfo))
    	}
    	queriedLoadBalancers, err := hns.getAllLoadBalancers()
    	if queriedLoadBalancers == nil {
    		klog.V(4).InfoS("No existing load balancers found in HNS")
    		queriedLoadBalancers = make(map[loadBalancerIdentifier]*(loadBalancerInfo))
    	}
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/suppliers/DynamicRevisionRemoteResolveWithMetadataSupplierIntegrationTest.groovy

            run 'checkDeps', '--debug'
    
            then:
            noExceptionThrown()
            outputContains "Found result for rule [DefaultConfigurableRule{rule=class MP, ruleParams=[]}] and key group:projectB:2.2"
            outputContains "Found result for rule [DefaultConfigurableRule{rule=class MP, ruleParams=[]}] and key group:projectB:1.1"
        }
    
        @ToBeFixedForConfigurationCache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 11:46:17 UTC 2024
    - 49K bytes
    - Viewed (0)
  8. src/syscall/zerrors_darwin_arm64.go

    	92:  "illegal byte sequence",
    	93:  "attribute not found",
    	94:  "bad message",
    	95:  "EMULTIHOP (Reserved)",
    	96:  "no message available on STREAM",
    	97:  "ENOLINK (Reserved)",
    	98:  "no STREAM resources",
    	99:  "not a STREAM",
    	100: "protocol error",
    	101: "STREAM ioctl timeout",
    	102: "operation not supported on socket",
    	103: "policy not found",
    	104: "state not recoverable",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 55.8K bytes
    - Viewed (0)
  9. src/runtime/mgcscavenge.go

    				// We're in danger of breaking apart a huge page since start+size crosses
    				// a huge page boundary and rounding down start to the nearest huge
    				// page boundary is included in the full run we found. Include the entire
    				// huge page in the bound by rounding down to the huge page size.
    				size = size + (start - hugePageBelow)
    				start = hugePageBelow
    			}
    		}
    	}
    	return start, size
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/xcoff.go

    // Copyright 2018 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 ld
    
    import (
    	"bytes"
    	"encoding/binary"
    	"fmt"
    	"math/bits"
    	"os"
    	"path/filepath"
    	"sort"
    	"strings"
    	"sync"
    
    	"cmd/internal/objabi"
    	"cmd/link/internal/loader"
    	"cmd/link/internal/sym"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
Back to top