Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 343 for found$ (0.5 sec)

  1. pkg/volume/csi/csi_attacher_test.go

    			if apierrors.IsNotFound(err) {
    				<-ticker.C
    				continue
    			}
    			t.Error(err)
    		}
    		if attach != nil {
    			t.Logf("attachment found on try %d, stopping wait...", i)
    			break
    		}
    	}
    	t.Logf("stopped waiting for attachment")
    
    	if attach == nil {
    		t.Logf("attachment not found for id:%v", attachID)
    	} else {
    		attach.Status = status
    		t.Logf("updating attachment %s with attach status %v", attachID, status)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 58.1K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

                ClassNode classNode = type.getType();
                String name = type.getName();
                ClassNode[] bounds = type.getUpperBounds();
                if (bounds != null) {
                    boolean nameAdded = false;
                    for (ClassNode upperBound : bounds) {
                        if (!nameAdded && upperBound != null || !resolve(classNode)) {
                            genericParameterNames.put(name, type);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  3. src/os/os_test.go

    		}
    		for _, m := range contents {
    			found := false
    			for _, n := range s {
    				if n == "." || n == ".." {
    					t.Errorf("got %q in directory", n)
    				}
    				if !equal(m, n) {
    					continue
    				}
    				if found {
    					t.Error("present twice:", m)
    				}
    				found = true
    			}
    			if !found {
    				t.Error("could not find", m)
    			}
    		}
    		if s == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    				// Allocation in flight? Better wait for that
    				// to finish, see inFlightAllocations
    				// documentation for details.
    				if _, found := pl.inFlightAllocations.Load(claim.UID); found {
    					return nil, statusUnschedulable(logger, fmt.Sprintf("resource claim %s is in the process of being allocated", klog.KObj(claim)))
    				}
    
    				// We need the claim and class parameters. If
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/conversion.go

    			reason:  string(k8s.ListenerReasonAccepted),
    			message: "No errors found",
    		},
    		string(k8s.ListenerConditionProgrammed): {
    			reason:  string(k8s.ListenerReasonProgrammed),
    			message: "No errors found",
    		},
    		string(k8s.ListenerConditionConflicted): {
    			reason:  string(k8s.ListenerReasonNoConflicts),
    			message: "No errors found",
    			status:  kstatus.StatusFalse,
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  6. src/runtime/pprof/pprof_test.go

    func containsInlinedCall(f any, maxBytes int) bool {
    	_, found := findInlinedCall(f, maxBytes)
    	return found
    }
    
    // findInlinedCall returns the PC of an inlined function call within
    // the function body for the function f if any.
    func findInlinedCall(f any, maxBytes int) (pc uint64, found bool) {
    	fFunc := runtime.FuncForPC(uintptr(abi.FuncPCABIInternal(f)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  7. pkg/controller/replicaset/replica_set_test.go

    			}
    			rs := rss[0]
    			if c.outRSName != rs.Name {
    				t.Errorf("Got replica set %+v expected %+v", rs.Name, c.outRSName)
    			}
    		} else if c.outRSName != "" {
    			t.Errorf("Expected a replica set %v pod %v, found none", c.outRSName, c.pod.Name)
    		}
    	}
    }
    
    func TestRelatedPodsLookup(t *testing.T) {
    	someRS := newReplicaSet(1, map[string]string{"foo": "bar"})
    	someRS.Name = "foo1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
  8. cmd/xl-storage.go

    			dcinfo.UsedInodes = di.Files - di.Ffree
    			dcinfo.FreeInodes = di.Ffree
    			dcinfo.FSType = di.FSType
    			diskID, err := s.GetDiskID()
    			// Healing is 'true' when
    			// - if we found an unformatted disk (no 'format.json')
    			// - if we found healing tracker 'healing.bin'
    			dcinfo.Healing = errors.Is(err, errUnformattedDisk) || (s.Healing() != nil)
    			dcinfo.ID = diskID
    			return dcinfo, err
    		},
    	)
    
    	// Success.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  9. src/go/printer/testdata/parser.go

    	if pos == p.pos {
    		// the error happened at the current position;
    		// make the error message more specific
    		if p.tok == token.SEMICOLON && p.lit[0] == '\n' {
    			msg += ", found newline"
    		} else {
    			msg += ", found '" + p.tok.String() + "'"
    			if p.tok.IsLiteral() {
    				msg += " " + p.lit
    			}
    		}
    	}
    	p.error(pos, msg)
    }
    
    func (p *parser) expect(tok token.Token) token.Pos {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyXmlModuleDescriptorParser.java

                        if (!expected.equals(pid)) {
                            LOGGER.warn("Ignoring parent Ivy file {}; expected {} but found {}", location, expected, pid);
                            parent = null;
                        }
                    }
    
                    // if the included ivy file is not found on file system, tries to resolve using
                    // repositories
                    if (parent == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 65K bytes
    - Viewed (0)
Back to top