Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 343 for found$ (0.17 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

            when:
            fails 'ambiguous'
    
            then:
            errorOutput.contains("Cannot resolve service by type for type 'CountingService' when there are two or more instances. Please also provide a service name. Instances found: counter1: CountingService, counter2: CountingService.")
        }
    
        def "can declare a service reference without a name when multiple services exist if a value is explicitly assigned"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  2. src/go/types/expr.go

    			// first round and thus deleted from the map, and then
    			// not found in the second round (double insertion of
    			// the same expr node still just leads to one entry for
    			// that node, and it can only be deleted once).
    			// Be cautious and check for presence of entry.
    			// Example: var e, f = int(1<<""[f]) // go.dev/issue/11347
    			if info, found := check.untyped[x.expr]; found {
    				info.isLhs = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go

    			objs:    []apiruntime.Object{claimParameters, workerNodeSlice},
    			want: want{
    				prefilter: result{
    					status: framework.NewStatus(framework.UnschedulableAndUnresolvable, `class parameters default/my-resource-class not found`),
    				},
    				postfilter: result{
    					status: framework.NewStatus(framework.Unschedulable, `no new claims to deallocate`),
    				},
    			},
    		},
    
    		"missing-claim-parameters": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/regalloc.go

    		case "SB":
    			s.SBReg = r
    		case "g":
    			s.GReg = r
    		}
    	}
    	// Make sure we found all required registers.
    	switch noRegister {
    	case s.SPReg:
    		s.f.Fatalf("no SP register found")
    	case s.SBReg:
    		s.f.Fatalf("no SB register found")
    	case s.GReg:
    		if f.Config.hasGReg {
    			s.f.Fatalf("no g register found")
    		}
    	}
    
    	// Figure out which registers we're allowed to use.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/envoyfilter/listener_patch_test.go

    				ObjectTypes: &networking.EnvoyFilter_EnvoyConfigObjectMatch_Listener{
    					Listener: &networking.EnvoyFilter_ListenerMatch{
    						Name: "listener-http-filter-to-be-replaced-not-found",
    						FilterChain: &networking.EnvoyFilter_ListenerMatch_FilterChainMatch{
    							Filter: &networking.EnvoyFilter_ListenerMatch_FilterMatch{
    								Name: wellknown.HTTPConnectionManager,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 70.1K bytes
    - Viewed (0)
  6. pkg/controller/daemon/daemon_controller.go

    					dsc.enqueueDaemonSetAfter(ds, delay)
    					continue
    				}
    
    				dsc.failedPodsBackoff.Next(backoffKey, now)
    
    				msg := fmt.Sprintf("Found failed daemon pod %s/%s on node %s, will try to kill it", pod.Namespace, pod.Name, node.Name)
    				logger.V(2).Info("Found failed daemon pod on node, will try to kill it", "pod", klog.KObj(pod), "node", klog.KObj(node))
    				// Emit an event so that it's discoverable to users.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/route/route.go

    			// The result is OR'd so we don't overwrite a previously true value
    			// localMatch is tracking the match found within this iteration of the loop
    			localMatch := svcHost.Matches(hostname)
    			// foundSvcMatch is tracking in the wider context whether or not ANY match was found during an iteration
    			foundSvcMatch = foundSvcMatch || localMatch
    			if !localMatch {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

            metadata_op = op;
          else
            ops_to_erase.insert(op);
        }
        if (metadata_op == nullptr) {
          func->emitError(
              "Expected to find TPUReplicateMetadataOps but found none.");
          return LogicalResult::failure();
        }
    
        for (auto output_op :
             func.getRegion().getOps<TF::TPUReplicatedOutputOp>()) {
          bool outputs_are_returned = false;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/debug.go

    // a canonical index for the slot, and adding it to the table if need
    // be. Return value is the canonical slot index, and a boolean indicating
    // whether the slot was found in the table already (TRUE => found).
    func (sc *slotCanonicalizer) lookup(ls LocalSlot) (SlKeyIdx, bool) {
    	split := noSlot
    	if ls.SplitOf != nil {
    		split, _ = sc.lookup(*ls.SplitOf)
    	}
    	k := slotKey{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  10. pkg/apis/core/v1/defaults_test.go

    			m[".Spec.Containers[0].Ports"] = `[{"containerPort":12345,"protocol":"TCP"}]`
    			for k, v := range expectedDefaults {
    				if _, found := m[k]; !found {
    					m[k] = v
    				}
    			}
    			return m
    		}()
    		if !reflect.DeepEqual(expected, defaults) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 84.4K bytes
    - Viewed (0)
Back to top