Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 49 for nothings (0.19 sec)

  1. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

    LogicalResult ConcatenationOp::verify() {
      ConcatenationOp op = *this;
      auto output_type = op.getOutput().getType().dyn_cast<RankedTensorType>();
    
      // If the output type is unranked, there is nothing else to be verified.
      if (!output_type) return success();
    
      const int64_t axis = GetConcatenationOpAxis(op);
      if (axis < 0 || axis >= output_type.getRank())
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/CacheTest.kt

    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 108.6K bytes
    - Viewed (0)
  3. pkg/controller/podautoscaler/horizontal_test.go

    		_, ok := m.metricComputationActionLabels[metricType]
    		if !ok {
    			t.Fatalf("the metric computation action should be recorded with metricType %s, but actually nothing was recorded", metricType)
    		}
    		assert.Equal(t, l, m.metricComputationActionLabels[metricType][0], "the metric computation action should be recorded in monitor expectedly")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  4. pkg/config/validation/validation_test.go

    	testCases := []struct {
    		name        string
    		destination *networking.Destination
    		valid       bool
    	}{
    		{
    			name:        "empty",
    			destination: &networking.Destination{}, // nothing
    			valid:       false,
    		},
    		{
    			name: "simple",
    			destination: &networking.Destination{
    				Host: "foo.bar",
    			},
    			valid: true,
    		},
    		{
    			name: "full",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  5. src/database/sql/sql.go

    	xdep, ok := db.dep[x]
    	if !ok {
    		panic(fmt.Sprintf("unpaired removeDep: no deps for %T", x))
    	}
    
    	l0 := len(xdep)
    	delete(xdep, dep)
    
    	switch len(xdep) {
    	case l0:
    		// Nothing removed. Shouldn't happen.
    		panic(fmt.Sprintf("unpaired removeDep: no %T dep on %T", dep, x))
    	case 0:
    		// No more dependencies.
    		delete(db.dep, x)
    		return x.finalClose
    	default:
    		// Dependencies remain.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

                                         op->getOperand(0), op->getOperand(1));
            }
            return success();
          }
    
          // If `y` has both zero and non-zero elements, do nothing.
          if (hasBothZeroAndNonzeroElements(attr, yHasComplexElements)) {
            return failure();
          } else {
            // When all the elements in `y` are non-splat and non-zero, replace
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

    // NotEqualOp
    //===----------------------------------------------------------------------===//
    
    LogicalResult NotEqualOp::verify() {
      NotEqualOp op = *this;
      // If we allow inputs to have incompatible type, then nothing to do.
      if (!op.getIncompatibleShapeError()) return success();
    
      // Otherwise, check inputs are broadcastable.
      return mlir::OpTrait::impl::verifyCompatibleOperandBroadcast(
          op.getOperation());
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDiagnostics.kt

        }
    
        interface MissingStdlibClass : KaFirDiagnostic<PsiElement> {
            override val diagnosticClass get() = MissingStdlibClass::class
        }
    
        interface NoThis : KaFirDiagnostic<PsiElement> {
            override val diagnosticClass get() = NoThis::class
        }
    
        interface DeprecationError : KaFirDiagnostic<PsiElement> {
            override val diagnosticClass get() = DeprecationError::class
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 11:41:05 UTC 2024
    - 172.6K bytes
    - Viewed (0)
  9. pkg/scheduler/internal/queue/scheduling_queue_test.go

    		t.Errorf("Unexpected diff after updating pods (-want, +got):\n%s", diff)
    	}
    
    	// Attempt to nominate a pod that was deleted from the informer cache.
    	// Nothing should change.
    	q.AddNominatedPod(logger, nonExistentPodInfo, &framework.NominatingInfo{NominatingMode: framework.ModeOverride, NominatedNodeName: "node1"})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  10. src/database/sql/sql_test.go

    	// no queries are made.
    	//
    	// Only allow the first batch of queries to finish once the
    	// second batch of Ping queries have finished.
    	waiter := func(ctx context.Context) {
    		switch state {
    		case 0:
    			// Nothing. Initial database setup.
    		case 1:
    			saturate.Done()
    			select {
    			case <-ctx.Done():
    			case <-donePing:
    			}
    		case 2:
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
Back to top