Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for isMatching (0.23 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	dispatching bool
    	// watchersBuffer is a list of watchers potentially interested in currently
    	// dispatched event.
    	watchersBuffer []*cacheWatcher
    	// blockedWatchers is a list of watchers whose buffer is currently full.
    	blockedWatchers []*cacheWatcher
    	// watchersToStop is a list of watchers that were supposed to be stopped
    	// during current dispatching, but stopping was deferred to the end of
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  2. src/encoding/xml/marshal_test.go

    	},
    	err: "xml: end tag </bar> without start tag",
    }, {
    	desc: "mismatching end tag local name",
    	toks: []Token{
    		StartElement{Name{"", "foo"}, nil},
    		EndElement{Name{"", "bar"}},
    	},
    	err:  "xml: end tag </bar> does not match start tag <foo>",
    	want: `<foo>`,
    }, {
    	desc: "mismatching end tag namespace",
    	toks: []Token{
    		StartElement{Name{"space", "foo"}, nil},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  3. pkg/proxy/iptables/proxier.go

    	servicePortEndpointChainNamePrefix      = "KUBE-SEP-"
    )
    
    // servicePortPolicyClusterChain returns the name of the KUBE-SVC-XXXX chain for a service, which is the
    // main iptables chain for that service, used for dispatching to endpoints when using `Cluster`
    // traffic policy.
    func servicePortPolicyClusterChain(servicePortName string, protocol string) utiliptables.Chain {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/api_test.go

    				}
    			}()
    		}
    		wg.Wait()
    
    		if counts[0] != counts[1] {
    			t.Errorf("mismatching method counts for %s: %d vs %d", inst, counts[0], counts[1])
    			continue
    		}
    		for i := 0; i < counts[0]; i++ {
    			if m0, m1 := methods[0][i], methods[1][i]; m0 != m1 {
    				t.Errorf("mismatching methods for %s: %s vs %s", inst, m0, m1)
    			}
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/mark_for_compilation_pass.cc

      if (from->deadness_predicate() != to->deadness_predicate()) {
        VLOG(3) << EdgeContractionFailureMsg(
            from, to,
            absl::StrCat(
                "the two nodes have mismatching deadness: ",
                deadness_analysis_->DebugString(*from->deadness_predicate()),
                " and ",
                deadness_analysis_->DebugString(*to->deadness_predicate())));
        return false;
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  6. src/go/types/api_test.go

    				}
    			}()
    		}
    		wg.Wait()
    
    		if counts[0] != counts[1] {
    			t.Errorf("mismatching method counts for %s: %d vs %d", inst, counts[0], counts[1])
    			continue
    		}
    		for i := 0; i < counts[0]; i++ {
    			if m0, m1 := methods[0][i], methods[1][i]; m0 != m1 {
    				t.Errorf("mismatching methods for %s: %s vs %s", inst, m0, m1)
    			}
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  7. istioctl/pkg/describe/describe.go

    			fmt.Fprintf(writer, "%sWARNING POD DOES NOT MATCH ANY SUBSETS.  (Non matching subsets %s)\n",
    				printSpaces(initPrintNum+printLevel1), strings.Join(nonmatchingSubsets, ","))
    		}
    		fmt.Fprintf(writer, "%sMatching subsets: %s\n",
    			printSpaces(initPrintNum+printLevel1), strings.Join(matchingSubsets, ","))
    		if len(nonmatchingSubsets) > 0 {
    			fmt.Fprintf(writer, "%s(Non-matching subsets %s)\n",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/deadness_analysis.cc

    // Predicate denote logical formulas and mapping a node `n` to a predicate
    // `pred` implies that `n` is live whenever `pred` is true.  Then we can deduce
    // mismatching liveness in the inputs to node by comparing the predicate those
    // inputs are mapped to.  The core logic of this pass resides in creating the
    // map from TensorFlow nodes to predicates.
    //
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

      TF_ASSERT_OK(MarkForCompilationPassTestHelper::MarkForCompilation(&graph));
    
      std::unordered_map<string, string> clusters = GetClusters(*graph);
    
      // TODO(b/118970344): ctrl_trigger_a has inputs with mismatching deadness so
      // it won't be clustered.  ctrl_trigger_b is okay to cluster but we don't
      // cluster it because of b/118970344.
      EXPECT_TRUE(clusters.empty());
    }
    
    TEST(XlaCompilationTest, RandomShape) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
Back to top