Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 116 for isMatching (0.24 sec)

  1. 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)
  2. 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)
  3. staging/src/k8s.io/api/flowcontrol/v1beta3/types.go

    	// NominalConcurrencyLimit (NominalCL) of this level.
    	// This is the number of execution seats nominally reserved for this priority level.
    	// This DOES NOT limit the dispatching from this priority level
    	// but affects the other priority levels through the borrowing mechanism.
    	// The server's concurrency limit (ServerCL) is divided among all the
    	// priority levels in proportion to their NCS values:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 31.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/flowcontrol/v1beta1/types.go

    	// NominalConcurrencyLimit (NominalCL) of this level.
    	// This is the number of execution seats nominally reserved for this priority level.
    	// This DOES NOT limit the dispatching from this priority level
    	// but affects the other priority levels through the borrowing mechanism.
    	// The server's concurrency limit (ServerCL) is divided among all the
    	// priority levels in proportion to their NCS values:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:27:57 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  5. 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)
  6. src/internal/types/errors/codes.go

    	// Example:
    	//  var x = 1
    	//  var _ = x.(float64)
    	InvalidAssert
    
    	// ImpossibleAssert occurs for a type assertion x.(T) when the value x of
    	// interface cannot have dynamic type T, due to a missing or mismatching
    	// method on T.
    	//
    	// Example:
    	//  type T int
    	//
    	//  func (t *T) m() int { return int(*t) }
    	//
    	//  type I interface { m() int }
    	//
    	//  var x I
    	//  var _ = x.(T)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 22:50:48 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  7. pkg/controller/volume/persistentvolume/framework_test.go

    	}
    }
    
    func withVolumeDeletionTimestamp(pvs []*v1.PersistentVolume) []*v1.PersistentVolume {
    	result := []*v1.PersistentVolume{}
    	for _, pv := range pvs {
    		// Using time.Now() here will cause mismatching deletion timestamps in tests
    		deleteTime := metav1.Date(2020, time.February, 18, 10, 30, 30, 10, time.UTC)
    		pv.SetDeletionTimestamp(&deleteTime)
    		result = append(result, pv)
    	}
    	return result
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 09:54:00 UTC 2023
    - 38.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/region-control-flow-to-functional.mlir

      ) { is_stateless = false } : (tensor<*xf32>, tensor<i32>) -> (tensor<*xf32>, tensor<i32>)
      // CHECK: return [[Result]]#0
      func.return %0#0 : tensor<*xf32>
    }
    
    // -----
    
    // Almost trivially transformable, mismatching block arguments
    // CHECK: func private @tf.WhileRegion_body
    // CHECK: call @while_body
    // CHECK: func private @tf.WhileRegion_cond
    // CHECK: call @while_cond
    // CHECK-LABEL: testWhileRegionBlockArgMismatch
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 02 11:15:34 UTC 2024
    - 44.3K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top