Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 2,493 for found$ (0.16 sec)

  1. tensorflow/compiler/jit/node_matchers.cc

            *listener << "\nexpected op " << *op << " but found "
                      << node->type_string();
          }
          return false;
        }
    
        if (assigned_device && node->assigned_device_name() != *assigned_device) {
          if (listener->IsInterested()) {
            *listener << "\nexpected assigned_device " << *assigned_device
                      << " but found \"" << node->assigned_device_name() << "\"";
          }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 03 16:15:20 UTC 2022
    - 16.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/labels/selector_test.go

    		},
    	}
    	for _, ts := range testCases {
    		t.Run(ts.name, func(t *testing.T) {
    			value, found := ts.sel.RequiresExactMatch(ts.label)
    			if found != ts.expectedFound {
    				t.Errorf("Expected match %v, found %v", ts.expectedFound, found)
    			}
    			if found && value != ts.expectedValue {
    				t.Errorf("Expected value %v, found %v", ts.expectedValue, value)
    			}
    
    		})
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 14 16:39:04 UTC 2022
    - 29.9K bytes
    - Viewed (0)
  3. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/plugins/PluginBuildsIntegrationTest.groovy

            """
    
            then:
            succeeds()
            pluginBuild.assertSettingsPluginApplied()
        }
    
        def "settings plugin from included build is used over published plugin when version specified is found in repository"() {
            given:
            def repoDeclaration = """
                repositories {
                    maven {
                        url("${mavenRepo.uri}")
                    }
                }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 06 08:15:28 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  4. pkg/util/iptree/iptree_test.go

    			if ok {
    				t.Fatal("should not exist")
    			}
    			if _, ok := tree.GetPrefix(tc.prefix); !ok {
    				t.Errorf("CIDR %s not found", tc.prefix)
    			}
    			if ok := tree.DeletePrefix(tc.prefix); !ok {
    				t.Errorf("CIDR %s not deleted", tc.prefix)
    			}
    			if _, ok := tree.GetPrefix(tc.prefix); ok {
    				t.Errorf("CIDR %s found", tc.prefix)
    			}
    		})
    	}
    
    }
    
    func TestBasicIPv4(t *testing.T) {
    	tree := New[int]()
    	// insert
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:04 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/peerproxy/peerproxy_handler.go

    		serviceableByResp, err := h.findServiceableByServers(gvr, h.serverId, h.reconciler)
    		if err != nil {
    			// this means that resource is an aggregated API or a CR since it wasn't found in SV informer cache, pass as it is
    			handler.ServeHTTP(w, r)
    			return
    		}
    		// found the gvr locally, pass request to the next handler in local apiserver
    		if serviceableByResp.locallyServiceable {
    			handler.ServeHTTP(w, r)
    			return
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 19 00:36:22 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  6. pkg/controller/statefulset/stateful_pod_control_test.go

    	}
    	events := collectEvents(recorder.Events)
    	if eventCount := len(events); eventCount != 2 {
    		t.Errorf("Expected 2 events for successful create found %d", eventCount)
    	}
    	for i := range events {
    		if !strings.Contains(events[i], v1.EventTypeNormal) {
    			t.Errorf("Found unexpected non-normal event %s", events[i])
    		}
    	}
    }
    
    func TestStatefulPodControlCreatePodExists(t *testing.T) {
    	recorder := record.NewFakeRecorder(10)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 35.5K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/memory/discovery.go

    	for _, ip := range node.IPAddresses {
    		si, found := sd.ip2instance[ip]
    		if found {
    			out = append(out, slices.Map(si, model.ServiceInstanceToTarget)...)
    		}
    	}
    	return out
    }
    
    func (sd *ServiceDiscovery) GetProxyWorkloadLabels(proxy *model.Proxy) labels.Instance {
    	sd.mutex.Lock()
    	defer sd.mutex.Unlock()
    
    	for _, ip := range proxy.IPAddresses {
    		if l, found := sd.ip2workloadLabels[ip]; found {
    			return l
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 23:10:01 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/labels/selector.go

    				if t2 != IdentifierToken && t2 != DoesNotExistToken {
    					return nil, fmt.Errorf("found '%s', expected: identifier after ','", l2)
    				}
    			default:
    				return nil, fmt.Errorf("found '%s', expected: ',' or 'end of string'", l)
    			}
    		case EndOfStringToken:
    			return requirements, nil
    		default:
    			return nil, fmt.Errorf("found '%s', expected: !, identifier, or 'end of string'", lit)
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 31.8K bytes
    - Viewed (0)
  9. pkg/controller/volume/attachdetach/attach_detach_controller_test.go

    		nodeName := types.NodeName(pod.Spec.NodeName)
    		found := adc.desiredStateOfWorld.VolumeExists(v1.UniqueVolumeName(uniqueName), nodeName)
    		if !found {
    			t.Fatalf("Run failed with error. Volume %s, node %s not found in DesiredStateOfWorld",
    				pod.Spec.Volumes[0].Name,
    				pod.Spec.NodeName)
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 11:00:37 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  10. operator/pkg/tpath/tree.go

    // a way to mutate the parent of the found node.
    func Find(inputTree map[string]any, path util.Path) (any, bool, error) {
    	scope.Debugf("Find path=%s", path)
    	if len(path) == 0 {
    		return nil, false, fmt.Errorf("path is empty")
    	}
    	node, found := find(inputTree, path)
    	return node, found, nil
    }
    
    // Delete sets value at path of input untyped tree to nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 17.5K bytes
    - Viewed (0)
Back to top